/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
    /* Earth Tones Palette */
    --primary: #2B4C3E;         /* Dark green */
    --primary-light: #3F6F5A;   
    --secondary: #8B5E34;       /* Brown */
    --secondary-light: #B47C4A; 
    --bg-light: #F4F1EA;        /* Cream / Off-white */
    --accent: #E8B923;          /* Warm Yellow for ratings/accents */
    
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    
    /* Utility */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   LOADING ANIMATION
========================================= */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    text-align: center;
    color: var(--primary);
    font-size: 3rem;
}

.loader span {
    display: block;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* =========================================
   TYPOGRAPHY & BUTTONS
========================================= */
h1, h2, h3, h4 {
    color: var(--primary);
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(43, 76, 62, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 76, 62, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-wa-checkout {
    width: 100%;
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
}

.btn-wa-checkout:hover {
    background-color: #128C7E;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--secondary);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

.navbar.scrolled .brand,
.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle {
    color: var(--primary);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand i {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-trigger {
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cart-trigger:hover {
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(-100%);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../img/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax feel */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 30, 24, 0.85) 0%, rgba(16, 30, 24, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
    padding-top: 4rem; /* Offset for navbar */
}

.hero-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* =========================================
   FEATURES SECTION
========================================= */
.features {
    padding: 6rem 0;
    background-color: var(--white);
}

.features-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.features-image {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.features-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(139, 94, 52, 0.1);
    color: var(--secondary);
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   CATALOG SECTION
========================================= */
.catalog {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.search-container {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #f0f0f0;
}

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

.product-card:hover .product-img {
    transform: scale(1.08); /* Zoom effect on hover */
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.product-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.add-to-cart-btn {
    margin-top: auto;
    width: 100%;
    background-color: var(--bg-light);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.add-to-cart-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: none;
    transform: none;
}

/* =========================================
   TESTIMONIALS & FOOTER
========================================= */
.testimonials {
    padding: 6rem 0;
    background-color: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testi-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(139, 94, 52, 0.1);
    font-family: serif;
    line-height: 1;
}

.rating {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testi-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.socials a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* =========================================
   FLOATING ELEMENTS
========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-weight: 500;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* =========================================
   CART OVERLAY & SIDEBAR
========================================= */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1002;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
}

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

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: #ff4757;
    transform: rotate(90deg);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 2rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border: none;
    background-color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.qty-input {
    width: 30px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    background-color: #faf9f6;
}

.cart-date-input {
    margin-bottom: 1rem;
}

.cart-date-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-date-input input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cart-total strong {
    font-size: 1.4rem;
    color: var(--primary);
}

/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
========================================= */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 3rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-wrapper {
        flex-direction: column;
    }
    .features-image img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    /* 1. FONT SIZE */
    h1, .hero-title { font-size: 1.8rem !important; line-height: 1.25; margin-bottom: 1rem; } /* 24-28px */
    h2, .section-header h2 { font-size: 1.4rem !important; margin-bottom: 0.5rem; } /* 20px */
    body, p, .hero-subtitle, .product-price, .feature-card p, .testi-text { font-size: 1rem !important; } /* 14px */
    .hero-label, .product-badge, .cart-item-price, .author-info span, .product-price span { font-size: 0.85rem !important; } /* 12px */

    /* 2. SPACING & PADDING */
    .features, .catalog, .testimonials { padding: 1.5rem 0 !important; }
    .feature-card, .testi-card { padding: 1rem !important; }
    .container { padding: 0 1rem; }
    .section-header { margin-bottom: 1.5rem; }
    .features-wrapper { gap: 1rem; }
    .product-info { padding: 0.8rem; gap: 0.5rem; }
    .search-container { margin-bottom: 1.5rem; }
    .search-input { padding: 0.8rem 1rem 0.8rem 2.5rem; }
    .search-icon { left: 1rem; }

    /* 3. UKURAN GAMBAR & 7. HERO SECTION */
    .hero { min-height: unset !important; height: 70vh !important; }
    .hero-text { padding-top: 4rem; }
    .features-image img { height: 180px; min-height: unset; object-fit: cover; }
    .image-badge { padding: 0.4rem 0.6rem; font-size: 0.75rem !important; bottom: 10px; left: 10px; gap: 0.3rem; }
    .product-img-wrapper { aspect-ratio: 1 / 1; max-height: 160px; }

    /* 4. GRID PRODUK & FEATURES */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 auto 0.8rem;
    }

    /* 5. BUTTON SIZE */
    .btn { height: 42px; font-size: 1rem !important; padding: 0 1rem; }
    .hero-cta { flex-direction: row; gap: 8px; flex-wrap: wrap; }
    .hero-cta .btn { flex: 1; padding: 0; min-width: 130px; font-size: 0.95rem !important; }
    .add-to-cart-btn { padding: 0 0.5rem; font-size: 0.75rem !important; height: 32px; border-width: 1px; }
    .add-to-cart-btn i { font-size: 0.75rem; }

    /* 8. CARD PRODUK */
    .product-title {
        font-size: 1.1rem !important; margin-bottom: 0;
        display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .product-price { margin-bottom: 0; }

    /* 9. CART (KERANJANG) */
    .cart-sidebar {
        top: auto;
        bottom: -100%;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 80vh;
        border-radius: 20px 20px 0 0;
        transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .cart-sidebar.active { bottom: 0; right: 0; }
    .cart-items { padding: 1rem; }
    .cart-item { padding: 0.8rem; gap: 0.5rem; }
    .cart-item-img { width: 50px; height: 50px; }
    .cart-footer { padding: 1rem; }
    
    /* Global Rule Extra adjustments */
    body { overflow-x: hidden; }
}
