
/* ==========================
RESET
========================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body.mobile-nav-open {
    overflow: hidden;
}

html{

    scroll-behavior:smooth;

}

body{

    background:
        radial-gradient(ellipse 85% 48% at 8% 4%,rgba(255,242,247,.65),transparent 68%),
        radial-gradient(ellipse 72% 42% at 92% 18%,rgba(255,248,232,.55),transparent 70%),
        radial-gradient(ellipse 90% 52% at 48% 82%,rgba(255,242,247,.42),transparent 72%),
        linear-gradient(118deg,transparent 20%,rgba(255,255,255,.34) 43%,transparent 62%),
        linear-gradient(292deg,transparent 28%,rgba(246,237,226,.24) 51%,transparent 73%),
        #FCFAF7;

    color:#2D2926;

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}
/* ==========================
ANNOUNCEMENT BAR
========================== */

.announcement-bar{

    background:#FFF4F8;

    color:#6B5A5A;

    text-align:center;

    padding:12px;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

}

/* ==========================
NAVBAR
========================== */

.nav-links{

    display:flex;

    align-items:center;

    /* New styles for mobile nav */
    position: static; /* Changed from flex for mobile */
    flex-wrap: wrap; /* Allow items to wrap on mobile */

    gap:30px;

    list-style:none;

}

.navbar{

    width:90%;

    max-width:1400px;

    margin:25px auto;

    padding:18px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border-radius:60px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

/* New styles for mobile navigation */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; /* Push actions to the right */
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    width: 24px;
    z-index: 1002;
}

.hamburger-line {
    background: #2D2926;
    border-radius: 2px;
    display: block;
    height: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #2D2926;
    cursor: pointer;
    font-size: 36px;
    position: absolute;
    right: 22px;
    top: 32px;
}
.navbar{
    /* your navbar code */
}

.logo img{

    height:80px;

}
/* ==========================
HERO SECTION
========================== */

#hero{

    max-width:1400px;

    margin:70px auto;

    padding:0 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.hero-content{

    flex:1;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    background:#FFF2F7;

    color:#E58CB5;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

.hero-subtitle{

    text-transform:uppercase;

    letter-spacing:2px;

    color:#8A817C;

    font-size:14px;

    margin-bottom:18px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:82px;

    line-height:0.95;

    color:#2D2926;

    margin-bottom:30px;

}

.hero-description{

    font-size:20px;

    color:#6D6662;

    line-height:1.8;

    max-width:560px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.primary-btn{

    background:#F5A8C9;

    color:white;

    text-decoration:none;

    padding:18px 36px;

    border-radius:999px;

    font-weight:600;

}

.secondary-btn{

    text-decoration:none;

    border:2px solid #F5A8C9;

    color:#F5A8C9;

    padding:18px 36px;

    border-radius:999px;

    font-weight:600;

}

.reviews{

    font-size:18px;

    color:#555;

}

.reviews span{

    margin-left:10px;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    position:relative;

}

.hero-image img{

    width:520px;

    border-radius:30px;

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}
.glow{

position:absolute;

width:600px;

height:600px;

background:
radial-gradient(circle,
rgba(245,168,201,.25),
rgba(255,220,235,.15),
transparent);

filter:blur(90px);

z-index:-1;

}

/* ==========================
COLLECTIONS SECTION
========================== */

.collections-section{

    max-width:1400px;

    margin:110px auto;

    padding:0 8%;

    position:relative;

    isolation:isolate;

}

.collections-section::before{

    content:"";

    position:absolute;

    inset:-70px -30px;

    background:radial-gradient(ellipse at center,rgba(245,168,201,.12),rgba(255,242,247,.06) 42%,transparent 72%);

    filter:blur(18px);

    pointer-events:none;

    z-index:0;

}

.collections-heading,
.collections-grid{

    position:relative;

    z-index:1;

}

.collections-heading{

    margin-bottom:50px;

    text-align:center;

}

.collections-eyebrow{

    color:#E58CB5;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:12px;

    text-transform:uppercase;

}

.collections-heading h2{

    color:#2D2926;

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:600;

}

.collections-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:40px;

}

.collection-card{

    display:flex;

    flex-direction:column;

    overflow:hidden;

    background:rgba(255,255,255,.72);

    border:1px solid rgba(255,255,255,.75);

    border-radius:36px;

    backdrop-filter:blur(18px);

    box-shadow:0 18px 45px rgba(45,41,38,.08);

    transition:transform .45s ease,box-shadow .45s ease;

}

.collection-card:hover{

    box-shadow:0 30px 65px rgba(229,140,181,.22);

    transform:translateY(-12px);

}

.collection-image{

    height:260px;

    overflow:hidden;

    background:#FFF2F7;

}

.collection-image img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .5s ease;

}

.collection-card:hover .collection-image img{

    transform:scale(1.08);

}

.collection-card-content{

    display:flex;

    flex:1;

    flex-direction:column;

    padding:26px 28px 30px;

}

.collection-card-content h3{

    color:#2D2926;

    font-family:'Cormorant Garamond',serif;

    font-size:32px;

    font-weight:600;

    margin-bottom:18px;

}

.collection-card-content a{

    align-self:flex-start;

    color:#E58CB5;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-top:auto;

    text-decoration:none;

}

/* ==========================
LUXURY HOMEPAGE SECTIONS
========================== */

.section-eyebrow{color:#E58CB5;font-size:12px;font-weight:600;letter-spacing:2px;margin-bottom:12px;text-transform:uppercase;}
.section-intro{margin-bottom:38px;text-align:center;}
.section-intro h2{color:#2D2926;font-family:'Cormorant Garamond',serif;font-size:42px;font-weight:600;}

.featured-case{align-items:stretch;background:rgba(255,255,255,.62);border:1px solid rgba(255,255,255,.8);border-radius:30px;box-shadow:0 18px 48px rgba(83,60,50,.07);display:grid;grid-template-columns:.88fr 1.12fr;margin:100px auto;max-width:1176px;overflow:hidden;}
.featured-copy{align-self:center;padding:58px 70px;}
.featured-copy h2{color:#2D2926;font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:600;margin-bottom:18px;}
.featured-copy > p:not(.section-eyebrow):not(.featured-price){color:#6D6662;line-height:1.7;margin-bottom:16px;}
.featured-price{color:#E58CB5;font-size:23px;font-weight:600;margin-bottom:30px;}
.featured-image{min-height:360px;overflow:hidden;}
.featured-image img{display:block;height:100%;object-fit:cover;width:100%;}

.brand-benefits,.social-gallery,.testimonials{margin:100px auto;max-width:1240px;padding:0 32px;}
.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);}
.benefit-item{padding:0 28px;text-align:center;}
.benefit-item + .benefit-item{border-left:1px solid rgba(130,104,94,.2);}
.benefit-icon{align-items:center;background:#FFF2F7;border-radius:50%;color:#6B5A5A;display:inline-flex;font-size:26px;height:54px;justify-content:center;margin-bottom:16px;width:54px;}
.benefit-item h3{font-size:14px;font-weight:600;margin-bottom:8px;}
.benefit-item p{color:#6D6662;font-size:13px;line-height:1.5;}

.social-gallery-grid{display:grid;gap:16px;grid-template-columns:repeat(6,1fr);}
.social-gallery-grid img{border-radius:16px;display:block;height:150px;object-fit:cover;width:100%;}
.instagram-link{background:#F5A8C9;border-radius:999px;color:#fff;display:table;font-size:13px;font-weight:600;margin:28px auto 0;padding:13px 28px;text-decoration:none;}

.testimonials-grid{display:grid;gap:22px;grid-template-columns:repeat(3,1fr);}
.testimonial-card{background:rgba(255,255,255,.64);border:1px solid rgba(255,255,255,.8);border-radius:18px;box-shadow:0 12px 34px rgba(83,60,50,.06);padding:26px;}
.testimonial-card p{color:#534944;font-size:14px;line-height:1.5;margin-bottom:20px;}
.testimonial-card footer{display:flex;font-size:13px;font-style:normal;font-weight:600;justify-content:space-between;}
.testimonial-card footer span{color:#E58CB5;letter-spacing:2px;}

.site-footer{background:rgba(255,255,255,.48);border-top:1px solid rgba(130,104,94,.12);display:grid;gap:70px;grid-template-columns:.9fr 1.6fr;margin-top:90px;padding:55px max(8%,40px);}
.footer-brand img{height:58px;margin-bottom:16px;object-fit:contain;object-position:left;width:180px;}
.footer-brand p{color:#817772;font-size:13px;line-height:1.6;max-width:270px;}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);}
.footer-links h2{font-size:13px;font-weight:600;margin-bottom:14px;}
.footer-links a{color:#817772;display:block;font-size:12px;margin-bottom:8px;text-decoration:none;}

/* ==========================
   INSTAGRAM SECTION
   ========================== */

.instagram-section{
    align-items:center;
    display:flex;
    flex-direction:column;
    gap:24px;
    margin:100px auto;
    max-width:1240px;
    padding:0 32px;
    text-align:center;
}

.instagram-section .instagram-eyebrow{
    color:#E58CB5;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.instagram-section h2{
    color:#2D2926;
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    font-weight:600;
    line-height:1.1;
    margin:0;
}

.instagram-section .instagram-subtitle{
    color:#6D6662;
    font-size:17px;
    line-height:1.7;
    max-width:600px;
}

.instagram-section .instagram-handle{
    color:#2D2926;
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    font-weight:500;
}

.instagram-section .instagram-btn{
    background:#F5A8C9;
    border-radius:999px;
    color:#FFFFFF;
    display:inline-block;
    font-size:13px;
    font-weight:600;
    padding:14px 36px;
    text-decoration:none;
    transition:box-shadow .3s ease,transform .3s ease;
}

.instagram-section .instagram-btn:hover{
    box-shadow:0 12px 24px rgba(229,140,181,.22);
    transform:translateY(-2px);
}

/* Footer Instagram link */
.footer-instagram{
    color:#817772;
    display:inline-block;
    font-size:12px;
    margin-bottom:8px;
    text-decoration:none;
}

.footer-instagram:hover{
    color:#E58CB5;
}

@media (max-width:600px){
    .instagram-section{
        gap:20px;
        margin:80px auto;
        padding:0 22px;
    }

    .instagram-section h2{
        font-size:40px;
    }

    .instagram-section .instagram-handle{
        font-size:24px;
    }
}

/* Polish existing navigation and hero elements for the campaign layout. */
.nav-links a{color:#2D2926;font-family:'Cormorant Garamond',serif;font-size:17px;font-weight:600;letter-spacing:.25px;text-decoration:none;}
.shop-btn{background:#E99AB8;border-radius:999px;color:#fff;font-family:'Cormorant Garamond',serif;font-size:16px;font-weight:600;letter-spacing:.2px;padding:13px 25px;text-decoration:none;}
.brand-lockup{align-items:center;color:#E58CB5;display:flex;gap:12px;text-decoration:none;}
.brand-mark{background:#fff;border:1px solid rgba(229,140,181,.18);border-radius:14px;box-shadow:0 5px 14px rgba(83,60,50,.08);display:block;height:52px;overflow:hidden;width:52px;}
.brand-mark img{display:block;height:100%;object-fit:contain;width:100%;}
.brand-name{font-family:'Great Vibes',cursive;font-size:37px;line-height:1;white-space:nowrap;}
.hero-image img{object-fit:cover;}
.primary-btn{display:inline-block;transition:transform .3s ease,box-shadow .3s ease;}
.primary-btn:hover,.shop-btn:hover,.instagram-link:hover{box-shadow:0 12px 24px rgba(229,140,181,.22);transform:translateY(-2px);}

@media (max-width:900px){
    .navbar{padding:14px 22px;}
    .nav-links{gap:15px;}
    .brand-mark{height:40px;width:40px;}
    #hero,.featured-case{gap:42px;grid-template-columns:1fr;}
    #hero{margin:50px auto;}
    .hero-content h1{font-size:65px;}
    .hero-image img{width:min(100%,520px);}
    .collections-grid,.testimonials-grid{grid-template-columns:repeat(2,1fr);}
    .collections-grid .collection-card:last-child{grid-column:span 2;}
    .benefits-grid{grid-template-columns:repeat(2,1fr);row-gap:34px;}
    .benefit-item:nth-child(3){border-left:0;}
    .social-gallery-grid{grid-template-columns:repeat(3,1fr);}
    .site-footer{grid-template-columns:1fr;}
}

@media (max-width:600px){
    .announcement-bar,.nav-links{display:none;}
    .navbar{margin:16px auto; justify-content: space-between;}
    .brand-name{font-size:25px;}
    #hero,.collections-section,.brand-benefits,.social-gallery,.testimonials{padding:0 22px;}
    .hero-content h1{font-size:51px;}
    .shop-btn { display: none; } /* Hide shop now button on smallest screens */
    .hamburger-btn { display: flex; }
    .hero-description{font-size:17px;}
    .hero-buttons{align-items:flex-start;flex-direction:column;}
    .collections-heading h2,.section-intro h2,.featured-copy h2{font-size:40px;}
    .collections-grid,.testimonials-grid{grid-template-columns:1fr;}
    .collections-grid .collection-card:last-child{grid-column:auto;}
    .featured-copy{padding:42px 30px;}
    .benefits-grid,.footer-links{gap:30px;grid-template-columns:1fr;}
    .benefit-item + .benefit-item{border-left:0;}
    .social-gallery-grid{grid-template-columns:repeat(2,1fr);}
    .site-footer{gap:40px;padding:45px 22px;}

    /* Mobile Nav Open State */
    body.mobile-nav-open .nav-links {
        align-items: center;
        background: #FCFAF7;
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100vh;
        justify-content: center;
        left: 0;
        position: fixed;
        top: 0;
        width: 100vw;
        z-index: 998;
    }

    body.mobile-nav-open .nav-links a {
        font-size: 24px;
    }
}

@media (max-width: 375px) {
    /* Further reduce heading sizes on very small screens */
    .hero-content h1 { font-size: 46px; }
    .collections-heading h2, .featured-copy h2 { font-size: 36px; }
    .phone-cases-heading h1 { font-size: 46px; }
    .single-product-copy h1 { font-size: 42px; }
    .checkout-heading h1 { font-size: 42px; }
    .gallery-hero h1 { font-size: 44px; }
    .about-hero-copy h1 { font-size: 44px; }
    .faq-hero h1 { font-size: 44px; }
    .custom-orders-hero-copy h1 { font-size: 44px; }
}

/* ==========================
   SHOP SECTION
========================== */

.shop-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 8%;
}

.shop-heading {
    text-align: center;
    margin-bottom: 55px;
}

.shop-eyebrow {
    color: #E58CB5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.shop-heading h2 {
    color: #2D2926;
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 15px;
}

.shop-description {
    color: #6D6662;
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
    margin: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(45, 41, 38, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(45, 41, 38, 0.12);
}

.product-image {
    height: 300px;
    overflow: hidden;
    background: #FFF2F7;
}

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

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #E58CB5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.product-info h3 {
    color: #2D2926;
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    margin-bottom: 10px;
}

.product-description {
    color: #756E69;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-price {
    color: #2D2926;
    font-size: 17px;
    font-weight: 600;
}

.product-btn {
    background: #F5A8C9;
    color: white;
    text-decoration: none;
    padding: 11px 17px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.product-btn:hover {
    background: #E58CB5;
}

/* ==========================
   PHONE CASES PAGE
========================== */

.phone-cases-hero {
    margin: 75px auto 45px;
    max-width: 1400px;
    padding: 0 8%;
}

.back-home-link {
    color: #8A817C;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 58px;
    text-decoration: none;
}

.phone-cases-heading {
    margin: auto;
    max-width: 680px;
    text-align: center;
}

.phone-cases-heading h1 {
    color: #2D2926;
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 16px;
}

.phone-cases-heading > p:last-child {
    color: #6D6662;
    font-size: 17px;
    line-height: 1.7;
}

.phone-cases-products {
    margin: 0 auto 120px;
    max-width: 1400px;
    padding: 0 8%;
}

.phone-cases-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.phone-case-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    box-shadow: 0 16px 42px rgba(45, 41, 38, 0.08);
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.phone-case-card:hover {
    box-shadow: 0 26px 56px rgba(229, 140, 181, 0.2);
    transform: translateY(-8px);
}

.phone-case-image {
    background: #FFF2F7;
    height: 320px;
    overflow: hidden;
}

.phone-case-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    width: 100%;
}

.phone-case-card:hover .phone-case-image img {
    transform: scale(1.06);
}

.phone-case-info {
    padding: 22px;
}

.phone-case-info h2 {
    color: #2D2926;
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-case-price {
    color: #E58CB5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.phone-case-actions {
    display: flex;
    gap: 10px;
}

.details-btn,
.order-btn {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    padding: 11px 14px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    width: 50%;
}

.details-btn {
    border: 1px solid #F5A8C9;
    color: #D876A4;
}

.details-btn:hover {
    background: #FFF2F7;
}

.order-btn {
    background: #F5A8C9;
    color: #FFFFFF;
}

.order-btn:hover {
    background: #E58CB5;
}

@media (max-width: 1000px) {
    .phone-cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .phone-cases-hero,
    .phone-cases-products {
        padding: 0 22px;
    }

    .phone-cases-hero {
        margin-top: 42px;
    }

    .back-home-link {
        margin-bottom: 42px;
    }

    .phone-cases-heading h1 {
        font-size: 52px;
    }

    .phone-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   CART STYLES
========================== */

/* ---- Cart Icon ---- */

.cart-icon {
    background: none;
    border: none;
    color: #2D2926;
    cursor: pointer;
    padding: 8px;
    position: relative;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #E58CB5;
}

.cart-badge {
    background: #F5A8C9;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    height: 20px;
    line-height: 20px;
    min-width: 20px;
    padding: 0 6px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}

/* ---- Cart Overlay ---- */

.cart-overlay {
    background: rgba(45, 41, 38, 0.5);
    height: 100%;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 999;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ---- Cart Drawer ---- */

.cart-drawer {
    background: #FFFFFF;
    box-shadow: -4px 0 24px rgba(45, 41, 38, 0.15);
    height: 100%;
    max-width: 420px;
    min-width: 320px;
    position: fixed;
    right: -420px;
    top: 0;
    transition: right 0.3s ease;
    width: 90%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    align-items: center;
    border-bottom: 1px solid rgba(138, 129, 124, 0.18);
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
}

.cart-header h2 {
    color: #2D2926;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: #6D6662;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: #2D2926;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-item {
    border-bottom: 1px solid rgba(138, 129, 124, 0.12);
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    position: relative;
}

.cart-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image {
    border-radius: 12px;
    flex-shrink: 0;
    height: 80px;
    overflow: hidden;
    width: 80px;
}

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

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    color: #2D2926;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
    word-wrap: break-word;
}

.cart-item-options {
    color: #817772;
    font-size: 12px;
    margin: 0 0 8px 0;
}

.cart-item-price {
    color: #E58CB5;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.cart-item-quantity {
    align-items: center;
    display: flex;
    gap: 10px;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(138, 129, 124, 0.25);
    border-radius: 8px;
    color: #6D6662;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    height: 28px;
    padding: 0;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #F5A8C9;
    border-color: #F5A8C9;
    color: #FFFFFF;
}

.quantity-value {
    color: #2D2926;
    font-size: 14px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #EA4335;
    cursor: pointer;
    font-size: 24px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

/* ---- Cart Empty State ---- */

.cart-empty {
    align-items: center;
    color: #6D6662;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.cart-empty p {
    font-size: 16px;
    margin-bottom: 24px;
}

.continue-shopping-btn {
    background: #F5A8C9;
    border: none;
    border-radius: 999px;
    color: #FFFFFF;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.continue-shopping-btn:hover {
    box-shadow: 0 12px 24px rgba(229, 140, 181, 0.22);
    transform: translateY(-2px);
}

/* ---- Cart Summary ---- */

.cart-summary {
    border-top: 1px solid rgba(138, 129, 124, 0.18);
    padding: 20px 24px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.cart-summary-row span:first-child {
    color: #6D6662;
}

.cart-summary-row span:last-child {
    color: #2D2926;
    font-weight: 600;
}

.cart-summary-total {
    border-top: 1px solid rgba(138, 129, 124, 0.18);
    margin-top: 12px;
    padding-top: 12px;
}

.cart-summary-total span {
    font-size: 16px;
}

.checkout-btn {
    background: #F5A8C9;
    border: none;
    border-radius: 999px;
    color: #FFFFFF;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    padding: 16px 36px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.checkout-btn:hover {
    box-shadow: 0 12px 24px rgba(229, 140, 181, 0.22);
    transform: translateY(-2px);
}

/* ---- Cart Notification ---- */

.cart-notification {
    background: #2D2926;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(45, 41, 38, 0.2);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    left: 50%;
    opacity: 0;
    padding: 14px 24px;
    position: fixed;
    top: 80px;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.3s ease;
    z-index: 2000;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- Mobile Responsive ---- */

@media (max-width: 768px) {
    .cart-drawer {
        max-width: 100%;
        min-width: 100%;
        right: -100%;
        width: 100%;
    }

    .cart-drawer.open {
        right: 0;
    }

    .cart-icon {
        margin-left: auto;
    }

    .navbar-actions {
        margin-left: 0; /* Reset margin on tablet */
    }
}

@media (max-width: 480px) {
    .cart-header {
        padding: 16px 20px;
    }

    .cart-items {
        padding: 16px 20px;
    }

    .cart-summary {
        padding: 16px 20px;
    }

    .cart-item-image {
        height: 60px;
        width: 60px;
    }
}