
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 12px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
}

.logo img {
    height: 40px;
    max-width: 120px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo {
        width: auto;
        display: flex;
        align-items: center;
        padding: 8px 0 8px 8px;
        margin-right: 12px;
    }
    .logo img {
        height: 36px;
        max-width: 90px;
        margin-left: 0;
        margin-right: 0;
        display: block;
    }
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 8px;
    }
    .nav-icons {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-left: auto;
    }
    .mobile-nav-toggle {
        margin-left: 8px;
        margin-right: 8px;
    }
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    font-weight: 600;
    cursor: pointer;
}

.icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

/* HERO */
.hero {
    height: 520px;
    background: linear-gradient(to bottom, #111 70%, #d9a300 30%);
    position: relative;
    overflow: hidden;
}

/* background text */
.hero::before {
    content: "WANE MERCH WANE MERCH WANE MERCH";
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    font-size: 70px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    text-align: center;
    white-space: nowrap;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #111;
}

.tshirts-wrapper {
    height: 100%;
    overflow: hidden;
}

.tshirts {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.tshirt {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tshirt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Texts */
.order-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    z-index: 10;
}

.order-text h1 {
    font-size: 52px;
    font-weight: 800;
}

.slider {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.slider span {
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
}

.new-arrivals {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: rotate(90deg);
    color: white;
    letter-spacing: 4px;
}



/* ORDER TEXT */
.order-text {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: #fff;
}

.order-text h3 {
    letter-spacing: 3px;
    font-size: 16px;
}

.order-text h1 {
    font-size: 42px;
    font-weight: 900;
}

/* SLIDER CONTROLS */
.slider {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    display: flex;
    gap: 20px;
}

/* NEW ARRIVALS */
.new-arrivals {
    position: absolute;
    right: -60px;
    top: 40%;
    transform: rotate(90deg);
    color: #fff;
    letter-spacing: 6px;
    font-weight: bold;
    opacity: 0.9;
}
/* FEATURED PRODUCTS */
.featured {
    padding: 80px 50px;
    text-align: center;
}

.featured h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.product-card {
    text-align: center;
}

.image-box {
    background: #f1f1f1;
    border-radius: 30px;
    padding: 40px 20px;
    margin-bottom: 20px;
}

.image-box img {
    max-width: 100%;
    height: 260px;
    object-fit: contain;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 16px;
    font-weight: 600;
}
/* SALE BANNER */
.sale-banner {
    width: 100%;
    height: 350px;
    background: linear-gradient(to right, #000 60%, #3b2a23);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    margin: 80px 0;
    overflow: hidden;
}

.sale-content {
    color: #fff;
}

.sale-tag {
    color: #f08a64;
    font-size: 26px;
    font-weight: 500;
}

.sale-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-top: 10px;
}

.sale-content h1 span {
    font-size: 40px;
    vertical-align: top;
}

.sale-image img {
    height: 100%;
    max-height: 330px;
    object-fit: contain;
}
/* NEW AND POPULAR */
.new-popular {
    padding: 80px 50px;
    text-align: center;
}

.new-popular h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
.footer {
    background: #000;
    color: #fff;
    padding: 70px 80px 30px;
    font-family: Arial, sans-serif;
}

/* Top layout */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Brand */
.footer-brand img {
    width: 140px;
    margin-bottom: 10px;
}

.footer-brand .tagline {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.footer-brand h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Subscribe */
.subscribe-box input {
    width: 100%;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #555;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

/* Links */
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    font-size: 15px;
    opacity: 0.9;
    cursor: pointer;
}

.footer-links a,
.footer-bottom a,
.footer-social a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover,
.footer-social a:hover {
    opacity: 0.8;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social span,
.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

/* Bottom bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #aaa;
}

/* TRACK ORDER */
.track-order{padding:70px 50px;background:#fff;}
.track-wrap{max-width:920px;margin:0 auto;}
.track-wrap h2{font-size:28px;font-weight:900;margin-bottom:10px;text-align:center;}
.track-sub{text-align:center;font-weight:600;color:#444;margin-bottom:20px;}
.track-form{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:14px;}
.track-input{min-width:260px;max-width:520px;flex:1;padding:12px 14px;border-radius:14px;border:1px solid #ddd;outline:none;}
.track-btn{padding:12px 16px;border-radius:14px;border:1px solid #111;background:#111;color:#fff;font-weight:700;cursor:pointer;}
.track-card{margin-top:16px;border:1px solid #eee;border-radius:18px;padding:18px;background:#fafafa;}
.track-row{display:flex;gap:14px;justify-content:space-between;flex-wrap:wrap;}
.track-label{font-size:12px;font-weight:800;letter-spacing:1px;color:#666;text-transform:uppercase;}
.track-value{font-size:16px;font-weight:700;margin-top:2px;}
.track-badge{display:inline-block;margin-top:4px;padding:6px 12px;border-radius:999px;background:#111;color:#fff;font-weight:800;font-size:13px;text-transform:capitalize;}
.track-items{margin-top:16px;}
.track-item{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;padding:10px 0;border-top:1px solid #eee;}
.track-item-title{font-weight:800;}
.track-item-meta{font-weight:700;color:#444;}
.track-notes{margin-top:16px;border-top:1px solid #eee;padding-top:12px;}
.track-msg{margin-top:12px;padding:12px 14px;border-radius:14px;font-weight:700;}
.track-msg.err{background:#ffecec;border:1px solid #ffbdbd;color:#a40000;}
.track-msg.warn{background:#fff6db;border:1px solid #f0d27b;color:#5a4500;}
.track-msg.ok{background:#e9fff0;border:1px solid #8fe2a8;color:#0b5a25;}

body { font-family: Arial; margin:0; background:#fff; }

/* Header */
.header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 60px;
}
.header nav a {
    margin:0 20px;
    text-decoration:none;
    color:#000;
    font-weight:600;
}
.logo { width: 500px; }

/* Product */
.product-page {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:50px 60px;
}
.main-img img {
    width:100%;
    background:#eee;
    border-radius:20px;
}
.thumbs {
    display:flex;
    gap:10px;
    margin-top:15px;
}
.thumbs img {
    width:70px;
    background:#eee;
    border-radius:10px;
}

.product-details h1 {
    font-size:28px;
}
.price {
    color:#666;
}
.rating span {
    color:#777;
    margin-left:10px;
}

.option { margin:20px 0; }
.sizes button {
    padding:8px 12px;
    border:1px solid #ccc;
    background:#fff;
    margin-right:5px;
}
.opt-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.opt-btn {
    display: inline-block;
    padding:8px 12px;
    border:1px solid #ccc;
    background:#fff;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
}
.opt-radio:checked + .opt-btn {
    border-color: #000;
    background: #000;
    color: #fff;
}
.colors span {
    width:25px;
    height:25px;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
}
.colors {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}
.opt-radio:checked + .color-swatch {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #000;
}

.qty {
    display:flex;
    align-items:center;
    gap:10px;
}
.qty-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}
.qty input {
    width:40px;
    text-align:center;
}

.add-cart {
    width:100%;
    padding:15px;
    margin-top:20px;
    border:1px solid #000;
    background:#fff;
}
.buy-now {
    width:100%;
    padding:15px;
    margin-top:10px;
    background:#000;
    color:#fff;
    border:none;
}

.desc {
    margin-top:30px;
    font-size:14px;
}

/* Related */
.related {
    padding:60px;
}
.related h2 {
    text-align:center;
    margin-bottom:40px;
}
.grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.card {
    background:#f3f3f3;
    padding:20px;
    border-radius:20px;
    text-align:center;
}
.card img {
    width:100%;
}
.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 40px;
}

/* Menu */
.nav-menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

/* Hover underline */
.nav-menu ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* Icons */
.nav-icons a {
    margin-left: 20px;
    font-size: 18px;
    text-decoration: none;
    color: #000;
}

/* ===========================
   GLOBAL FIXES
=========================== */
* {
    max-width: 100%;
}

body {
    .hero {
        height: 100vh;
    }
    .tshirt img {
        object-fit: cover;
        width: 100vw;
        max-width: 100vw;
        height: auto;
        padding: 0;
        display: block;
        margin: 0 auto;
    }
    .order-text {
        left: 20px;
        bottom: 80px;
    }
    .order-text h3 {
        font-size: 14px;
    }
    .order-text h1 {
        font-size: 32px;
    }
    .slider {
        bottom: 20px;
    }
    .new-arrivals {
        right: -40px;
        font-size: 12px;
    }
    }
/* ===========================
   HERO SLIDER
=========================== */
@media (max-width: 768px) {

    .hero {
        height: 100vh;
        width: 100vw !important;
        min-width: 100vw !important;
        overflow-x: hidden;
        padding: 0 !important;
        margin: 0 !important;
    }
    .tshirt {
        width: 100vw !important;
        min-width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .tshirt img {
        object-fit: cover !important;
        width: 100vw !important;
        min-width: 100vw !important;
        height: calc(100vw * 9 / 16) !important;
        max-width: 100vw !important;
        max-height: calc(100vw * 9 / 16) !important;
        aspect-ratio: 16/9 !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .order-text {
        left: 20px;
        bottom: 80px;
    }

    .order-text h3 {
        font-size: 14px;
    }

    .order-text h1 {
        font-size: 32px;
    }

    .slider {
        bottom: 20px;
    }

    .new-arrivals {
        right: -40px;
        font-size: 12px;
    }
}

/* ===========================
   PRODUCT GRIDS
=========================== */
@media (max-width: 992px) {

    .product-grid,
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .product-grid,
    .grid {
        grid-template-columns: 1fr;
    }

    .image-box img {
        height: 220px;
    }
}

/* ===========================
   SALE / BANNER SECTIONS
=========================== */
@media (max-width: 768px) {

    .sale-banner {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .sale-content h1 {
        font-size: 36px;
    }

    .sale-image img {
        max-height: 220px;
        margin-top: 20px;
    }
}

/* ===========================
   PRODUCT DETAIL PAGE
=========================== */
@media (max-width: 992px) {

    .product-page {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }

    .thumbs {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .product-details h1 {
        font-size: 22px;
    }

    .add-cart,
    .buy-now {
        padding: 14px;
        font-size: 15px;
    }
}

/* ===========================
   FOOTER
=========================== */
@media (max-width: 768px) {

    .footer {
        padding: 50px 25px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand,
    .footer-links {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        font-size: 13px;
    }
}

/* ===========================
   EXTRA SMALL DEVICES
=========================== */
@media (max-width: 360px) {

    .order-text h1 {
        font-size: 26px;
    }

    .sale-content h1 {
        font-size: 30px;
    }

    .footer-links h3 {
        font-size: 15px;
    }
}
.checkout {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-left {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.checkout-left h2 {
    margin: 18px 0 12px;
    font-size: 18px;
    font-weight: 900;
}

.checkout-left h2:first-child {
    margin-top: 0;
}

.checkout-form {
    display: flex;
    flex-direction: column;
}

.checkout-left input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    background: #fff;
}

.checkout-left input:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-left label {
    font-weight: 600;
    margin: 10px 0 5px;
    display: block;
}

.checkbox {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin: 0;
}

.payment-box {
    border: 1px solid #ccc;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: #fff;
}

.payment-box input[type="radio"] {
    width: auto;
    margin: 0;
}

.pay-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* RIGHT SIDE */
.checkout-right {
    background: #f6f6f6;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
}

.checkout-right .discount-input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    background: #fff;
    margin: 10px 0 14px;
}

.checkout-right .discount-input:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.product {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.product div {
    line-height: 1.35;
}

.product small {
    color: #666;
    font-weight: 700;
}

.product img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #eee;
}

.summary {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary strong {
    font-size: 20px;
}

/* Responsive */
@media(max-width: 768px){
    .checkout {
        grid-template-columns: 1fr;
    }

    .checkout-left,
    .checkout-right {
        padding: 18px;
    }

    .row {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   TRACK ORDER (REFRESH)
================================ */
.track-order{padding:70px 20px;background:#fff;}
.track-wrap{max-width:980px;margin:0 auto;}
.track-hero{text-align:center;margin-bottom:16px;}
.track-wrap h2{font-size:32px;font-weight:900;margin-bottom:8px;}
.track-sub{font-weight:700;color:#fff;margin:0;}

.track-panel{
    margin-top:18px;
    border:1px solid #eee;
    border-radius:16px;
    padding:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.track-form{display:flex;gap:10px;justify-content:center;align-items:stretch;flex-wrap:nowrap;margin:0;}
.track-input{flex:1;min-width:240px;max-width:640px;padding:14px 14px;border-radius:14px;border:1px solid #ddd;outline:none;background:#fff;}
.track-input:focus{border-color:#111;box-shadow:0 0 0 3px rgba(0,0,0,0.08);}
.track-btn{padding:14px 18px;border-radius:14px;border:1px solid #111;background:#111;color:#fff;font-weight:800;cursor:pointer;white-space:nowrap;}

.track-card{margin-top:18px;border:1px solid #eee;border-radius:16px;padding:18px;background:#fff;box-shadow:0 10px 30px rgba(0,0,0,0.06);}
.track-row{display:flex;gap:18px;justify-content:space-between;flex-wrap:wrap;}
.track-row-spaced{margin-top:14px;}
.track-label{font-size:12px;font-weight:900;letter-spacing:1px;color:#666;text-transform:uppercase;}
.track-section-title{margin-bottom:10px;}
.track-value{font-size:16px;font-weight:800;margin-top:2px;}
.track-badge{display:inline-block;margin-top:4px;padding:6px 12px;border-radius:999px;background:#111;color:#fff;font-weight:900;font-size:13px;text-transform:capitalize;}

.track-items{margin-top:16px;}
.track-item{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;padding:10px 0;border-top:1px solid #eee;}
.track-item-title{font-weight:900;}
.track-item-meta{font-weight:800;color:#444;}
.track-notes{margin-top:16px;border-top:1px solid #eee;padding-top:12px;}

@media(max-width: 640px){
    .track-wrap h2{font-size:26px;}
    .track-form{flex-direction:column;align-items:stretch;}
    .track-input{max-width:none;}
}
/* ===============================
   CART PAGE – PREMIUM DESIGN
================================ */

.cart-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
}

/* -------- CART ITEM -------- */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}

.cart-item img {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    object-fit: cover;
    background: #f3f3f3;
}

/* -------- DETAILS -------- */
.cart-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cart-details small {
    color: #777;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.cart-details div {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* -------- QTY -------- */
.qty-input {
    width: 80px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* -------- REMOVE -------- */
.remove-btn {
    margin-top: 10px;
    background: none;
    border: none;
    color: #d10000;
    font-weight: 600;
    cursor: pointer;
}

/* -------- SUMMARY -------- */
.cart-summary {
    background: linear-gradient(180deg,#fff,#f7f7f7);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 30px;
}

.cart-summary h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 16px;
}

.cart-summary .total {
    font-size: 24px;
    font-weight: 900;
    border-top: 1px dashed #ccc;
    padding-top: 14px;
    margin-top: 14px;
}

/* -------- ACTIONS -------- */
.cart-actions {
    margin-top: 25px;
}

.cart-actions button,
.cart-actions a {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.25s ease;
}

/* Update */
.update-btn {
    background: #fff;
    border: 2px solid #000;
    color: #000;
}

.update-btn:hover {
    background: #000;
    color: #fff;
}

/* Checkout */
.checkout-btn {
    background: #000;
    color: #fff;
}

.checkout-btn:hover {
    background: #111;
    transform: translateY(-2px);
}

/* Clear */
.clear-btn {
    background: transparent;
    color: #777;
    border: none;
    font-size: 14px;
    margin-top: 20px;
}

/* -------- PAGE TITLE -------- */
section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
}

/* -------- EMPTY CART -------- */
.track-msg {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {

    .cart-container {
        grid-template-columns: 1fr;
        margin: 30px 15px;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item img {
        margin: auto;
    }

    .qty-input {
        margin: auto;
    }

    .cart-summary {
        position: static;
    }
}
/* LOGIN PAGE */
.login-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f1f1;
}

.login-card {
    background: #e5e5e5;
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

/* Title */
.login-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* Tabs */
.login-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 12px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.tab.active {
    background: #00263a;
    color: #fff;
    border: none;
}

/* Social */
.social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.social-btn {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    border: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.social-btn img {
    width: 20px;
}

/* Divider */
.divider {
    margin: 15px 0;
    font-size: 14px;
    color: #777;
}

/* Inputs */
.login-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Button */
.proceed-btn {
    width: 100%;
    padding: 14px;
    background: #00263a;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* Footer text */
.new-user {
    margin-top: 15px;
    font-size: 14px;
}

.new-user a {
    text-decoration: underline;
    color: #000;
}

/* Error */
.login-error {
    background: #ffe0e0;
    color: #b00000;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 480px) {
    .login-card {
        margin: 20px;
    }
}
/* AUTH PAGES */
.auth-section {
    min-height: 100vh;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #e6e6e6;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
}

.auth-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Tabs */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: 1px solid #000;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.auth-tab.active {
    background: #00263a;
    color: #fff;
    border: none;
}

/* Social buttons */
.auth-social {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.auth-social button {
    flex: 1;
    background: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.auth-social img {
    width: 20px;
}

/* Divider */
.auth-divider {
    margin: 15px 0;
    font-size: 14px;
    color: #777;
}

/* Inputs */
.auth-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Primary button */
.auth-btn {
    width: 100%;
    padding: 14px;
    background: #00263a;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* Footer text */
.auth-footer {
    margin-top: 15px;
    font-size: 14px;
}

.auth-footer a {
    text-decoration: underline;
    color: #000;
}

/* Errors */
.auth-error {
    background: #ffe0e0;
    color: #b00000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 480px) {
    .auth-card {
        margin: 20px;
    }
}

/* ================= ABOUT PAGE ================= */

/* --- Hero --- */
.about-hero {
    background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
    color: #fff;
    padding: 100px 20px 80px;
    text-align: center;
}
.about-hero h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
}
.about-hero h1 span {
    color: #d9a300;
}
.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
    opacity: .85;
    line-height: 1.7;
}

/* --- Story & Mission --- */
.about-story {
    padding: 80px 20px;
    background: #fff;
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
}
.story-card {
    background: #fafafa;
    padding: 42px 38px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: transform .3s, box-shadow .3s;
}
.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.07);
}
.story-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #111;
    color: #d9a300;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}
.story-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111;
}
.story-card p {
    color: #555;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 10px;
}
.story-card p:last-child {
    margin-bottom: 0;
}

/* --- Values --- */
.about-values {
    padding: 90px 20px;
    background: #fff;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1000px;
    margin: 0 auto;
}
.value-item {
    padding: 40px 28px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px solid #eee;
    transition: transform .3s, box-shadow .3s;
}
.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.07);
}
.value-number {
    font-size: 38px;
    font-weight: 900;
    color: #d9a300;
    margin-bottom: 14px;
    line-height: 1;
}
.value-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}
.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
}

/* --- What We Offer --- */
.about-offer {
    background: #f7f7f7;
    padding: 90px 20px;
    text-align: center;
}
.section-heading {
    font-size: 32px;
    font-weight: 900;
    color: #111;
}
.section-sub {
    max-width: 600px;
    margin: 10px auto 50px;
    color: #666;
    font-size: 16px;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 42px 26px;
    border: 1px solid #eee;
    transition: transform .3s, box-shadow .3s;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.07);
}
.offer-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d9a300, #f5c842);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    color: #111;
}
.offer-card h4 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}
.offer-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- CTA --- */
.about-cta {
    padding: 80px 20px;
    text-align: center;
    background: #111;
    color: #fff;
}
.about-cta h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}
.about-cta p {
    opacity: .8;
    margin-bottom: 28px;
    font-size: 16px;
}
.about-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-wane {
    display: inline-block;
    background: #d9a300;
    padding: 14px 36px;
    border-radius: 50px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: background .25s;
}
.btn-wane:hover {
    background: #c49200;
    color: #111;
}
.btn-wane-outline {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,.35);
    transition: border-color .25s, background .25s;
}
.btn-wane-outline:hover {
    border-color: #d9a300;
    background: rgba(217,163,0,.1);
    color: #d9a300;
}

/* --- About Page Responsive --- */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .about-hero {
        padding: 70px 16px 56px;
    }
    .about-hero h1 {
        font-size: 34px;
    }
    .about-hero p {
        font-size: 15px;
    }
    .story-card {
        padding: 30px 24px;
    }
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .about-cta h2 {
        font-size: 26px;
    }
}
/* ===================== BOOTSTRAP FIX ===================== */
    .container,
    .container-fluid,
    .row,
    [class*="col-"],
    .accordion,
    .accordion-item,
    .accordion-collapse,
    .accordion-body {
        max-width: none !important
    }

    .row {
        display: flex !important;
        flex-wrap: wrap !important;
        width: 100% !important
    }

    .container {
        width: 100% !important;
        margin: auto
    }

    @media(min-width:576px) {
        .container {
            max-width: 540px !important
        }
    }

    @media(min-width:768px) {
        .container {
            max-width: 720px !important
        }
    }

    @media(min-width:992px) {
        .container {
            max-width: 960px !important
        }
    }

    @media(min-width:1200px) {
        .container {
            max-width: 1140px !important
        }
    }

    @media(min-width:1400px) {
        .container {
            max-width: 1320px !important
        }
    }

    /* ===================== HERO ===================== */
    .contact-hero {
        background: radial-gradient(circle at top, #222 0%, #0b0b1a 60%);
        color: #fff;
        padding: 120px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden
    }

    .contact-hero::before {
        content: "CONTACT";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(60px, 12vw, 160px);
        font-weight: 900;
        color: rgba(217, 163, 0, .07);
        pointer-events: none
    }

    .contact-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 20%, rgba(217, 163, 0, .15), transparent 40%),
            radial-gradient(circle at 80% 60%, rgba(80, 100, 255, .12), transparent 45%);
    }

    .contact-hero h1 {
        font-size: 52px;
        font-weight: 900;
        position: relative
    }

    .contact-hero span {
        color: #d9a300
    }

    .contact-hero p {
        max-width: 640px;
        margin: 16px auto 0;
        opacity: .85;
        font-size: 18px
    }

    /* ===================== INFO CARDS ===================== */
    .contact-section {
        padding: 80px 0;
        background: #f6f7fb
    }

    .info-card {
        background: rgba(255, 255, 255, .85);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        padding: 36px 26px;
        text-align: center;
        height: 100%;
        border: 1px solid rgba(255, 255, 255, .5);
        transition: .35s
    }

    .info-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, .08)
    }

    .info-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #d9a300, #ffcc33);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #111;
        margin: 0 auto 18px;
        box-shadow: 0 10px 25px rgba(217, 163, 0, .45)
    }

    .info-card h4 {
        font-weight: 800
    }

    .info-card a {
        color: #d9a300;
        font-weight: 700;
        text-decoration: none
    }

    /* ===================== FORM ===================== */
    .contact-form-section {
        padding: 90px 0;
        background: #fff
    }

    .section-heading {
        text-align: center;
        font-size: 32px;
        font-weight: 900
    }

    .section-sub {
        text-align: center;
        color: #666;
        margin-bottom: 48px
    }

    .form-wrapper {
        max-width: 920px;
        margin: auto;
        background: linear-gradient(180deg, #fff, #f9f9f9);
        border-radius: 28px;
        padding: 50px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, .08)
    }

    .form-label {
        font-weight: 700;
        font-size: 14px
    }

    .form-control,
    .form-select {
        border-radius: 14px;
        padding: 14px 16px;
        font-size: 15px
    }

    .form-control:focus,
    .form-select:focus {
        border-color: #d9a300;
        box-shadow: 0 0 0 3px rgba(217, 163, 0, .15);
        transform: translateY(-1px)
    }

    .btn-wane {
        width: 100%;
        padding: 16px;
        border-radius: 50px;
        border: none;
        font-weight: 800;
        background: linear-gradient(135deg, #d9a300, #ffcc33);
        box-shadow: 0 12px 30px rgba(217, 163, 0, .45);
        transition: .3s
    }

    .btn-wane:hover {
        transform: translateY(-3px)
    }

    /* ===================== SUCCESS ===================== */
    .contact-success {
        text-align: center;
        display: none
    }

    .success-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #e8f5e9;
        color: #2e7d32;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        margin: 0 auto 20px
    }

    /* ===================== FAQ ===================== */
    .contact-faq {
        padding: 80px 0;
        background: #f6f7fb
    }

    .faq-item {
        background: #fff;
        border-radius: 18px;
        margin-bottom: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .04)
    }

    .accordion-button {
        font-weight: 700;
        border-radius: 18px
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #fff8e1, #fff);
        color: #111
    }

    /* ===================== CTA ===================== */
    .contact-cta {
        padding: 90px 0;
        background:
            radial-gradient(circle, rgba(217, 163, 0, .18), transparent 60%),
            linear-gradient(135deg, #0b0b1a, #111);
        text-align: center;
        color: #fff
    }

    .btn-wane-outline-light {
        border: 2px solid #d9a300;
        padding: 14px 34px;
        border-radius: 50px;
        font-weight: 800;
        color: #d9a300;
        text-decoration: none
    }

    .btn-wane-outline-light:hover {
        background: #d9a300;
        color: #111
    }

    /* ===================== ANIMATION ===================== */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .contact-section,
    .contact-form-section,
    .contact-faq {
        animation: fadeUp .9s ease both
    }