/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#FCF8F3;
    color:#3A2D28;
}

/* ==========================
   ANNOUNCEMENT BAR
========================== */

.announcement{
    background:#b8860b;
    color:white;
    text-align:center;
    padding:12px;
    font-size:15px;
    font-weight:500;
}

/* ==========================
   HEADER
========================== */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.logo{
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #3A2D28;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover{
    letter-spacing: 12px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#b8860b;
}

.header-icons{
    display:flex;
    align-items:center;
    gap:20px;
}

.cart-icon{
    cursor:pointer;
    font-size:18px;
    font-weight:600;
}

/* ==========================
   HERO
========================== */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 8%;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:70px;
    font-family:'Playfair Display',serif;
    line-height:1.1;
}

.hero-text p{
    margin:25px 0;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.hero-btn{
    padding:18px 40px;
    background:#b8860b;
    color:white;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(184,134,11,.35);
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

/* ==========================
   FEATURED
========================== */

.featured{
    padding:80px 8%;
}

.featured h2{
    text-align:center;
    font-size:40px;
    margin-bottom:30px;
    font-family:'Playfair Display',serif;
}

/* ==========================
   SEARCH
========================== */

.search-box{
    width:100%;
    max-width:700px;
    margin:0 auto 50px;
    display:block;
    padding:18px 25px;
    border:none;
    border-radius:50px;
    font-size:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    outline:none;
}

.search-box:focus{
    box-shadow:0 15px 35px rgba(184,134,11,.25);
}

/* ==========================
   PRODUCT GRID
========================== */

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

/* ==========================
   PRODUCT IMAGE
========================== */

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.card:hover img{
    transform:scale(1.05);
}

/* ==========================
   BADGE
========================== */

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#b8860b;
    color:white;
    padding:8px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    z-index:5;
}

/* ==========================
   WISHLIST
========================== */

.wishlist{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    box-shadow:0 6px 15px rgba(0,0,0,.12);
    transition:.3s;
    z-index:5;
}

.wishlist:hover{
    color:red;
    transform:scale(1.15);
}

/* ==========================
   CARD CONTENT
========================== */

.card-content{
    padding:22px;
}

.card-content h3{
    font-size:22px;
    margin-bottom:10px;
}

.rating{
    color:#f5b301;
    margin-bottom:10px;
    font-size:18px;
}

.price{
    font-size:26px;
    font-weight:700;
    color:#b8860b;
    margin-bottom:20px;
}

/* ==========================
   BUTTON
========================== */

.cart-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
    background:#b8860b;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.cart-btn:hover{
    background:#9b7008;
    transform:translateY(-2px);
}

/* ==========================
   WHY CHOOSE RUTH
========================== */

.why-ruth{
    padding:80px 8%;
    background:#fff;
}

.why-ruth h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    font-family:'Playfair Display',serif;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.why-card{
    background:#f8f5f0;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

/* ==========================
   REVIEWS
========================== */

.reviews{
    padding:80px 8%;
}

.reviews h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    font-family:'Playfair Display',serif;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.review-card{
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

/* ==========================
   CART SIDEBAR
========================== */

.cart-sidebar{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    max-width:100%;
    height:100vh;
    background:white;
    box-shadow:-10px 0 40px rgba(0,0,0,.15);
    transition:.35s;
    z-index:9999;
    display:flex;
    flex-direction:column;
    padding:25px;
}

.cart-sidebar.active{
    right:0;
}

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.cart-header button{
    border:none;
    background:none;
    font-size:22px;
    cursor:pointer;
}

#cartItems{
    flex:1;
    overflow-y:auto;
}

.cart-footer{
    border-top:1px solid #ddd;
    padding-top:20px;
}

.checkout-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
    background:#b8860b;
    color:white;
    cursor:pointer;
    font-size:16px;
    margin-top:15px;
}

/* ==========================
   PRODUCT MODAL
========================== */

.product-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:10000;
}

.product-modal.active{
    display:flex;
}

.modal-content{
    background:white;
    width:90%;
    max-width:520px;
    max-height:90vh;
    overflow-y:auto;
    border-radius:25px;
    padding:30px;
    position:relative;
    text-align:center;
}

.modal-content img{
    width:100%;
    max-height:350px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:20px;
}

.close-modal{
    position:absolute;
    top:15px;
    right:20px;
    font-size:32px;
    cursor:pointer;
}

#modalPrice{
    color:#b8860b;
    margin:15px 0;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:60px 8%;
}

.footer-links{
    margin:25px 0;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 12px;
}

.footer-links a:hover{
    color:#d4af37;
}

/* ==========================
   WHATSAPP BUTTON
========================== */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:900px){

header{
    flex-direction:column;
    gap:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    flex-direction:column-reverse;
    text-align:center;
}

.hero-text h1{
    font-size:48px;
}

.hero-text p{
    margin:auto;
}

.hero-image img{
    max-width:400px;
}

.cart-sidebar{
    width:100%;
}

}
.filter-buttons{

display:flex;

justify-content:center;

gap:15px;

margin:25px 0;

flex-wrap:wrap;

}

.filter-btn{

padding:12px 22px;

border:none;

border-radius:30px;

background:#f3f3f3;

cursor:pointer;

font-weight:600;

transition:.3s;

}

.filter-btn:hover{

background:#111;

color:white;

}

.filter-btn.active{

background:#111;

color:white;

}
/* HERO SLIDER */

.hero{

position:relative;

overflow:hidden;

height:650px;

display:flex;

align-items:center;

justify-content:center;

}

.hero-slider{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

z-index:0;

}

.slide{

position:absolute;

width:100%;

height:100%;

object-fit:cover;

opacity:0;

transition:opacity 1s ease;

}

.slide.active{

opacity:1;

}

.hero::before{

content:"";

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

z-index:1;

}

.hero-text{

position:relative;

color:white;

text-align:center;

max-width:700px;

padding:20px;

z-index:2;

}

.hero-text h1{

font-size:60px;

margin-bottom:20px;

}

.hero-text p{

font-size:20px;

margin-bottom:30px;

line-height:1.6;

color:#ffffff;

text-shadow:2px 2px 8px rgba(0,0,0,0.8);

font-weight:500;

}
/* ===========================
   STICKY HEADER
=========================== */

header{

position:sticky;

top:0;

z-index:1000;

background:white;

box-shadow:0 2px 15px rgba(0,0,0,.08);

}

/* Smooth scrolling */

html{

scroll-behavior:smooth;

}
/* DISCOUNT RIBBON */

.discount{

position:absolute;

top:10px;

right:-55px;

background:#e63946;

color:white;

padding:6px 45px;

font-size:11px;

font-weight:bold;

transform:rotate(45deg);

box-shadow:0 5px 15px rgba(0,0,0,.25);

z-index:1;

pointer-events:none;

}

.card{
    position:relative;
    overflow:hidden;
}
.remove-wishlist{
    width:100%;
    margin-top:15px;
    padding:10px;
    border:none;
    border-radius:8px;
    background:#d62828;
    color:white;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.remove-wishlist:hover{
    background:#b71c1c;
}
.review-count{
    color:#777;
    font-size:13px;
    font-weight:500;
    margin-left:5px;
}

.buy-btn{
    width:100%;
    padding:15px;
    margin-top:10px;
    border:none;
    border-radius:50px;
    background:#111;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.buy-btn:hover{
    background:#333;
}
.price{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:18px;
}

.new-price{
    color:#b8860b;
    font-size:26px;
    font-weight:700;
}

.save-price{
    color:#0a8f3d;
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
}

.delivery{
    color:#555;
    font-size:14px;
    margin-bottom:15px;
}
.collection-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.collection-link .why-card{
    transition:0.3s ease;
}

.collection-link:hover .why-card{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}
.collection-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.collection-image{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
}

.collection-link .why-card{
    transition:.3s ease;
}

.collection-link:hover .why-card{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}
/* ==========================
   TOAST NOTIFICATION
========================== */

.toast{

    position:fixed;

    top:30px;

    right:30px;

    background:#b8860b;

    color:white;

    padding:15px 25px;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    opacity:0;

    transform:translateX(120%);

    transition:.4s ease;

    z-index:99999999;

    pointer-events:none;

}

.toast.show{

    opacity:1;

    transform:translateX(0);

}
/* ==========================================
   PRODUCT PAGE
========================================== */

.product-page{
    padding:70px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;
    background:#FCF8F3;
}

.product-images{
    display:flex;
    gap:20px;
}

.thumbnail-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.thumbnail-list img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.3s;
}

.thumbnail-list img:hover{
    border-color:#b8860b;
}

.main-product-image{
    width:100%;
    max-height:650px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-details h1{
    font-size:42px;
    margin:20px 0;
    font-family:'Playfair Display',serif;
}

.product-details p{
    margin:20px 0;
    line-height:1.8;
    color:#555;
    font-size:17px;
}

.product-buttons{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.product-buttons button{
    flex:1;
}
/* ==========================================
   REVIEWS
========================================== */

.reviews-section,
.write-review{
    padding:70px 8%;
    background:white;
}

.reviews-section h2,
.write-review h2{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
    font-family:'Playfair Display',serif;
}

#reviewsContainer{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.review-card{
    background:#FCF8F3;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.review-card h3{
    margin-bottom:10px;
    font-size:22px;
}

.review-card .rating{
    color:#f5b301;
    margin-bottom:12px;
}

.review-card p{
    color:#555;
    line-height:1.7;
}

#reviewForm{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

#reviewForm input,
#reviewForm textarea,
#reviewForm select{
    padding:15px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
}

#reviewForm textarea{
    min-height:150px;
    resize:vertical;
}

#reviewForm button{
    align-self:flex-start;
}
/* ==========================
   MOBILE FIX
========================== */

@media (max-width: 600px) {

    body {
        overflow-x: hidden;
    }

    header {
        padding: 12px 15px;
        gap: 12px;
    }

    .logo {
        font-size: 32px;
        letter-spacing: 5px;
    }

    nav {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    nav a {
        font-size: 12px;
    }

    .hero {
        height: 520px;
        padding: 20px 15px;

        .hero-slider {
    height: 100%;
}

.slide {
    object-fit: contain;
    background: #222;
}
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .featured,
    .why-ruth,
    .reviews {
        padding: 50px 15px;
    }

    .featured h2,
    .why-ruth h2,
    .reviews h2 {
        font-size: 30px;
    }

    .products {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card img {
        height: 300px;
    }

    .search-box {
        font-size: 15px;
        padding: 14px 18px;
    }

    .cart-sidebar {
        width: 100%;
        padding: 18px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 15px;
        font-size: 25px;
    }

    .product-page {
        grid-template-columns: 1fr;
        padding: 40px 15px;
        gap: 30px;
    }

    .product-images {
        flex-direction: column;
    }

    .thumbnail-list {
        flex-direction: row;
        overflow-x: auto;
    }

    .thumbnail-list img {
        flex-shrink: 0;
    }

    .product-details h1 {
        font-size: 32px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .reviews-section,
    .write-review {
        padding: 50px 15px;
    }

}
/* ==========================
   FINAL MOBILE HERO FIX
========================== */

@media (max-width: 600px){

    .hero{
        height:auto;
        min-height:0;
        padding:0;
        position:relative;
        overflow:hidden;
        aspect-ratio:896 / 1200;
    }

    .hero-slider{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
    }

    .slide{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
    }

    .hero::before{
        background:rgba(0,0,0,.35);
    }

    .hero-text{
        position:relative;
        z-index:2;
        width:100%;
        max-width:100%;
        padding:20px;
        box-sizing:border-box;
    }

    .hero-text h1{
        font-size:34px;
        line-height:1.15;
        margin-bottom:15px;
    }

    .hero-text p{
        font-size:14px;
        line-height:1.5;
        margin-bottom:20px;
    }

    .hero-btn{
        padding:12px 25px;
        font-size:14px;
    }

}
/* ==========================
   PRODUCT IMAGE GALLERY
========================== */

.product-images {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.thumbnail-list {
    width: 85px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnail-list::-webkit-scrollbar {
    display: none;
}

.product-thumbnail {
    width: 75px;
    height: 95px;
    min-width: 75px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s ease;
    display: block;
}

.product-thumbnail:hover {
    transform: scale(1.03);
}

.product-thumbnail.active {
    border-color: #111;
}

.main-product-image {
    width: 500px;
    height: 520px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}


/* ==========================
   MOBILE GALLERY
========================== */

@media (max-width: 600px) {

    .product-images {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .main-product-image {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        border-radius: 12px;
    }

    .thumbnail-list {
        width: 100%;
        height: 75px;
        max-height: none;

        display: flex;
        flex-direction: row;

        gap: 8px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .thumbnail-list::-webkit-scrollbar {
        display: none;
    }

    .product-thumbnail {
        width: 60px;
        height: 65px;
        min-width: 60px;
        flex-shrink: 0;
    }

}
/* ==========================
   PRODUCT PAGE MOBILE FIX
========================== */

@media (max-width: 600px) {

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .product-page {
        width: 100%;
        max-width: 100%;
        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 30px;

        padding: 20px 18px !important;
        box-sizing: border-box;
    }

    .product-images {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        display: flex;
        flex-direction: column;
        gap: 12px;

        box-sizing: border-box;
    }

    .main-product-image {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        max-height: 500px;

        object-fit: contain;

        box-sizing: border-box;
    }

    .thumbnail-list {
        width: 100% !important;
        max-width: 100%;

        height: 75px;
        max-height: 75px;

        display: flex;
        flex-direction: row;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 8px;

        box-sizing: border-box;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .thumbnail-list::-webkit-scrollbar {
        display: none;
    }

    .product-thumbnail {
        width: 60px !important;
        height: 65px !important;

        min-width: 60px !important;

        flex-shrink: 0;
    }

    .product-details {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box;
    }

    .product-details h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .product-details p {
        max-width: 100%;
        word-wrap: break-word;
    }

    .product-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .product-buttons button {
        width: 100%;
    }

}
/* ==========================
   CHECKOUT FORM
========================== */

.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 20000;
}

.checkout-modal.active {
    display: flex;
}

.checkout-box {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.checkout-box h2 {
    margin: 0 0 8px;
    font-size: 30px;
    color: #222;
}

.checkout-subtitle {
    color: #777;
    margin-bottom: 25px;
}

.checkout-close {
    position: absolute;
    top: 15px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 32px;
    cursor: pointer;
    color: #555;
}

#checkoutForm label {
    display: block;
    margin-bottom: 18px;
    font-weight: 600;
    color: #333;
}

#checkoutForm input,
#checkoutForm textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
}

#checkoutForm textarea {
    min-height: 100px;
    resize: vertical;
}

#checkoutForm input:focus,
#checkoutForm textarea:focus {
    border-color: #b8860b;
}

.checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkout-total {
    margin: 25px 0;
    padding: 18px;
    background: #f8f5ef;
    border-radius: 14px;
    font-size: 18px;
}

.checkout-total strong {
    float: right;
    font-size: 20px;
}

.place-order-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    background: #111;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.place-order-btn:hover {
    background: #b8860b;
}

.checkout-success {
    display: none;
    text-align: center;
    padding: 25px 5px;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.checkout-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.checkout-success p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 600px) {

    .checkout-box {
        padding: 25px 20px;
    }

    .checkout-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}