/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Login Button */
.login-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.login-btn:hover {
    background: #f5f5f5;
}

.login-btn-text {
    display: inline;
}

/* Cart Button - Update */
.cart-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.cart-btn:hover {
    background: #f5f5f5;
}

.cart-btn-text {
    display: inline;
}

/* Responsive - hide text on mobile */
@media (max-width: 768px) {
    .login-btn-text,
    .cart-btn-text {
        display: none;
    }
    
    .login-btn,
    .cart-btn {
        padding: 8px;
    }
    
    .header-actions {
        gap: 8px;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.logo svg {
    color: #FF8C00;
}

.nav {
    display: flex;
    gap: 32px;
    margin: 0 auto;
}

.nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #FF8C00;
}

.cart-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.cart-btn:hover {
    background: #f5f5f5;
}

.cart-btn-text {
    display: inline;
}

/* Responsive - hide text on mobile */
@media (max-width: 768px) {
    .cart-btn-text {
        display: none;
    }
    
    .cart-btn {
        padding: 8px;
    }
}

/* Hero Orange Section */
.hero-orange {
    background: linear-gradient(to right, #E65C00, #F9A826);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.hero-orange-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-orange-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-orange-content p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-orange .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-orange .btn-white {
    background: white;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-orange .btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-orange .btn-outline {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-orange .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Original Hero Section */
.hero {
    background: linear-gradient(to bottom, #FFF8E7, #FFFBF0);
    padding: 80px 0 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #4a4a4a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.emoji {
    font-size: 16px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.highlight {
    color: #FF8C00;
}

.description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #FF8C00;
    color: #fff;
}

.btn-primary:hover {
    background: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #4a4a4a;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #FF8C00;
    color: #FF8C00;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 18px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #f0f0f0;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.stats {
    background: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

/* Why Section */
.why-section {
    background: #FAFAFA;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    padding: 32px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #FFE4CC;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFEFD5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid #FFF8E7;
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    border-color: #FF8C00;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.15);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    font-weight: 500;
    color: #FF8C00;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
    background: #FFF8E7;
    padding: 80px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #FFE4CC;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-heart {
    width: 36px;
    height: 36px;
    background: #FFF8E7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-location {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .nav {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* Cart Button Badge */
.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px;           /* Ubah dari 4px ke 2px */
    right: 2px;         /* Ubah dari 4px ke 2px */
    background: #FF8C00;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
    right: 0;
}

/* Cart Header */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.cart-count {
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 12px;
}

.cart-close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.cart-close:hover {
    background: #f5f5f5;
}

/* Cart Content */
.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Empty Cart */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-cart-icon svg {
    width: 60px;
    height: 60px;
    color: #999;
}

.empty-cart h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.empty-cart p {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.continue-shopping {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.continue-shopping:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 640px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}