/* ===============================
   GLOBAL RESET & BASE
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background: #fff;
    color: #111;
    line-height: 1.6;
}

/* ===============================
   HEADER
   =============================== */
/* ===============================
   ULTRA MODERN HEADER
   =============================== */

header {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.6);
}


.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111;
}

nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #111;
}

/* underline animation */
nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cart {
    position: relative;
}

/* 


#cart-count {
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 7px;
    border-radius: 999px;
    top: -6px;
    right: -10px;
} */

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
        color: #111;

    background: #f4b400;
    /* color: black; */
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===============================
   SECTIONS
   =============================== */
section {
    padding: 80px 20px;
    text-align: center;
}

/* ===============================
   FLOATING CART BUTTON (ICON ONLY)
   =============================== */

.floating-checkout {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #111, #333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.floating-checkout i {
    font-size: 20px;
}

.floating-checkout:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    color: #111;
}

/* Mobile fine-tuning */
@media (max-width: 768px) {


    nav {
        position: absolute;
        top: 64px;
        right: 10px;
        left: 10px;
    width: calc(100% - 20px);
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(16px);
        border-radius: 18px;
        flex-direction: column;
        /* padding: 12px 0; */
        display: none;
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }

    nav a {
        padding: 14px;
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .menu-icon {
        display: block;
        font-size: 22px;
        cursor: pointer;
        color: #111;
    }


    .floating-checkout {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .floating-checkout i {
        font-size: 18px;
    }
}

/* Optional: hide if cart empty */
.floating-checkout.hidden {
    display: none;
}

/* ===============================
   FLOATING CART COUNT BADGE
   =============================== */

.floating-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #f4b400;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Slightly smaller on mobile */
@media (max-width: 768px) {
    .floating-cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -5px;
        right: -5px;
    }
}


/* ===============================
   PRODUCTS
   =============================== */
.products {
    padding-top: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1200px;
    margin: auto;
}

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

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

.product {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.product h3 {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    letter-spacing: 0.3px;
    padding: 0 16px;
}

.product p {
    font-weight: 600;
    color: #111;
    margin: 8px 0;
    padding: 0 16px;
    font-size: 15px;
}

/* ADD TO CART BUTTON */
/* ADD TO CART */


/* Ensure buttons are visible */
/* .product  .add-cart-btn button {
  display: block;
} */
 .product .add-cart-btn {
    margin-top: 16px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #111, #333);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.product .add-cart-btn:hover {
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    color: #111;
    transform: translateY(-2px);
} 

.product .add-cart-btn {
    margin: 0 auto;
}
/* ===============================
   CATEGORIES
   =============================== */
.categories {
    background: #fafafa;
}

.categories h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.category {
    padding: 40px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ===============================
   BANNER
   =============================== */
.banner {
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    color: #111;
}

.banner h2 {
    font-size: 34px;
}

.banner p {
    font-size: 18px;
}

/* ===============================
   HERO
   =============================== */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("images/hero.jpg") center/cover no-repeat;
    color: white;
    padding: 120px 20px;
}


.hero h1 {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.hero button {
    margin-top: 20px;
    padding: 14px 36px;
    border: none;
    border-radius: 40px;
    background: #f4b400;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero button:hover {
    background: white;
    color: #111;
}

/* ===============================
   REVIEWS
   =============================== */
.reviews {
    background: white;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.review {
    background: #f6f6f6;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review {
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }

  .review p {
    font-size: 15px;
    margin: 12px 0;
  }

  .review span {
    font-size: 14px;
    font-weight: 600;
  }
}
/* ===============================
   NEWSLETTER
   =============================== */
.newsletter {
    background: #111;
    color: #fff;
    padding: 80px 20px;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter input {
    padding: 16px 20px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.newsletter input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter input:focus {
    outline: none;
    border-color: #f4b400;
    background: rgba(255,255,255,0.15);
}

.newsletter button {
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    color: #111;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.4);
}

@media (max-width: 768px) {

.newsletter {
    padding: 80px 20px;
    text-align: center;
}

.newsletter h2 {
    font-size: 26px;
    font-weight: 700;
}

.newsletter p {
    font-size: 15px;
    margin-top: 10px;
    opacity: 0.85;
}

.newsletter input {
    width: 100%;
    margin-top: 18px;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
}

.newsletter button {
    width: 100%;
    margin-top: 14px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
}
}

/* ===============================
   FOOTER
   =============================== */
footer {
    background: #000;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* ===============================
   CART PAGE
   =============================== */

.cart-page {
    max-width: 1200px;
    margin: 0px auto;
}

/* Stack layout */
.cart-layout {
    display: flex;
    flex-direction: column;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-items h2 {
    text-align: center;
    font-size: 28px;
    color: #222;
}

/* Use the same product-grid class as index.html for consistency */
.cart-items .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 30px;
}

.cart-items .product {
    background: white;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-items .product:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.cart-items .product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-items .product h3 {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
}

.cart-items .product p {
    font-weight: 600;
    color: #444;
    margin: 5px 0;
}

.cart-items .product button {
    margin-top: 8px;
    padding: 10px 20px;
    background: #111;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-items .product button:hover {
    background: #f4b400;
    color: #111;
}

@media (max-width: 900px) {
    .cart-items .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cart-items .product-grid {
        grid-template-columns: 1fr;
    }
}

.cart-total {
    text-align: right;
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
}

/* ===============================
   MOBILE MENU
   =============================== */
@media (max-width: 768px) {

    .products {
  padding-bottom: 0;
}

.categories {
  padding-top: 25px;
}

  .categories h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .category {
    padding: 22px;
    border-radius: 16px;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }



    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero {
            padding: 100px 20px;

    }
    /* nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        display: none;
    }

    nav a {
        padding: 15px;
        border-top: 1px solid #333;
    } */

    .menu-icon {
       display: block;
    }

    .hero h1 {
        font-size: 28px;
    }

    .banner h2 {
        font-size: 26px;
    }

    .cart-total {
        text-align: center;
    }

    
    .cart-items {
        margin-bottom: 400px;
    }
}

/* ===============================
   CART PAGE – CLEAN & MOBILE FIRST
   =============================== */

/* ===============================
   ORDER SUMMARY (CALM & CLEAR)
   =============================== */

.cart-summary-box {
    background: #fff;
    padding: 28px;
/*    margin-top: 28px; */
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.cart-summary-box h3 {
    font-size: 20px;
    margin-bottom: 18px;
    text-align: left;
    color: #222;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-summary-box h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    border-radius: 2px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 22px;
    padding: 16px;
    background: linear-gradient(135deg, #fafafa, #ffffff);
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.summary-line strong {
    color: #f4b400;
    font-size: 22px;
}

/* Checkout button */
.cart-summary-box .checkout-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cart-summary-box .checkout-btn:hover {
    background: linear-gradient(135deg, #f4b400, #ffd76a);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.3);
}

.secure-text {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-text i {
    color: #4CAF50;
}

/* ===============================
   CUSTOMER FORM STYLES - BEAUTIFUL & MODERN
   =============================== */

.customer-form {
    margin-top: 0px;
    background: linear-gradient(135deg, #fafafa, #ffffff);
    padding: 0px;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4b400;
    box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* Icon styling for inputs */
.form-group.with-icon {
    position: relative;
}

.form-group.with-icon input {
    padding-left: 45px;
}

.form-group .input-icon {
    position: absolute;
    left: 16px;
    top: 42px;
    color: #999;
    font-size: 16px;
}

.form-group input:focus + .input-icon {
    color: #f4b400;
}

/* ===============================
   CART PAGE – BEAUTIFUL LAYOUT
   =============================== */

.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left column */
.cart-left h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Right column */
.cart-right {
    position: sticky;
    top: 90px;
}

/* Give breathing room */
.cart-page {
    padding: 60px 20px;
}

/* Product cards spacing */
.cart-left .product-grid {
    margin-top: 20px;
}

/* Empty cart text */
.cart-left p {
    font-size: 16px;
    color: #777;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 900px) {

	/* Give breathing room */
	.cart-page {
	    padding: 0px 20px 60px 20px;
	}
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-left {
        order: 2;
    }

    .cart-right {
        position: static;
        order: 1;
        margin-top: 8px;
    }

    .cart-left h2 {
        text-align: center;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


/* ===============================
   MOBILE PRODUCT – MODERN & FIT
   =============================== */
@media (max-width: 768px) {

    /* tighter section spacing */
     section.products {
        padding: 10px; 
    } 

    /* 2-column app-style grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* clean product card */
    .product {
        padding: 10px;
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(0,0,0,0.08);
        background: #fff;
    }

    /* image fits perfectly */
    .product img {
        height: 170px;
        border-radius: 12px;
        object-fit: cover;
    }

    /* product name */
    .product h3 {
        font-size: 13px;
        font-weight: 600;
        margin-top: 8px;
        line-height: 1.3;
        color: #111;
    }

    /* price */
    .product p {
        font-size: 13px;
        font-weight: 700;
        margin: 4px 0 8px;
        color: #111;
    }

    
}


@media (max-width: 768px) {

.banner {
    padding: 50px 20px;
    text-align: left;
    /* background: #111; */
    color: #fff;
}

.banner h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 15px;
    opacity: 0.85;
}


.hero {
    padding: 80px 20px 90px;
    text-align: left;
    background-position: center top;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    max-width: 90%;
}

.hero p {
    font-size: 16px;
    margin-top: 12px;
    opacity: 0.85;
    max-width: 85%;
}

.hero button {
    margin-top: 24px;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 6px;
}
}
/* ===============================
   LUXURY INDEX PRODUCT STYLE
   =============================== */


/* 
.fashion-product img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    background: #f4f4f4;
} */

/* INFO */

.fashion-info {
  width: 100%;
  text-align: center;
  padding: 16px;
}
.product,
.fashion-product {
  width: 100%;
}
.fashion-sizes {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.fashion-sizes .size {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #666;
    cursor: pointer;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

.fashion-sizes .size:hover {
    color: #111;
}

.fashion-sizes .size.active {
    color: #111;
    border-bottom: 1px solid #111;
}
@media (max-width: 768px) {
    .fashion-sizes {
        gap: 10px;
    }

    .fashion-sizes .size {
        font-size: 11px;
    }
}

/* OPTIONS */
.option {
  margin-bottom: 26px;
  
}

/* SIZES */
.sizes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 240px;   /* controls 2-row wrap */
    margin: 0 auto;


}

.sizes button {
 /*   width: 25px; */
    height: 25px;
  background: none;
  border: none;
  font-size: 12px;
  color: #666;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.sizes button.active {
  border-color: #111;
}


/* IMAGE */
/* .fashion-product img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
} */



/* SUCCESS POPUP */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: popIn 0.4s ease;
}

.success-emoji {
  font-size: 48px;
  margin-bottom: 10px;
}

.success-card h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.success-card p {
  font-size: 15px;
  color: #555;
}

.success-sub {
  margin-top: 6px;
  color: #777;
}

.success-card button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4b400, #ffd76a);
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.success-card button:hover {
  transform: translateY(-2px);
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===============================
   MOBILE CART SUMMARY – FIT & MODERN
   =============================== */
@media (max-width: 768px) {

  /* Overall cart page spacing */
  .cart-page {
    padding: 10px;
  }

  /* Stack layout cleanly */
  .cart-layout {
    gap: 16px;
  }

  /* RIGHT SUMMARY CARD */
  .cart-summary-box {
    padding: 18px 16px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }

  /* Section headings */
  .cart-summary-box h3 {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 700;
  }

  /* Customer form spacing */
  .customer-form {
    padding: 14px;
    border-radius: 16px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* Order summary line */
  .summary-line {
    padding: 14px;
    border-radius: 14px;
    font-size: 15px;
    margin-bottom: 16px;
  }

  .summary-line strong {
    font-size: 18px;
  }

  /* Checkout button – app style */
  .checkout-btn {
    padding: 16px;
    font-size: 15px;
    border-radius: 14px;
    letter-spacing: 0.6px;
  }

  /* Secure text */
  .secure-text {
    font-size: 12px;
    margin-top: 10px;
  }
}


/* ===============================
   MATCH INDEX HEADER TO PRODUCT HEADER SIZE
   =============================== */

header {
  padding: 14px 22px; /* keep same as product */
  min-height: auto;
}

header .logo {
  font-size: 22px;
  line-height: 1;
}

header nav a {
  font-size: 14px;
  line-height: 1;
}

.menu-icon {
  font-size: 22px; /* shrink hamburger */
}

@media (max-width: 768px) {
  header {
    padding: 12px 18px;
  }

  .logo {
    font-size: 20px;
  }

  .menu-icon {
    font-size: 20px;
  }
}

/* Summary container */
.summary-box {
    background: #fafbff;
    border-radius: 14px;
    padding: 12px 10px;
    margin-bottom: 14px;
}

/* Row styling */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    font-size: 14px;
    color: #666;
}

/* Divider line */
.summary-row:not(:last-child) {
    border-bottom: 1px dashed #e6e8f0;
}

/* Shipping highlight (soft) */
.summary-row.shipping span:last-child {
    color: #8b93a6;
    font-weight: 500;
}

/* Amounts */
.summary-row span:last-child {
    font-weight: 600;
    color: #222;
}
.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.shipping-inline {
    font-size: 12px;
    font-weight: 400;
    color: #9aa3af;
    margin-left: 6px;
}
.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.price-inline {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #9aa3af;
    margin-top: 2px;
}

.price-inline span {
    font-weight: 500;
    color: #6b7280;
}
/* SIZE BUTTONS – 2 ROW WRAP (MOBILE) */
@media (max-width: 768px) {

  .sizes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 160px;   /* controls 2-row wrap */
    margin: 0 auto;
  }

  .sizes .size {
    /* width: 25px; */
	  
    height: 25px;
    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;
    color: #444;

    /* border-radius: 8px; */
    /* border: 1.5px solid #ddd; */
    background: #fff;

    transition: all 0.25s ease;
  }


  .sizes .size:active {
    transform: scale(0.95);
  }
}