/* ==========================================
   DAPOERHUB - Custom Styles
   Berdasarkan Desain Figma
========================================== */

/* ==========================================
   1. RESET & GLOBAL STYLES
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #D4E8D4 0%, #B8D8B8 50%, #C8E0C8 100%);
    color: #333;
    line-height: 1.6;
}

/* ==========================================
   2. NAVBAR STYLES - DAPOERHUB DI SAMPING KIRI CART
========================================== */
.navbar {
    background-color: #C4551A;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 40px;
    align-items: center;
}

/* Nav Links - Kiri */
.nav-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 0.95;
}

/* Search Container - Tengah (Conditional) */
.search-container {
    justify-self: center;
    max-width: 420px;
    width: 100%;
}

.search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.search-form:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.search-btn {
    background: none;
    border: none;
    color: #C4551A;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    margin-right: 12px;
    transition: transform 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.1);
}

.search-input {
    border: none;
    outline: none;
    padding: 8px 10px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.voice-btn {
    background: none;
    border: none;
    color: #C4551A;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    margin-left: 12px;
    transition: transform 0.2s ease;
}

.voice-btn:hover {
    transform: scale(1.1);
}

/* Brand - Kiri Keranjang dengan Spacing */
.brand {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    justify-self: end;
}

.brand:hover {
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Navigation Right - Cart & User Menu */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 0;
}

/* ==========================================
   CART ICON - MODERN & BEAUTIFUL
========================================== */
.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 0;
}

.cart-icon:hover {
    background: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cart-icon i {
    font-size: 22px;
    color: white;
    transition: color 0.3s ease;
}

.cart-icon:hover i {
    color: #C4551A;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #FF3B3B 0%, #FF6B6B 100%);
    color: white;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: none;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 22px;
    padding: 0 5px;
    border: 2px solid #C4551A;
    box-shadow: 0 3px 10px rgba(255, 59, 59, 0.5);
    animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.cart-badge.has-items {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   AUTH BUTTONS - CLEAN DESIGN
========================================== */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login,
.btn-daftar {
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-login {
    background: white;
    color: #C4551A;
    border: 2px solid white;
}

.btn-login:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-daftar {
    background: linear-gradient(135deg, #FF6B35 0%, #E8774A 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-daftar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #E8774A 0%, #FF6B35 100%);
}

/* ==========================================
   USER MENU - PROFESSIONAL STYLE
========================================== */
.user-menu {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF6B35;
}

.user-name {
    font-weight: 600;
    color: #2C3E50;
    display: inline-block;
}

.user-menu-btn i {
    color: #FF6B35;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-menu:hover .user-menu-btn i {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #FFF8F5 0%, #FFE8DC 100%);
    color: #FF6B35;
    padding-left: 28px;
}

.dropdown-item i {
    width: 20px;
    color: #FF6B35;
    font-size: 16px;
}

.dropdown-item.logout {
    color: #E74C3C;
    border-top: 1px solid #f0f0f0;
}

.dropdown-item.logout i {
    color: #E74C3C;
}

.dropdown-item.logout:hover {
    background: linear-gradient(90deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #C0392B;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E8E8E8 50%, transparent 100%);
    margin: 5px 0;
}

/* ==========================================
   3. HERO SECTION - MODERN & IMPROVED
========================================== */
.hero {
    background: transparent;
    padding: 60px 0;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Image with Overlay */
.hero-image-main {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hero-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-main:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD0B3 100%);
    border-radius: 50px;
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    color: #C4551A;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.hero-badge i {
    color: #FFD700;
}

/* Hero Text */
.hero-text h1 {
    font-size: 48px;
    color: #2C3E50;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    color: #C4551A;
    position: relative;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 15px 0 0 0;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stat-item i {
    font-size: 28px;
    color: #C4551A;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

/* Hero Gallery */
.hero-images-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.small-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.small-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hero CTA Button */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #C4551A 0%, #A04315 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 85, 26, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 85, 26, 0.4);
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

/* ==========================================
   4. FOOTER
========================================== */
.footer {
    background-color: #C4551A;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
    font-size: 14px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section h2, 
.footer-section h3 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.footer-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #C4551A;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* ==========================================
   5. PRODUCTS SECTION - ENHANCED
========================================== */
.products-section {
    background: transparent;
    padding: 80px 0;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header - Enhanced */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD0B3 100%);
    color: #C4551A;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    color: #2C3E50;
    font-weight: 700;
    margin: 15px 0;
}

.section-header p {
    font-size: 17px;
    color: #666;
    margin-top: 10px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C4551A 0%, #FF6B35 100%);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Product Filters - Enhanced */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #666;
    border: 2px solid #E8E8E8;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn i {
    font-size: 13px;
}

.filter-btn:hover {
    border-color: #C4551A;
    color: #C4551A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 85, 26, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #C4551A 0%, #A04315 100%);
    color: white;
    border-color: #C4551A;
    box-shadow: 0 4px 15px rgba(196, 85, 26, 0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Product Card - Enhanced */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
.product-card:nth-child(7) { animation-delay: 0.4s; }
.product-card:nth-child(8) { animation-delay: 0.45s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Product Image */
.product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD0B3 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 85, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4551A;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.product-card:hover .quick-view-btn {
    transform: scale(1);
}

.quick-view-btn:hover {
    transform: scale(1.1) !important;
}

/* Product Badge - Enhanced */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.product-badge i {
    animation: fire 1.5s ease-in-out infinite;
}

@keyframes fire {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Product Info - Enhanced */
.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-category {
    display: inline-block;
    padding: 4px 12px;
    background: #F5F5F5;
    color: #666;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    letter-spacing: 0.5px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 8px 0;
}

.product-rating i {
    font-size: 14px;
    color: #FFD700;
}

.product-rating .far {
    color: #E0E0E0;
}

.rating-text {
    font-size: 13px;
    color: #666;
    margin-left: 8px;
    font-weight: 600;
}

.review-count {
    color: #999;
    font-weight: 400;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #F5F5F5;
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #C4551A;
    line-height: 1;
}

.price-unit {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #C4551A 0%, #A04315 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 85, 26, 0.4);
}

/* Empty State */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD0B3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon i {
    font-size: 50px;
    color: #C4551A;
}

.empty-state h3 {
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    color: #666;
}

/* View All Button - Enhanced */
.view-all-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #C4551A;
    border: 2px solid #C4551A;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 85, 26, 0.15);
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #C4551A 0%, #A04315 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 85, 26, 0.3);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* ==========================================
   FEATURES SECTION - NEW
========================================== */
.features-section {
    background: linear-gradient(135deg, rgba(255, 232, 220, 0.3) 0%, rgba(255, 208, 179, 0.3) 100%);
    padding: 80px 0;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD0B3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
     transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #C4551A 0%, #FF6B35 100%);
}

.feature-icon i {
    font-size: 35px;
    color: #C4551A;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   6. ANIMATIONS - ENHANCED
========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   7. RESPONSIVE DESIGN - ENHANCED
========================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 380px 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-image-main img {
        height: 500px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-container {
        grid-template-columns: 340px 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-image-main img {
        height: 480px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-item i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .small-img {
        height: 160px;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }
    
    .hero-image-main {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-image-main img {
        height: 400px;
    }
    
    .hero-badge {
        margin: 0 auto;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
        margin: 10px auto 0;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .hero-images-small {
        gap: 12px;
    }
    
    .small-img {
        height: 140px;
    }
    
    .btn-hero {
        margin: 0 auto;
        padding: 14px 35px;
        font-size: 15px;
    }
    
    /* Products Section Mobile */
    .products-section {
        padding: 50px 0;
    }
    
    .products-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 12px;
        padding: 5px 16px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .product-filters {
        gap: 10px;
        margin-bottom: 35px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .product-filters::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 17px;
        min-height: 48px;
    }
    
    .product-desc {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .btn-small {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-view-all {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 50px 0;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 30px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-image-main img {
        height: 350px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .hero-images-small {
        gap: 10px;
    }
    
    .small-img {
        height: 110px;
        border-radius: 12px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 14px;
        gap: 10px;
    }
    
    /* Products Section Extra Small */
    .products-section {
        padding: 40px 0;
    }
    
    .products-container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .product-info {
        padding: 18px;
        gap: 10px;
    }
    
    .product-category {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .product-info h3 {
        font-size: 16px;
        min-height: auto;
    }
    
    .product-desc {
        font-size: 12px;
        min-height: auto;
    }
    
    .product-rating i {
        font-size: 13px;
    }
    
    .rating-text {
        font-size: 12px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .product-price-wrapper {
        width: 100%;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .btn-small {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Features Section Extra Small */
    .features-section {
        padding: 40px 0;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 25px 18px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 26px;
    }
    
    .feature-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}

/* ==========================================
   SMOOTH SCROLL BEHAVIOR
========================================== */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   LOADING OPTIMIZATION
========================================== */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Lazy Loading Placeholder */
img[loading="lazy"] {
    background: linear-gradient(135deg, #FFE8DC 0%, #FFD0B3 100%);
}

/* ==========================================
   MOBILE HAMBURGER MENU
========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #C4551A 0%, #A04315 100%);
    z-index: 999;
    padding: 0;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    visibility: hidden;
}

.mobile-nav-drawer.active {
    right: 0;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-brand {
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mobile-nav-links {
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: white;
    padding-left: 30px;
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    font-size: 18px;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 10px 25px;
}

.mobile-nav-auth {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-btn-login,
.mobile-btn-daftar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mobile-btn-login {
    background: white;
    color: #C4551A;
}

.mobile-btn-daftar {
    background: linear-gradient(135deg, #FF6B35 0%, #E8774A 100%);
    color: white;
}

.mobile-user-section {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
}

.mobile-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.mobile-user-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.mobile-user-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Mobile Search Bar (shown in drawer) */
.mobile-search-container {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 10px 15px;
}

.mobile-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
}

.mobile-search-form input::placeholder {
    color: #999;
}

.mobile-search-form button {
    background: none;
    border: none;
    color: #C4551A;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
}

/* ==========================================
   7. RESPONSIVE DESIGN
========================================== */
@media (max-width: 1200px) {
    .navbar-container {
        grid-template-columns: auto 1fr auto auto auto;
        gap: 30px;
    }
    
    .search-container {
        max-width: 350px;
    }
    
    .brand {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .navbar-container,
    .hero-container,
    .products-container,
    .footer-container {
        padding: 0 30px;
    }
    
    .navbar-container {
        grid-template-columns: auto 1fr auto auto auto;
        gap: 20px;
    }
    
    .search-container {
        max-width: 300px;
    }
    
    .brand {
        font-size: 20px;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .hero-container {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }
    
    .hero-image-main img {
        height: 450px;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .hero-images-small {
        gap: 15px;
    }
    
    .small-img {
        height: 140px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Show Mobile Menu Elements */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navbar Restructure for Mobile */
    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        gap: 12px;
    }
    
    /* Hide Desktop Nav Elements */
    .nav-left,
    .auth-buttons,
    .search-container {
        display: none;
    }
    
    .brand {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .nav-right {
        gap: 10px;
        display: flex;
        align-items: center;
    }
    
    .cart-icon {
        width: 40px;
        height: 40px;
    }
    
    .cart-icon i {
        font-size: 18px;
    }
    
    .cart-badge {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        line-height: 18px;
        top: -3px;
        right: -3px;
    }
    
    /* Hide User Menu on Mobile - use drawer instead */
    .user-menu {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 30px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .hero-image-main {
        max-width: 100%;
        order: 1;
    }
    
    .hero-image-main img {
        height: 300px;
        border-radius: 20px;
    }
    
    .hero-content {
        order: 2;
        gap: 20px;
    }
    
    .hero-badge {
        margin: 0 auto;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 12px 15px;
        justify-content: flex-start;
    }
    
    .stat-item i {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-images-small {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .small-img {
        height: 100px;
        border-radius: 12px;
    }
    
    .btn-hero {
        margin: 0 auto;
        padding: 12px 28px;
        font-size: 14px;
    }
    
    /* Products Section Mobile */
    .products-section {
        padding: 40px 0;
    }
    
    .products-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
        margin-top: 20px;
    }
    
    .product-filters {
        gap: 8px;
        margin-bottom: 25px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .product-filters::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-badge {
        top: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 9px;
        gap: 4px;
    }
    
    .product-info {
        padding: 14px;
        gap: 8px;
    }
    
    .product-category {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .product-info h3 {
        font-size: 14px;
        min-height: 38px;
        -webkit-line-clamp: 2;
    }
    
    .product-desc {
        display: none;
    }
    
    .product-rating {
        margin: 4px 0;
    }
    
    .product-rating i {
        font-size: 11px;
    }
    
    .rating-text {
        font-size: 11px;
        margin-left: 5px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 10px;
    }
    
    .product-price-wrapper {
        width: 100%;
    }
    
    .price-label {
        font-size: 10px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .price-unit {
        font-size: 10px;
    }
    
    .btn-small {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .view-all-wrapper {
        margin-top: 15px;
    }
    
    .btn-view-all {
        padding: 12px 28px;
        font-size: 14px;
        gap: 10px;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 40px 0;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .feature-icon i {
        font-size: 26px;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .feature-card p {
        font-size: 13px;
        margin: 0;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-section h2,
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    .footer-list li {
        margin-bottom: 10px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 15px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
        margin-top: 25px;
    }
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Navbar Extra Small */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-container {
        padding: 0 15px;
        gap: 10px;
    }
    
    .brand {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .cart-icon {
        width: 38px;
        height: 38px;
    }
    
    .cart-icon i {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Hero Extra Small */
    .hero {
        padding: 20px 0;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .hero-image-main img {
        height: 250px;
        border-radius: 16px;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 8px;
    }
    
    .stat-item {
        padding: 10px 12px;
        border-radius: 12px;
    }
    
    .stat-item i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .hero-images-small {
        gap: 8px;
    }
    
    .small-img {
        height: 85px;
        border-radius: 10px;
    }
    
    .btn-hero {
        padding: 10px 24px;
        font-size: 13px;
        gap: 8px;
    }
    
    /* Products Extra Small */
    .products-section {
        padding: 30px 0;
    }
    
    .products-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-subtitle {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    .section-divider {
        width: 50px;
        margin-top: 15px;
    }
    
    .product-filters {
        gap: 6px;
        margin-bottom: 20px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .product-card {
        border-radius: 14px;
    }
    
    .product-image {
        height: 130px;
    }
    
    .product-badge {
        top: 6px;
        right: 6px;
        padding: 4px 8px;
        font-size: 8px;
    }
    
    .product-info {
        padding: 12px;
        gap: 6px;
    }
    
    .product-category {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .product-info h3 {
        font-size: 13px;
        min-height: 34px;
    }
    
    .product-rating i {
        font-size: 10px;
    }
    
    .rating-text {
        font-size: 10px;
    }
    
    .product-footer {
        gap: 8px;
        padding-top: 8px;
    }
    
    .price-label {
        font-size: 9px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .price-unit {
        font-size: 9px;
    }
    
    .btn-small {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .btn-view-all {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    /* Features Extra Small */
    .features-section {
        padding: 30px 0;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .features-grid {
        gap: 12px;
        margin-top: 25px;
    }
    
    .feature-card {
        padding: 20px 15px;
        border-radius: 14px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 22px;
    }
    
    .feature-card h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    /* Footer Extra Small */
    .footer {
        padding: 30px 0 15px;
        margin-top: 30px;
    }
    
    .footer-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .footer-section h2,
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p {
        font-size: 12px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
        margin-top: 20px;
    }
    
    /* Mobile Drawer Extra Small */
    .mobile-nav-drawer {
        width: 90%;
        max-width: 300px;
    }
    
    .mobile-nav-header {
        padding: 15px;
    }
    
    .mobile-nav-brand {
        font-size: 20px;
    }
    
    .mobile-nav-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .mobile-nav-links {
        padding: 15px 0;
    }
    
    .mobile-nav-link {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .mobile-nav-link i {
        font-size: 16px;
    }
    
    .mobile-search-container {
        padding: 12px 15px;
    }
    
    .mobile-search-form {
        padding: 8px 12px;
    }
    
    .mobile-search-form input {
        font-size: 13px;
    }
    
    .mobile-nav-auth {
        padding: 15px;
        gap: 10px;
    }
    
    .mobile-btn-login,
    .mobile-btn-daftar {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .mobile-user-info {
        padding: 12px;
        gap: 12px;
    }
    
    .mobile-user-avatar {
        width: 45px;
        height: 45px;
    }
    
    .mobile-user-name {
        font-size: 15px;
    }
    
    .mobile-user-email {
        font-size: 12px;
    }
}

/* ==========================================
   BUTTON MENU POPULER - SPECIAL STYLING
========================================== */

/* Button Menu Populer dengan style khusus */
.filter-btn.populer {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8555 50%, #FFA575 100%);
    color: white !important;
    border: 2px solid transparent !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: pulseGlow 2.5s ease-in-out infinite;
    font-weight: 600;
}

/* Shine effect yang bergerak */
.filter-btn.populer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.filter-btn.populer:hover::before {
    left: 100%;
}

.filter-btn.populer span {
    position: relative;
    z-index: 2;
}

/* Hover effect */
.filter-btn.populer:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6) !important;
    background: linear-gradient(135deg, #FF8555 0%, #FFA575 50%, #FFB585 100%) !important;
    border-color: transparent !important;
    color: white !important;
}

/* Icon bintang dengan animasi sparkle */
.filter-btn.populer i {
    font-size: 16px;
    animation: sparkleRotate 2s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
    position: relative;
    z-index: 2;
}

/* Animation sparkle untuk icon bintang */
@keyframes sparkleRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
    }
    25% {
        transform: scale(1.15) rotate(-10deg);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1));
    }
    50% {
        transform: scale(1.25) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1));
    }
    75% {
        transform: scale(1.15) rotate(10deg);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1));
    }
}

/* Animation pulse glow untuk button */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6), 
                    0 0 20px rgba(255, 107, 53, 0.3);
    }
}

/* State active untuk button populer */
.filter-btn.populer.active {
    background: linear-gradient(135deg, #C4551A 0%, #A04315 100%) !important;
    box-shadow: 0 8px 25px rgba(196, 85, 26, 0.5) !important;
    transform: scale(1.02);
    color: white !important;
}

.filter-btn.populer.active:hover {
    transform: translateY(-4px) scale(1.05) !important;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .filter-btn.populer {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .filter-btn.populer i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .filter-btn.populer {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .filter-btn.populer i {
        font-size: 13px;
    }
}