:root {
    --ink: #171513;
    --ink-soft: #514b45;
    --paper: #fbf8f3;
    --paper-deep: #f1ebe2;
    --white: #fff;
    --gold: #b88a44;
    --gold-light: #d8b477;
    --line: #e5ddd2;
    --shadow: 0 18px 50px rgba(38, 28, 18, .1);
    --radius: 14px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { width: 100%; min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; }
img, video, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); line-height: 1.2; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h4 { font-size: 1.05rem; }
h5 { font-size: .95rem; font-weight: 600; }
h6 { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
p { margin: 12px 0 20px; color: var(--ink-soft); font-size: .95rem; }
.section-p1 { padding: clamp(50px, 7vw, 96px) clamp(20px, 7vw, 100px); }
.section-m1 { margin: clamp(35px, 6vw, 80px) 0; }

.normal, .normal-btn, button.white, .shop-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    border: 1px solid var(--ink); border-radius: 999px; padding: 13px 24px;
    background: var(--ink); color: var(--white); cursor: pointer; font-size: .78rem;
    font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: .25s ease;
}
.normal:hover, .normal-btn:hover, .shop-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
button.white { border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.16); color: var(--white); backdrop-filter: blur(8px); }
button.white:hover { background: var(--white); color: var(--ink); }

/* HEADER & NAVBAR */
#header { position: sticky; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; min-height: 78px; padding: 15px clamp(20px, 6vw, 90px); background: rgba(23,21,19,.96); box-shadow: 0 8px 25px rgba(0,0,0,.12); }
#header .logo { width: 128px; height: auto; object-fit: contain; }
#navbar { display: flex; align-items: center; gap: clamp(8px, 2vw, 28px); list-style: none; }
#navbar li { position: relative; list-style: none; }
#navbar li a { display: inline-block; padding: 8px 0; color: rgba(255,255,255,.82); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: .2s ease; }
#navbar li a:hover, #navbar li a.active { color: var(--gold-light); }
#navbar li a.active::after, #navbar li a:hover::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--gold-light); content: ''; }
#navbar li a i, #mobile i, #mobile a { color: var(--white); }

/* CART ICON & BADGE POSITIONING */
#lg-bag { margin-left: 8px; position: relative; display: flex; align-items: center; }
#lg-bag a { position: relative; display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--white); }
#cart-count { 
    position: absolute; 
    top: -6px; 
    right: -12px; 
    display: none; 
    min-width: 18px; 
    height: 18px; 
    padding: 0 4px; 
    border-radius: 50%; 
    background: var(--gold); 
    color: var(--white); 
    font-size: .65rem; 
    font-weight: 700;
    line-height: 18px;
    text-align: center; 
    z-index: 10;
}
.status-dot {
    height: 8px;
    width: 8px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}
#mobile, #close { display: none; }

/* HERO SECTION */
#hero { position: relative; display: flex; min-height: min(78vh,760px); flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(40px,8vw,120px); overflow: hidden; background: linear-gradient(110deg,#221d19,#4a392d 48%,#a9865a); background-size: cover; background-repeat: no-repeat; background-position: center; isolation: isolate; }
#hero.bg-1 { background-image: url('img/slid1.webp'); background-position: center top; }
#hero.bg-2 { background-image: url('img/slid2.webp'); background-position: center top; }
#hero::before { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 78% 35%,rgba(255,226,175,.3),transparent 28%),linear-gradient(90deg,rgba(0,0,0,.48),transparent 70%); content: ''; }
#hero h4, #hero h2, #hero h1, #hero p { max-width: 720px; color: var(--white); }
#hero h4 { margin-bottom: 16px; color: var(--gold-light); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; }
#hero h1 { margin: 8px 0 16px; }
#hero p { max-width: 570px; color: rgba(255,255,255,.82); font-size: 1rem; }

#hero .normal, #hero .shop-btn, #hero button { position: relative; z-index: 1; margin-top: 18px; overflow: hidden; min-width: 178px; border: 1px solid var(--gold-light); border-radius: 3px; padding: 16px 28px; background: var(--gold-light); color: var(--ink); box-shadow: 0 10px 24px rgba(0,0,0,.22); font-size: .72rem; letter-spacing: .16em; }
#hero .normal::before, #hero .shop-btn::before, #hero button::before { position: absolute; top: 0; bottom: 0; left: -30%; width: 22%; background: rgba(255,255,255,.55); content: ''; transform: skewX(-18deg); transition: left .45s ease; }
#hero .normal::after, #hero .shop-btn::after, #hero button::after { margin-left: 4px; content: '→'; font-size: 1rem; transition: transform .25s ease; }
#hero .normal:hover, #hero .shop-btn:hover, #hero button:hover { border-color: var(--white); background: var(--white); color: var(--ink); box-shadow: 0 14px 30px rgba(0,0,0,.28); transform: translateY(-3px); }
#hero .normal:hover::before, #hero .shop-btn:hover::before, #hero button:hover::before { left: 125%; }
#hero .normal:hover::after, #hero .shop-btn:hover::after, #hero button:hover::after { transform: translateX(4px); }
.hero-controls { position: absolute; bottom: 35px; left: 50%; display: flex; align-items: center; gap: 16px; padding: 10px 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 50px; background: rgba(18,18,18,.65); box-shadow: 0 10px 30px rgba(0,0,0,.4); transform: translateX(-50%); backdrop-filter: blur(12px); }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: .3s ease; }
.hero-dot.active, .hero-dot:hover { background: var(--gold-light); transform: scale(1.35); }

/* PRODUCT CATALOG & GRID */
#product1, #new-arrivals-section, #video-feed { text-align: center; }
#product1 > p, #new-arrivals-section > p { color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }
.pro-container { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px; margin-top: 38px; }
.pro { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-align: left; box-shadow: 0 8px 25px rgba(35,25,16,.04); transition: .3s ease; }
.pro:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.pro > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; cursor: pointer; }
.pro .des { padding: 20px; cursor: pointer; }
.pro .des span, .video-details span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pro .des h5 { min-height: 44px; margin: 8px 0; }
.pro .des h4, .video-details h4 { color: var(--gold); font-family: var(--sans); }
.add-to-cart-btn { 
    position: absolute; 
    right: 17px; 
    bottom: 17px; 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    width: 38px; 
    height: 38px; 
    border: 0; 
    border-radius: 50%; 
    background: var(--ink); 
    color: var(--white) !important; 
    font-size: 0.9rem;
    cursor: pointer;
    transition: .2s ease; 
}
.add-to-cart-btn i { color: var(--white) !important; line-height: 1 !important; }
.add-to-cart-btn:hover { background: var(--gold); transform: scale(1.08); }

/* SINGLE PRODUCT DETAILS (sproduct.html) */
#prodetails { display: flex; margin-top: 20px; gap: 40px; }
#prodetails .single-pro-image { width: 40%; }
#prodetails .single-pro-details { width: 50%; padding-top: 30px; }
#prodetails .single-pro-details h4 { padding: 15px 0 10px 0; }
#prodetails .single-pro-details h2 { font-size: 1.8rem; margin-bottom: 15px; }
#prodetails .single-pro-details select { display: block; padding: 10px 15px; margin-bottom: 15px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); width: 100%; max-width: 250px; outline: none; }
#prodetails .single-pro-details input { width: 60px; height: 44px; padding-left: 10px; font-size: 1rem; margin-right: 10px; border: 1px solid var(--line); border-radius: 6px; outline: none; }
#prodetails .single-pro-details button { background: var(--ink); color: var(--white); border-radius: 6px; padding: 12px 28px; }
#prodetails .single-pro-details button:hover { background: var(--gold); }
#prodetails .single-pro-details span { line-height: 1.7; font-size: 0.95rem; color: var(--ink-soft); }

/* SWIPER GALLERY */
/* Single-product photo gallery */
.main-img-wrap { position: relative; }
.main-img-wrap #MainImg { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; padding: 0; border: none; border-radius: 50%;
    background: rgba(255, 255, 255, 0.9); color: var(--ink);
    font-size: 1.5rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); transition: background 0.2s ease;
    z-index: 2;
}
.gallery-nav:hover { background: #fff; }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.small-img-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.small-img {
    width: 72px; height: 88px; object-fit: cover; border-radius: 8px;
    cursor: pointer; opacity: 0.65; border: 2px solid transparent;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}
.small-img:hover { opacity: 1; }
.small-img.active { opacity: 1; border-color: var(--gold); }

/* CART TABLE (cart.html) */
#cart { overflow-x: auto; }
#cart table { width: 100%; border-collapse: collapse; table-layout: fixed; white-space: nowrap; }
#cart table img { width: 70px; height: 80px; object-fit: cover; border-radius: 6px; }
#cart table td { border-bottom: 1px solid var(--line); text-align: center; padding: 15px 10px; }
#cart table td:nth-child(1) { width: 80px; text-align: center; }
#cart table td:nth-child(1) i { color: #e74c3c; font-size: 1.1rem; cursor: pointer; }
#cart table td:nth-child(2) { width: 100px; text-align: center; }
#cart table td:nth-child(3) { width: 250px; text-align: left; font-weight: 600; white-space: normal; line-height: 1.35; }
#cart table td:nth-child(4), #cart table td:nth-child(6) { width: 120px; font-weight: 600; color: var(--gold); }
#cart table td:nth-child(5) input { width: 60px; padding: 8px; text-align: center; border: 1px solid var(--line); border-radius: 4px; }
#cart table thead { border: 1px solid var(--line); border-left: none; border-right: none; }
#cart table thead td { font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--ink); }

#cart-add { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
#cuopon { width: 45%; }
#cuopon h3, #subtotal h3 { margin-bottom: 15px; }
#cuopon input { padding: 12px 20px; outline: none; width: 60%; border: 1px solid var(--line); border-radius: 999px 0 0 999px; }
#cuopon button { border-radius: 0 999px 999px 0; background: var(--gold); border-color: var(--gold); }
#subtotal { width: 50%; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--white); }
#subtotal table { border-collapse: collapse; width: 100%; margin-bottom: 20px; }
#subtotal table td { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
#subtotal table td:last-child { text-align: right; font-weight: 700; }
#subtotal button { width: 100%; }

/* BANNERS & PAGE HEADERS */
#banner, #page-header { display: flex; min-height: 280px; align-items: center; justify-content: center; flex-direction: column; padding: 50px 20px; background: linear-gradient(135deg,#2a211b,#765a3b); color: var(--white); text-align: center; }
#banner h2, #page-header h2 { color: var(--white); }
#banner h2 span { color: var(--gold-light); }
#banner .normal { margin-top: 20px; }

#page-header.about-header, #OurStory {
    position: relative; min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px;
    background-image: linear-gradient(rgba(23, 21, 19, 0.65), rgba(23, 21, 19, 0.65)), url('img/cover.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
}
#page-header.about-header h2, #OurStory h2 { color: var(--white) !important; margin-bottom: 10px; }
#page-header.about-header p, #OurStory p { color: var(--gold-light) !important; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

#sm-banner, #banner3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.banner-box {
    display: flex; min-height: 340px; align-items: center; justify-content: center; flex-direction: column;
    padding: 28px; border-radius: var(--radius); text-align: center; background-color: #3c2e20;
    background-image:
        linear-gradient(135deg, rgba(60, 46, 32, 0.45), rgba(30, 22, 14, 0.55)),
        url("img/hats.jpg");
    background-repeat: no-repeat;
    background-position: center 20%;
    background-size: cover;
}
.banner-box2 {
    background-color: #322420;
    background-image:
        linear-gradient(135deg, rgba(50, 36, 32, 0.45), rgba(25, 17, 14, 0.55)),
        url("img/womenbanner.avif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.banner-box3 {
    background-color: #1e1c1a;
    background-image:
        linear-gradient(135deg, rgba(30, 28, 26, 0.45), rgba(15, 14, 12, 0.55)),
        url("img/Product7.jpg");
    background-repeat: no-repeat;
    background-position: center 70%;
    background-size: cover;
}
.banner-box h2, .banner-box h3 { color: var(--white); }
.banner-box h3 { margin-top: 8px; color: var(--gold-light); font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

#newsletter { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 45px; padding-bottom: 45px; background: var(--ink); }
#newsletter h4, #newsletter p { color: var(--white); }
#newsletter p { margin-bottom: 0; color: rgba(255,255,255,.65); }
#newsletter span { color: var(--gold-light); }
#newsletter .form { display: flex; width: min(100%,430px); }
#newsletter input { flex: 1; min-width: 0; border: 0; border-radius: 999px 0 0 999px; padding: 14px 18px; outline: none; }
#newsletter button { border-radius: 0 999px 999px 0; background: var(--gold); border-color: var(--gold); }

#about-head { display: grid; grid-template-columns: minmax(250px,.9fr) 1.1fr; align-items: center; gap: clamp(30px,7vw,90px); }
#about-head img { width: 100%; max-height: 520px; object-fit: contain; border-radius: var(--radius); }
#about-head abbr { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; }
#about-head marquee { display: block; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; color: var(--ink-soft); font-size: .82rem; }

#StyleInMotion {
    position: relative; min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px;
    background-image: linear-gradient(rgba(23, 21, 19, 0.65), rgba(23, 21, 19, 0.65)), url("img/blog-bg.jpeg") !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
}
#StyleInMotion h2 { color: var(--white) !important; margin-bottom: 10px; }
#StyleInMotion p, #StyleInMotion h4 { color: var(--gold-light) !important; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

.video-masonry { columns: 3 280px; column-gap: 24px; text-align: left; }
.video-card { display: inline-block; width: 100%; margin: 0 0 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); break-inside: avoid; }
.video-container { position: relative; background: #24201d; }
.video-container video, .video-container iframe { display: block; width: 100%; min-height: 330px; border: 0; object-fit: cover; }
.video-overlay { position: absolute; right: 15px; bottom: 15px; }
.video-details { padding: 18px; }
.video-details h5 { margin: 8px 0; }

/* FOOTER */
footer { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 38px; background: #eee7dd; }
footer .logo { width: 135px; margin-bottom: 22px; }
footer .col { display: flex; flex-direction: column; align-items: flex-start; }
footer h4 { margin: 10px 0 17px; font-family: var(--serif); font-size: 1.25rem; }
footer p { margin: 0 0 9px; font-size: .83rem; }
footer .col > a { margin: 0 0 10px; color: var(--ink-soft); font-size: .83rem; transition: .2s ease; }
footer .col > a:hover { color: var(--gold); }
footer .icon { display: flex; gap: 13px; }
footer .icon a { color: var(--ink-soft); font-size: 1rem; transition: .2s ease; }
footer .icon a:hover { color: var(--gold); }
footer .payment-icons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
footer .payment-icons i { font-size: 2rem; color: var(--ink-soft); transition: color .2s ease; }
footer .payment-icons i:hover { color: var(--gold); }
footer .copyright { grid-column: 1/-1; border-top: 1px solid var(--line); padding-top: 22px; text-align: center; }
footer .copyright p { width: 100%; }

/* CART TOAST NOTIFICATION */
.cart-toast { position: fixed; right: 22px; bottom: 22px; z-index: 1200; width: min(360px,calc(100% - 44px)); border: 1px solid var(--gold-light); border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(20px); transition: .3s ease; }
.cart-toast.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast-content { display: flex; gap: 14px; padding: 14px; }
.toast-thumb { width: 55px; height: 65px; border-radius: 8px; object-fit: cover; }
.toast-message strong { color: var(--gold-light); }
.toast-message p { margin: 5px 0; color: var(--white); font-size: .78rem; }
.toast-message span { color: rgba(255,255,255,.6); font-size: .72rem; }
.toast-icon { margin-right: 5px; color: var(--gold-light); }

/* ACCORDION POLICIES (about.html) */
.policy-section { background: #f1ebe2; }
.policy-inner { max-width: 920px; margin: 0 auto; padding: clamp(28px, 5vw, 58px); border: 1px solid #e5ddd2; border-radius: 14px; background: #fff; box-shadow: 0 18px 50px rgba(38, 28, 18, .08); }
.policy-eyebrow { margin-bottom: 10px; color: #b88a44; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.policy-inner h2 { margin-bottom: 10px; color: #171513; }
.policy-updated { margin-bottom: 28px; color: #514b45; font-size: .85rem; }
.policy-item { margin: 12px 0; border: 1px solid #e5ddd2; border-radius: 10px; background: #fbf8f3; overflow: hidden; }
.policy-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; color: #171513; cursor: pointer; font-family: Georgia, 'Times New Roman', serif; font-size: 1.25rem; list-style: none; transition: background .2s ease, color .2s ease; }
.policy-item summary::-webkit-details-marker { display: none; }
.policy-item summary::marker { display: none; }
.policy-item summary:hover { background: #f1ebe2; color: #9a6c2e; }
.policy-item[open] summary { border-bottom: 1px solid #e5ddd2; background: #f1ebe2; }
.policy-icon { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border: 1px solid #b88a44; border-radius: 50%; color: #b88a44; font-family: Arial, Helvetica, sans-serif; font-size: 1.1rem; line-height: 1; transition: transform .25s ease, background .25s ease, color .25s ease; }
.policy-item[open] .policy-icon { background: #b88a44; color: #fff; transform: rotate(45deg); }
.policy-content { padding: 8px 22px 20px; }
.policy-content p { margin: 12px 0; color: #514b45; }
.policy-content h4 { margin: 22px 0 8px; color: #b88a44; font-family: Arial, Helvetica, sans-serif; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.policy-content ul { margin: 0 0 18px 20px; color: #514b45; }
.policy-content li { margin: 7px 0; padding-left: 5px; }
.policy-content a { color: #9a6c2e; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* AUTHENTICATION MODAL — pill-bar style */
.modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }

.modal-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 44px 34px 36px;
    border-radius: 18px;
    color: #fff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    background:
        linear-gradient(to right, rgba(184, 138, 68, 0.35), rgba(20, 14, 6, 0.80)),
        url("img/african fashion.jpg") center / cover no-repeat;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.modal-content h2 {
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    font-size: 1.55rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 4px #000;
}
.modal-content h4 {
    color: #fff;
    font-weight: 600;
    font-size: .82rem;
    margin-top: 6px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}
.modal-content p {
    color: #fff;
    font-size: .85rem;
    margin: 14px 0 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9), 0 0 4px #000;
}
.modal-content p a {
    color: #f1d9b6;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}
.modal-content p a:hover { text-decoration: underline; }

.modal-content .close-btn {
    position: absolute; top: 14px; right: 20px;
    font-size: 26px; line-height: 1; cursor: pointer;
    color: #fff; text-shadow: 0 0 6px rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.modal-content form { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }

/* Bare input in the modal → white pill */
.modal-content form input {
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    padding: 14px 20px;
    font: inherit;
    font-size: 13.5px;
    color: #262626;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    transition: box-shadow .2s ease, border-color .2s ease;
}
.modal-content form input::placeholder { color: #9a9a9a; }
.modal-content form input:focus {
    border-color: var(--gold, #b88a44);
    box-shadow: 0 0 0 3px rgba(184, 138, 68, 0.35), 0 3px 10px rgba(0, 0, 0, 0.35);
}

/* Neutralize the browser's autofill tint so every field stays visually consistent */
.modal-content input:-webkit-autofill,
.modal-content input:-webkit-autofill:hover,
.modal-content input:-webkit-autofill:focus {
    -webkit-text-fill-color: #262626;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    box-shadow: 0 0 0 1000px #fff inset;
    transition: background-color 9999s ease-in-out 0s;
}

/* Joined pill bar: collapses its inputs + attached button into one rounded bar */
.modal-content .input-box {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    transition: box-shadow .2s ease;
}
.modal-content .input-box:focus-within {
    box-shadow: 0 0 0 3px rgba(184, 138, 68, 0.35), 0 3px 10px rgba(0, 0, 0, 0.35);
}
.modal-content .input-box input {
    flex: 1 1 0;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.modal-content .input-box input:focus { box-shadow: none; }
.modal-content .input-box input + input,
.modal-content .input-box input + .pw-wrap { border-left: 1px solid #e5e5e5; }

/* Password show/hide toggle — wraps whichever password input it's attached to */
.pw-wrap { position: relative; display: flex; align-items: center; width: 100%; }
.modal-content .input-box .pw-wrap { flex: 1 1 0; min-width: 0; }
.pw-wrap input { padding-right: 42px !important; }
.modal-content .input-box .pw-toggle-btn,
.modal-content form .pw-toggle-btn,
.pw-toggle-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    display: flex;
    align-items: center;
    z-index: 2;
    box-shadow: none;
}
.modal-content .input-box .pw-toggle-btn:hover,
.pw-toggle-btn:hover { background: none; color: #666; }

/* Newsletter opt-in checkbox on the sign-up form */
.checkbox-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
    font-size: 13px;
    line-height: 1.4;
}
.checkbox-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--gold, #b88a44);
    cursor: pointer;
    flex: 0 0 auto;
}
.checkbox-box label { cursor: pointer; }

.modal-content .input-box button {
    flex: 0 0 auto;
    border: none;
    border-radius: 0;
    padding: 0 24px;
    background: var(--gold, #b88a44);
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease;
}
.modal-content .input-box button:hover { background: #9d7335; }

/* Standalone full-width gold pill button (e.g. SIGN UP) */
.modal-content form > button,
.modal-content .btn,
.modal-content .normal {
    align-self: stretch;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    background: var(--gold, #b88a44);
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: background .25s ease;
}
.modal-content form > button:hover,
.modal-content .btn:hover,
.modal-content .normal:hover { background: #9d7335; }

.modal-content .auth-msg,
.modal-content #forgot-msg { color: #fff; text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9); }

@media (max-width: 480px) {
    .modal-content { padding: 38px 20px 28px; }
    .modal-content .input-box { flex-direction: column; }
    .modal-content .input-box input + input,
    .modal-content .input-box input + .pw-wrap { border-left: none; border-top: 1px solid #e0e0e0; }
    .modal-content .input-box button { padding: 12px 24px; width: 100%; }
    .modal-content .input-box .pw-toggle-btn { padding: 0; width: auto; }
}


/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
    .pro-container { grid-template-columns: repeat(2,minmax(0,1fr)); }
    #sm-banner, #banner3 { grid-template-columns: 1fr; }
    footer { grid-template-columns: repeat(2,1fr); }
    #prodetails { flex-direction: column; }
    #prodetails .single-pro-image, #prodetails .single-pro-details { width: 100%; }
    #cart-add { flex-direction: column; }
    #cuopon, #subtotal { width: 100%; }
}
@media (max-width: 700px) {
    #header { min-height: 68px; }
    #header .logo { width: 108px; }
    #navbar { position: fixed; top: 0; right: -280px; display: flex; width: 280px; height: 100vh; align-items: flex-start; justify-content: flex-start; flex-direction: column; gap: 16px; padding: 100px 35px 35px; background: var(--ink); box-shadow: -10px 0 30px rgba(0,0,0,.2); transition: .3s ease; }
    #navbar.active { right: 0; }
    #navbar li a { font-size: .82rem; }
    #mobile { display: flex; align-items: center; gap: 20px; }
    #mobile i { cursor: pointer; font-size: 1.25rem; }
    #close { position: absolute; top: 28px; left: 35px; display: block; font-size: 1.25rem; }
    #hero { min-height: 680px; padding: 42px 24px; }
    #hero h2 { font-size: 2rem; }
    #hero p { font-size: .9rem; }
    #hero .normal, #hero .shop-btn, #hero button { min-width: 165px; padding: 14px 22px; }
    #newsletter { align-items: stretch; flex-direction: column; }
    #newsletter .form { width: 100%; }
    #about-head { grid-template-columns: 1fr; }
    #about-head img { max-height: 300px; }
    footer { grid-template-columns: 1fr 1fr; gap: 25px; }
}
@media (max-width: 460px) {
    .section-p1 { padding-right: 18px; padding-left: 18px; }
    .pro-container { grid-template-columns: 1fr; gap: 18px; }
    .pro > img { aspect-ratio: 1/1.15; }
    footer { grid-template-columns: 1fr; }
    footer .copyright { grid-column: auto; }
    #banner h2 { font-size: 1.9rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}