/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fcfcfc;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn--primary {
    background: #2c2c2c;
    color: #fff;
    border-color: #2c2c2c;
}

.btn--primary:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn--outline {
    background: transparent;
    color: #2c2c2c;
    border-color: #2c2c2c;
}

.btn--outline:hover {
    background: #2c2c2c;
    color: #fff;
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn--whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ===== HEADER ===== */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Playfair Display', serif;
}

.logo__text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo__sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 1px;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: #000;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__action-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.header__action-btn:hover {
    color: #000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
}

/* Search Bar */
.search-bar {
    background: #f5f5f5;
    padding: 0.8rem 0;
    border-top: 1px solid #eee;
}

.search-bar.open {
    display: block;
}

.search-bar__inner {
    display: flex;
    gap: 0.5rem;
}

.search-bar__input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 0.95rem;
    outline: none;
}

.search-bar__btn {
    background: #2c2c2c;
    border: none;
    color: #fff;
    padding: 0 1.5rem;
    border-radius: 30px;
    cursor: pointer;
}

/* ===== HERO with SLIDER ===== */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    background: #2c2c2c;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero__title-highlight {
    color: #a67c52;
}

.hero__desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider */
.hero__slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 400px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    object-fit: cover;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots span.active {
    background: #fff;
}

/* ===== FEATURES ===== */
.features {
    padding: 3rem 0;
    background: #fff;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

.feature-card__icon {
    font-size: 2.5rem;
    color: #a67c52;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
}

.section-subtitle {
    color: #777;
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 4rem 0;
    background: #fafafa;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.category-card__image {
    height: 200px;
    overflow: hidden;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card__title {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.25rem;
}

.category-card__count {
    color: #888;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

/* ===== PRODUCTS GRID ===== */
.featured-products {
    padding: 4rem 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1rem 1rem 1.2rem;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.product-card__image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-card__price {
    color: #a67c52;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.product-card__btn {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.product-card__btn:hover {
    background: #000;
}

.featured-products__cta {
    text-align: center;
}

/* ===== WHATSAPP COMMUNITY ===== */
.whatsapp-community {
    padding: 4rem 0;
    background: #25D366;
    color: #fff;
}

.whatsapp-community__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.whatsapp-community__icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.whatsapp-community__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.whatsapp-community__desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.whatsapp-community .btn--whatsapp {
    background: #fff;
    color: #25D366;
    border-color: #fff;
    font-weight: 700;
}

.whatsapp-community .btn--whatsapp:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.whatsapp-community__note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: #ddd;
    padding: 3rem 0 1.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer__brand .logo--footer .logo__text {
    color: #fff;
}

.footer__brand .logo--footer .logo__sub {
    color: #aaa;
}

.footer__brand-text {
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__socials a {
    color: #aaa;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer__socials a:hover {
    color: #fff;
}

.footer__links h4,
.footer__contact h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer__links ul li,
.footer__contact ul li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: #aaa;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: #fff;
}

.footer__contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #aaa;
}

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #888;
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-links a {
    color: #888;
    transition: color 0.3s;
}

.footer__bottom-links a:hover {
    color: #fff;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 4rem 0;
    background: #fafafa;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact__info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact__info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.contact__info p i {
    width: 24px;
    color: #a67c52;
}

.contact__socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact__socials a {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s;
}

.contact__socials a:hover {
    color: #a67c52;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__form input,
.contact__form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border 0.3s;
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: #a67c52;
    outline: none;
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: 4rem 0;
    background: #fff;
}

.location__map {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE FOR CONTACT ===== */
@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== MOBILE MENU SLIDE ANIMATION ===== */
.nav {
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* ===== LOCATION FULL WIDTH ===== */
.location {
    padding: 4rem 0 0 0;
    background: #fff;
}

.location__full {
    width: 100%;
}

.location__header {
    padding-bottom: 2rem;
}

.location__map {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.location__map iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ===== RESPONSIVE FOR MOBILE MENU ===== */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 0 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
        z-index: 999;
        overflow: hidden;
    }
    
    .nav.open {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding: 1.5rem;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-toggle {
        display: block;
    }
}

/* ===== CONTACT FORM WHATSAPP ===== */
.contact__form .btn--primary {
    background: #25D366;
    border-color: #25D366;
}

.contact__form .btn--primary:hover {
    background: #1da851;
    border-color: #1da851;
}

/* ===== LOCATION: TWO COLUMNS WITH WHITE BORDERS ===== */
.location {
    padding: 3rem 0 4rem;
    background: #fafafa; /* light background to make white container pop */
}

.location .container {
    background: #fff;
    border-radius: 30px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.location__map-item iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: block;
}

/* ===== RESPONSIVE: STACK MAPS ON MOBILE ===== */
@media (max-width: 768px) {
    .location__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .location__map-item iframe {
        height: 280px;
    }
    .location .container {
        padding: 1.5rem 1rem;
    }
}

/* ===== PRODUCTS SECTION (replaces categories) ===== */
.products {
    padding: 4rem 0;
    background: #fafafa;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    border-color: #a67c52;
    color: #a67c52;
}

.filter-btn.active {
    background: #2c2c2c;
    border-color: #2c2c2c;
    color: #fff;
}

.filter-btn.active:hover {
    background: #000;
    border-color: #000;
}

/* Product grid already exists, but ensure it's styled */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1rem 1rem 1.2rem;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.product-card__image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-card__price {
    color: #a67c52;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.product-card__btn {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.product-card__btn:hover {
    background: #000;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .filter-btn {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
}

/* In css/style.css */
.empty-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    color: #888;
    font-size: 1.1rem;
    width: 100%;
}

/* ===== FIX: RESPONSIVE HERO & SLIDER (Adds 1 column on phones) ===== */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__slider {
        height: 300px;
    }
}

/* ===== STRICT FIX FOR MOBILE SLIDER ===== */
@media (max-width: 768px) {
    .hero__slider {
        height: 300px;
        min-height: 300px; /* Forces the container to hold its space */
    }
    .slider-container {
        height: 100%;
        width: 100%;
        display: block;
    }
    .slider-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ===== CONFIRMATION OVERLAY STYLES ===== */
.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.confirmation-box {
    background: #fff;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.checkmark {
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 1rem;
    text-align: center;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart-overlay.open { display: block; opacity: 1; }

.cart-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 380px; max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex; flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.cart-sidebar.open { transform: translateX(0); }

.sidebar-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
    background: #fcfcfc;
    border-radius: 20px 20px 0 0;
}
.sidebar-header h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1a1a1a; }
.sidebar-header button { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #666; transition: 0.3s; }
.sidebar-header button:hover { color: #000; transform: rotate(90deg); }

.sidebar-body {
    flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
}
.sidebar-body.empty { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #888; }

.cart-sidebar-item {
    display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #f5f5f5; align-items: center;
}
.cart-sidebar-item img {
    width: 60px; height: 60px; border-radius: 12px; object-fit: cover;
    border: 1px solid #eee;
}
.item-details { flex: 1; }
.item-details h4 { font-weight: 600; font-size: 0.95rem; color: #1a1a1a; margin-bottom: 0.2rem; }
.item-details p { color: #a67c52; font-weight: 700; font-size: 1rem; }
.item-actions { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.2rem; }
.quantity-stepper { display: flex; align-items: center; gap: 0.5rem; border: 1px solid #ddd; border-radius: 30px; padding: 0.1rem 0.3rem; background: #fff; }
.quantity-stepper button { background: none; border: none; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-weight: 600; color: #333; transition: 0.2s; }
.quantity-stepper button:hover { background: #f0f0f0; }
.quantity-stepper span { min-width: 20px; text-align: center; font-weight: 600; }
.remove-btn { color: #dc3545; background: none; border: none; cursor: pointer; font-size: 1rem; transition: 0.2s; }
.remove-btn:hover { background: #fce4e4; border-radius: 50%; padding: 0.2rem; }

.sidebar-footer {
    padding: 1.2rem 1.5rem; border-top: 1px solid #eee;
    background: #fcfcfc; border-radius: 0 0 20px 20px;
}
.total-row { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.total-row span:last-child { color: #a67c52; }
.checkout-btn { width: 100%; padding: 0.8rem 0; background: #2c2c2c; color: #fff; border: none; border-radius: 30px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.checkout-btn:hover { background: #000; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

@media (max-width: 480px) {
    .cart-sidebar { width: 100vw; border-radius: 20px 20px 0 0; }
}

.item-actions { 
    display: flex; 
    align-items: center; 
    gap: 0.8rem; 
    margin-left: auto; /* This forces the group to the far right edge */
}

.cart-sidebar-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: center;
    width: 100%; /* Ensures it uses the full container width */
    justify-content: flex-start; /* Start from the left */
}

.item-details { 
    flex: 1; /* Takes up all the remaining space between the image and the buttons */
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}