/* ============================================================

   AISHA TRADING — Frontend Stylesheet

   Font: Space Grotesk + DM Sans (anti-AI, non-Inter)

   Palette: Cool blue & white — fresh, trustworthy, premium

   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');



/* --- CSS Variables --- */

:root {

    --font-head: 'Space Grotesk', system-ui, sans-serif;

    --font-body: 'DM Sans', system-ui, sans-serif;

    --coral: #4A90D9;

    --coral-dark: #3672B5;

    --coral-light: #E8F1FB;

    --sage: #5BA0A8;

    --sage-dark: #468A92;

    --sage-light: #EAF5F6;

    --gold: #6C8FC7;

    --gold-light: #EDF2FA;

    --cream: #F4F8FC;

    --warm-white: #FBFDFF;

    --charcoal: #1E2A3A;

    --slate: #040B7D;

    --muted: #8A94A6;

    --cloud: #DCE4EE;

    --smoke: #F0F4F8;

    --blush: #E8F1FB;

    --danger: #D94848;

    --success: #4E9A5C;

    --radius-sm: 6px;

    --radius: 10px;

    --radius-lg: 16px;

    --radius-xl: 24px;

    --radius-pill: 50px;

    --shadow-sm: 0 2px 8px rgba(30,42,58,0.06);

    --shadow: 0 4px 20px rgba(30,42,58,0.08);

    --shadow-lg: 0 12px 40px rgba(30,42,58,0.10);

    --shadow-hover: 0 16px 48px rgba(30,42,58,0.14);

    --gap-xs: 4px;

    --gap-sm: 8px;

    --gap-md: 16px;

    --gap-lg: 24px;

    --gap-xl: 40px;

    --gap-2xl: 64px;

    --container: 1280px;

    --header-h: 72px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

}



/* --- Reset --- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.6;

    color: var(--charcoal);

    background: var(--warm-white);

    overflow-x: hidden;

}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul, ol { list-style: none; }

button, input, select, textarea {

    font-family: inherit;

    font-size: inherit;

    border: none;

    outline: none;

    background: none;

}

button { cursor: pointer; }

h1, h2, h3, h4, h5, h6 {

    font-family: var(--font-head);

    font-weight: 600;

    line-height: 1.2;

    color: var(--charcoal);

}



/* --- Utility --- */

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: var(--gap-2xl) 0; }

.section--cream { background: var(--cream); }

.section--blush { background: var(--blush); }

.section--sage { background: var(--sage-light); }

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

.text-muted { color: var(--muted); }

.text-coral { color: var(--coral); }

.text-sage { color: var(--sage); }

.text-sm { font-size: 0.85rem; }

.text-xs { font-size: 0.75rem; }

.text-lg { font-size: 1.15rem; }

.font-head { font-family: var(--font-head); }

.mb-sm { margin-bottom: var(--gap-sm); }

.mb-md { margin-bottom: var(--gap-md); }

.mb-lg { margin-bottom: var(--gap-lg); }

.mb-xl { margin-bottom: var(--gap-xl); }

.mt-md { margin-top: var(--gap-md); }

.mt-lg { margin-top: var(--gap-lg); }

.flex { display: flex; }

.flex-wrap { flex-wrap: wrap; }

.items-center { align-items: center; }

.justify-between { justify-content: space-between; }

.justify-center { justify-content: center; }

.gap-sm { gap: var(--gap-sm); }

.gap-md { gap: var(--gap-md); }

.gap-lg { gap: var(--gap-lg); }

.gap-xl { gap: var(--gap-xl); }

.hidden { display: none !important; }

.block { display: block; }

.relative { position: relative; }

.overflow-hidden { overflow: hidden; }

.hidden-desktop { display: none !important; }



/* --- Scroll Reveal --- */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition: opacity 0.7s ease, transform 0.7s ease;

}

.reveal.revealed {

    opacity: 1;

    transform: translateY(0);

}



/* === HEADER === */

.site-header {

    position: fixed;

    top: 0; left: 0; right: 0;

    height: var(--header-h);

    background: rgba(251,253,255,0.92);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(220,228,238,0.6);

    z-index: 1000;

    transition: box-shadow var(--transition), background var(--transition);

}

.site-header.scrolled {

    box-shadow: var(--shadow);

    background: rgba(251,253,255,0.97);

}

.header-inner {

    max-width: var(--container);

    margin: 0 auto;

    padding: 0 24px;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.logo {

    font-family: var(--font-head);

    font-size: 1.5rem;

    font-weight: 700;

    color: var(--charcoal);

    letter-spacing: -0.5px;

}

.logo span { color: var(--coral); }



/* Nav */

.main-nav { display: flex; align-items: center; gap: var(--gap-lg); }

.main-nav a {

    font-family: var(--font-head);

    font-size: 1rem;

    font-weight: 500;

    color: var(--slate);

    position: relative;

    padding: 4px 0;

}

.main-nav a::after {

    content: '';

    position: absolute;

    bottom: -2px; left: 0;

    width: 0; height: 2px;

    background: var(--coral);

    transition: width var(--transition);

}

.main-nav a:hover { color: var(--coral); }

.main-nav a:hover::after,

.main-nav a.active::after { width: 100%; }

.main-nav a.active { color: var(--coral); }



.nav-dropdown {

    position: relative;

    display: flex;

    align-items: center;

}

.dropdown-menu {

    position: absolute;

    top: 100%;

    left: -10px;

    background: #fff;

    min-width: 200px;

    box-shadow: var(--shadow-md);

    border-radius: var(--radius);

    padding: var(--gap-sm) 0;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.3s ease;

    z-index: 100;

    display: flex;

    flex-direction: column;

}

.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.dropdown-menu a {

    padding: 10px 16px;

    display: block;

    font-size: 0.95rem;

    color: var(--slate);

    transition: background var(--transition), color var(--transition);

}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {

    background: var(--smoke);

    color: var(--coral);

}

@media (max-width: 768px) {

    .dropdown-menu {

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        padding-left: var(--gap-md);

        display: none;

    }

    .nav-dropdown:hover .dropdown-menu {

        display: flex;

    }

}



/* Header Icons */

.header-icons { display: flex; align-items: center; gap: var(--gap-md); }

.header-icon {

    width: 40px; height: 40px;

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

    border-radius: 50%;

    transition: background var(--transition), transform var(--transition);

    position: relative;

}

.header-icon:hover { background: var(--smoke); transform: scale(1.08); }

.header-icon svg { width: 22px; height: 22px; stroke: var(--charcoal); fill: none; stroke-width: 1.8; }

.cart-badge {

    position: absolute;

    top: -2px; right: -2px;

    background: var(--coral);

    color: #fff;

    font-size: 0.65rem;

    font-weight: 700;

    width: 18px; height: 18px;

    border-radius: 50%;

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

    line-height: 1;

}



/* Header Search */

.header-search {

    display: flex;

    align-items: center;

    background: var(--smoke);

    border-radius: var(--radius-pill);

    padding: 6px 12px;

    gap: 6px;

    transition: all var(--transition);

    border: 1.5px solid transparent;

}

.header-search:focus-within {

    background: #fff;

    border-color: var(--coral);

    box-shadow: 0 0 0 3px rgba(74,144,217,0.1);

}

.header-search input {

    width: 140px;

    background: none;

    font-size: 0.85rem;

    color: var(--charcoal);

    transition: width var(--transition);

}

.header-search input::placeholder { color: var(--muted); }

.header-search:focus-within input { width: 200px; }

.header-search button {

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

    padding: 0;

}

.header-search button svg { stroke: var(--slate); fill: none; stroke-width: 2; }

.mobile-nav-search { width: 100%; margin-bottom: var(--gap-sm); }

.mobile-nav-search .form-control { border-radius: var(--radius-pill); padding: 10px 16px; font-size: 0.9rem; }



/* Mobile Toggle */

.mobile-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    width: 28px;

    cursor: pointer;

    z-index: 1002;

}

.mobile-toggle span {

    display: block;

    height: 2px;

    background: var(--charcoal);

    border-radius: 2px;

    transition: all var(--transition);

}

.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }

.mobile-toggle.open span:nth-child(2) { opacity: 0; }

.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }



/* === BUTTONS === */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: var(--gap-sm);

    padding: 12px 28px;

    font-family: var(--font-head);

    font-size: 0.9rem;

    font-weight: 600;

    border-radius: var(--radius-pill);

    transition: all var(--transition);

    position: relative;

    overflow: hidden;

    white-space: nowrap;

}

.btn--primary {

    background: var(--coral);

    color: #fff;

}

.btn--primary:hover {

    background: var(--coral-dark);

    transform: translateY(-2px);

    box-shadow: 0 8px 24px rgba(232,115,90,0.35);

}

.btn--secondary {

    background: var(--charcoal);

    color: #fff;

}

.btn--secondary:hover {

    background: #1a1715;

    transform: translateY(-2px);

    box-shadow: 0 8px 24px rgba(45,41,38,0.25);

}

.btn--outline {

    background: transparent;

    border: 1.5px solid var(--charcoal);

    color: var(--charcoal);

}

.btn--outline:hover {

    background: var(--charcoal);

    color: #fff;

    transform: translateY(-2px);

}

.btn--sage {

    background: var(--sage);

    color: #fff;

}

.btn--sage:hover {

    background: var(--sage-dark);

    transform: translateY(-2px);

    box-shadow: 0 8px 24px rgba(139,158,107,0.35);

}

.btn--gold {

    background: var(--gold);

    color: #fff;

}

.btn--sm { padding: 8px 20px; font-size: 0.8rem; }

.btn--lg { padding: 16px 36px; font-size: 1rem; }

.btn--block { width: 100%; }

.btn--icon {

    width: 44px; height: 44px;

    padding: 0;

    border-radius: 50%;

}



/* === HERO === */

.hero {

    padding-top: calc(var(--header-h) + 40px);

    padding-bottom: var(--gap-2xl);

    background: linear-gradient(165deg, var(--cream) 0%, var(--blush) 35%, var(--warm-white) 100%);

    position: relative;

    overflow: hidden;

    min-height: 85vh;

    display: flex;

    align-items: center;

}

.hero::before {

    content: '';

    position: absolute;

    top: -120px; right: -120px;

    width: 500px; height: 500px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(74,144,217,0.08) 0%, transparent 70%);

    animation: floatBlob 8s ease-in-out infinite;

}

.hero::after {

    content: '';

    position: absolute;

    bottom: -80px; left: -80px;

    width: 400px; height: 400px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(91,160,168,0.08) 0%, transparent 70%);

    animation: floatBlob 10s ease-in-out infinite reverse;

}

@keyframes floatBlob {

    0%, 100% { transform: translate(0, 0) scale(1); }

    33% { transform: translate(30px, -20px) scale(1.05); }

    66% { transform: translate(-15px, 15px) scale(0.95); }

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: var(--gap-2xl);

    align-items: center;

    position: relative;

    z-index: 1;

}

.hero-content h1 {

    font-size: clamp(2.4rem, 5vw, 3.6rem);

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: var(--gap-lg);

    letter-spacing: -1px;

}

.hero-content h1 em {

    font-style: normal;

    color: var(--coral);

    position: relative;

}

.hero-content h1 em::after {

    content: '';

    position: absolute;

    bottom: 2px; left: 0; right: 0;

    height: 8px;

    background: rgba(74,144,217,0.2);

    border-radius: 4px;

    z-index: -1;

}

.hero-content p {

    font-size: 1.1rem;

    color: var(--slate);

    margin-bottom: var(--gap-xl);

    max-width: 480px;

    line-height: 1.7;

}

.hero-actions { display: flex; gap: var(--gap-md); flex-wrap: wrap; }

.hero-visual {

    position: relative;

    display: flex;

    justify-content: center;

}

.hero-img-wrap {

    position: relative;

    width: 100%;

    border-radius: var(--radius-xl);

    overflow: hidden;
 margin-top: -80px;
    animation: heroFloat 6s ease-in-out infinite;

}

@keyframes heroFloat {

    0%, 100% { transform: translateY(0); }

    50% { transform: translateY(-12px); }

}

.hero-img-wrap img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    aspect-ratio: 4/5;

}

.hero-badge {

    position: absolute;

    bottom: -16px; left: -16px;

    background: var(--gold);

    color: #fff;

    font-family: var(--font-head);

    font-weight: 700;

    font-size: 0.85rem;

    padding: 14px 22px;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    animation: heroFloat 5s ease-in-out infinite 1s;

}



/* === MARQUEE === */

.marquee-strip {

    background: var(--charcoal);

    color: var(--cream);

    padding: 14px 0;

    overflow: hidden;

    white-space: nowrap;

}

.marquee-track {

    display: flex;

    gap: var(--gap-xl);

    animation: marquee 30s linear infinite;

}

.marquee-track span {

    font-family: var(--font-head);

    font-size: 0.85rem;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    flex-shrink: 0;

}

.marquee-track span::before {

    content: '✦';

    margin-right: var(--gap-md);

    color: var(--coral);

}

@keyframes marquee {

    0% { transform: translateX(0); }

    100% { transform: translateX(-50%); }

}



/* === PRODUCT CARDS === */

.products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: var(--gap-lg);

}

.product-card {

    background: #fff;

    border-radius: var(--radius-lg);

    overflow: hidden;

    transition: transform var(--transition), box-shadow var(--transition);

    position: relative;

    border: 1px solid rgba(232,226,220,0.5);

}

.product-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-hover);

}

.product-card__img {

    display: block;

    position: relative;

    overflow: hidden;

    aspect-ratio: 3/4;

    background: var(--smoke);

}

.product-card__img img {

    width: 100%; height: 100%;

    object-fit: cover;

    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

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

.product-card__badge {

    position: absolute;

    top: 12px; left: 12px;

    background: var(--coral);

    color: #fff;

    font-family: var(--font-head);

    font-size: 0.7rem;

    font-weight: 700;

    padding: 4px 12px;

    border-radius: var(--radius-pill);

    text-transform: uppercase;

    letter-spacing: 0.5px;

}

.product-card__quick {

    position: absolute;

    bottom: 12px; left: 50%;

    transform: translateX(-50%) translateY(20px);

    opacity: 0;

    transition: all var(--transition);

}

.product-card:hover .product-card__quick {

    opacity: 1;

    transform: translateX(-50%) translateY(0);

}

.product-card__body { padding: 16px; }

.product-card__cat {

    font-size: 0.7rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--sage);

    font-weight: 600;

    margin-bottom: 6px;

    font-family: var(--font-head);

}

.product-card__name {

    font-family: var(--font-head);

    font-size: 0.95rem;

    font-weight: 600;

    margin-bottom: 8px;

    line-height: 1.3;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}

.product-card__name a:hover { color: var(--coral); }

.product-card__price {

    display: flex;

    align-items: center;

    gap: var(--gap-sm);

}

.product-card__price .current {

    font-family: var(--font-head);

    font-size: 1.05rem;

    font-weight: 700;

    color: var(--coral);

}

.product-card__price .original {

    font-size: 0.85rem;

    color: var(--muted);

    text-decoration: line-through;

}

.product-card__price .discount {

    font-size: 0.7rem;

    font-weight: 700;

    color: var(--success);

    background: rgba(78,154,92,0.1);

    padding: 2px 8px;

    border-radius: var(--radius-pill);

}



/* === SECTION HEADERS === */

.section-header {

    text-align: center;

    margin-bottom: var(--gap-xl);

}

.section-header h2 {

    font-size: clamp(1.8rem, 3vw, 2.4rem);

    margin-bottom: var(--gap-sm);

    letter-spacing: -0.5px;

}

.section-header p {

    color: var(--slate);

    font-size: 1rem;

    max-width: 560px;

    margin: 0 auto;

}

.section-header .accent-line {

    width: 60px; height: 3px;

    background: var(--coral);

    border-radius: 3px;

    margin: var(--gap-md) auto 0;

}



/* === CATEGORY CARDS === */

.categories-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: var(--gap-lg);

}

.category-card {

    position: relative;

    border-radius: var(--radius-lg);

    overflow: hidden;

    aspect-ratio: 3/4;

    cursor: pointer;

    group: true;

}

.category-card { background: var(--smoke); }

.category-card img {

    width: 100%; height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;

}

.category-card:hover img { transform: scale(1.08); }

.category-card__overlay {

    position: absolute;

    inset: 0;

    /*background: linear-gradient(to top, rgba(45,41,38,0.7) 0%, transparent 20%);*/

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 24px;

    transition: background var(--transition);

}

.category-card:hover .category-card__overlay {

    background: linear-gradient(

      to top,

      rgba(255,255,255,0.85) 0%,

      rgba(255,255,255,0.1) 60%

    );

}

.category-card__name {

    font-family: var(--font-head);

    color: #000;

    font-size: 1.2rem;

    font-weight: 600;

}

.category-card__count {

    color: rgba(0,0,0,0.7);

    font-size: 0.8rem;

    margin-top: 4px;

}



/* === FORMS === */

.form-group { margin-bottom: var(--gap-lg); }

.form-group label {

    display: block;

    font-family: var(--font-head);

    font-size: 0.85rem;

    font-weight: 600;

    margin-bottom: 6px;

    color: var(--charcoal);

}

.form-group label .required { color: var(--coral); }

.form-control {

    width: 100%;

    padding: 12px 16px;

    background: #fff;

    border: 1.5px solid var(--cloud);

    border-radius: var(--radius);

    font-size: 0.95rem;

    color: var(--charcoal);

    transition: border-color var(--transition), box-shadow var(--transition);

}

.form-control:focus {

    border-color: var(--coral);

    box-shadow: 0 0 0 3px rgba(232,115,90,0.12);

}

.form-control::placeholder { color: var(--muted); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {

    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8.5L1 3.5h10L6 8.5z' fill='%235C5552'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 14px center;

    padding-right: 36px;

}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: var(--gap-lg);

}



/* === ALERTS === */

.alert {

    padding: 14px 20px;

    border-radius: var(--radius);

    margin-bottom: var(--gap-lg);

    font-size: 0.9rem;

    display: flex;

    align-items: center;

    gap: var(--gap-sm);

}

.alert--success { background: rgba(78,154,92,0.1); color: var(--success); border: 1px solid rgba(78,154,92,0.2); }

.alert--error { background: rgba(217,72,72,0.08); color: var(--danger); border: 1px solid rgba(217,72,72,0.15); }

.alert--info { background: rgba(212,168,83,0.1); color: #9A7B2C; border: 1px solid rgba(212,168,83,0.2); }



/* === AUTH PAGES === */

.auth-page {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: var(--gap-xl) var(--gap-lg);

    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);

}

.auth-box {

    background: #fff;

    border-radius: var(--radius-xl);

    padding: 48px 40px;

    width: 100%;

    max-width: 440px;

    box-shadow: var(--shadow-lg);

}

.auth-box__logo {

    text-align: center;

    margin-bottom: var(--gap-xl);

}

.auth-box__logo h1 {

    font-size: 1.6rem;

    margin-bottom: 4px;

}

.auth-box__logo h1 span { color: var(--coral); }

.auth-box__logo p { color: var(--muted); font-size: 0.85rem; }

.auth-box h2 {

    font-size: 1.3rem;

    margin-bottom: var(--gap-lg);

    text-align: center;

}

.auth-links {

    text-align: center;

    margin-top: var(--gap-lg);

    font-size: 0.85rem;

    color: var(--muted);

}

.auth-links a { color: var(--coral); font-weight: 600; }

.auth-links a:hover { text-decoration: underline; }



/* === FOOTER === */

.site-footer {

    background: var(--charcoal);

    color: rgba(255,255,255,0.7);

    padding: var(--gap-2xl) 0 var(--gap-lg);

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: var(--gap-xl);

    margin-bottom: var(--gap-xl);

}

.footer-brand h3 {

    font-size: 1.4rem;

    color: #fff;

    margin-bottom: var(--gap-md);

}

.footer-brand h3 span { color: var(--coral); }

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--gap-md); max-width: 320px; }

.footer-col h4 {

    color: #fff;

    font-size: 0.9rem;

    font-weight: 600;

    margin-bottom: var(--gap-md);

    text-transform: uppercase;

    letter-spacing: 1px;

    font-family: var(--font-head);

}

.footer-col ul li { margin-bottom: var(--gap-sm); }

.footer-col ul li a {

    font-size: 0.88rem;

    color: rgba(255,255,255,0.6);

    transition: color var(--transition), padding-left var(--transition);

}

.footer-col ul li a:hover { color: var(--coral); padding-left: 4px; }

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    padding-top: var(--gap-lg);

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 0.8rem;

    flex-wrap: wrap;

    gap: var(--gap-md);

}

.footer-bottom a { color: rgba(255,255,255,0.5); }

.footer-bottom a:hover { color: var(--coral); }



/* Footer info strip */

.footer-info-strip {

    display: flex;

    flex-wrap: wrap;

    gap: var(--gap-md) var(--gap-xl);

    padding: var(--gap-md) 0 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    margin-bottom: var(--gap-lg);

}

.footer-info-item {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 0.78rem;

    color: rgba(255,255,255,0.5);

}

.footer-info-item svg { stroke: var(--coral); fill: none; stroke-width: 1.8; flex-shrink: 0; opacity: 0.7; }



/* === BREADCRUMB === */

.breadcrumb {

    padding: calc(var(--header-h) + 20px) 0 20px;

    background: var(--cream);

}

.breadcrumb-list {

    display: flex;

    align-items: center;

    gap: var(--gap-sm);

    font-size: 0.85rem;

    color: var(--muted);

    flex-wrap: wrap;

}

.breadcrumb-list a { color: var(--slate); }

.breadcrumb-list a:hover { color: var(--coral); }

.breadcrumb-list .sep { color: var(--cloud); margin: 0 2px; }

.breadcrumb-list .current { color: var(--charcoal); font-weight: 600; }



/* === PRODUCT DETAIL === */

.product-detail {

    padding-top: var(--gap-lg);

}

.product-detail-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: var(--gap-2xl);

    align-items: start;

}

.pd-gallery { position: relative; }

.pd-main-img {

    width: 100%;

    border-radius: var(--radius-lg);

    overflow: hidden;

    background: var(--smoke);

    aspect-ratio: 3/4;

}

.pd-main-img img {

    width: 100%; height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}

.pd-main-img:hover img { transform: scale(1.04); }

.pd-thumbs {

    display: flex;

    gap: var(--gap-sm);

    margin-top: var(--gap-md);

    overflow-x: auto;

}

.pd-thumb {

    width: 72px; height: 72px;

    flex-shrink: 0;

    border-radius: var(--radius-sm);

    overflow: hidden;

    border: 2px solid transparent;

    cursor: pointer;

    transition: border-color var(--transition);

    opacity: 0.6;

}

.pd-thumb:hover, .pd-thumb.active {

    border-color: var(--coral);

    opacity: 1;

}

.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-info { position: sticky; top: calc(var(--header-h) + 24px); }

.pd-category {

    font-family: var(--font-head);

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: var(--sage);

    font-weight: 600;

    margin-bottom: var(--gap-sm);

}

.pd-title {

    font-size: clamp(1.4rem, 2.5vw, 2rem);

    margin-bottom: var(--gap-md);

    letter-spacing: -0.5px;

    word-wrap: break-word;

    overflow-wrap: break-word;

}

.pd-price {

    display: flex;

    align-items: baseline;

    gap: var(--gap-md);

    margin-bottom: var(--gap-lg);

    flex-wrap: wrap;

}

.pd-price .current {

    font-family: var(--font-head);

    font-size: 1.8rem;

    font-weight: 700;

    color: var(--coral);

}

.pd-price .original {

    font-size: 1.1rem;

    color: var(--muted);

    text-decoration: line-through;

}

.pd-price .off {

    font-size: 0.8rem;

    font-weight: 700;

    color: var(--success);

    background: rgba(78,154,92,0.1);

    padding: 4px 12px;

    border-radius: var(--radius-pill);

}

.pd-desc {

    color: var(--slate);

    line-height: 1.8;

    margin-bottom: var(--gap-lg);

    font-size: 0.95rem;

    word-wrap: break-word;

    overflow-wrap: break-word;

}

.pd-variants { margin-bottom: var(--gap-lg); }

.pd-variant-label {

    font-family: var(--font-head);

    font-size: 0.85rem;

    font-weight: 600;

    margin-bottom: var(--gap-sm);

}

.selected-val {

    color: var(--coral);

    font-weight: 700;

    margin-left: 4px;

}

.pd-variant-options { display: flex; flex-wrap: wrap; gap: var(--gap-sm); }

.pd-variant-opt {

    padding: 8px 18px;

    border: 1.5px solid var(--cloud);

    border-radius: var(--radius-pill);

    font-family: var(--font-head);

    font-size: 0.82rem;

    font-weight: 500;

    cursor: pointer;

    transition: all var(--transition);

    background: #fff;

}

.pd-variant-opt:hover { border-color: var(--coral); color: var(--coral); }

.pd-variant-opt.selected {

    border-color: var(--coral);

    background: var(--coral);

    color: #fff;

}

.pd-qty {

    display: flex;

    align-items: center;

    gap: 0;

    margin-bottom: var(--gap-lg);

    border: 1.5px solid var(--cloud);

    border-radius: var(--radius);

    width: fit-content;

    overflow: hidden;

}

.pd-qty button {

    width: 44px; height: 44px;

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

    font-size: 1.2rem;

    font-weight: 700;

    color: var(--charcoal);

    transition: background var(--transition);

}

.pd-qty button:hover { background: var(--smoke); }

.pd-qty input {

    width: 56px; height: 44px;

    text-align: center;

    font-size: 1rem;

    font-weight: 600;

    border-left: 1px solid var(--cloud);

    border-right: 1px solid var(--cloud);

}

.pd-actions { display: flex; gap: var(--gap-md); flex-wrap: wrap; }



/* === CART SIDEBAR === */

.cart-overlay {

    position: fixed; inset: 0;

    background: rgba(45,41,38,0.4);

    z-index: 2000;

    opacity: 0;

    visibility: hidden;

    transition: all var(--transition);

}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {

    position: fixed;

    top: 0; right: -420px; bottom: 0;

    width: 400px;

    max-width: 90vw;

    background: #fff;

    z-index: 2001;

    display: flex;

    flex-direction: column;

    transition: right var(--transition);

    box-shadow: -8px 0 40px rgba(0,0,0,0.1);

}

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

.cart-drawer__header {

    padding: 20px 24px;

    border-bottom: 1px solid var(--cloud);

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

}

.cart-drawer__header h3 { font-size: 1.1rem; }

.cart-drawer__close {

    width: 36px; height: 36px;

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

    border-radius: 50%;

    transition: background var(--transition);

}

.cart-drawer__close:hover { background: var(--smoke); }

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

.cart-item {

    display: flex;

    gap: var(--gap-md);

    padding: var(--gap-md) 0;

    border-bottom: 1px solid var(--smoke);

}

.cart-item__img {

    width: 72px; height: 90px;

    border-radius: var(--radius-sm);

    overflow: hidden;

    flex-shrink: 0;

    background: var(--smoke);

}

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

.cart-item__info { flex: 1; }

.cart-item__name {

    font-family: var(--font-head);

    font-size: 0.88rem;

    font-weight: 600;

    margin-bottom: 4px;

}

.cart-item__variant { font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; }

.cart-item__price { font-weight: 700; color: var(--coral); font-size: 0.9rem; }

.cart-item__remove {

    font-size: 0.75rem;

    color: var(--danger);

    cursor: pointer;

    margin-top: 4px;

}

.cart-item__remove:hover { text-decoration: underline; }

.cart-drawer__footer {

    padding: 20px 24px;

    border-top: 1px solid var(--cloud);

}

.cart-total {

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

    font-family: var(--font-head);

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: var(--gap-md);

}

.cart-empty {

    text-align: center;

    padding: var(--gap-2xl) 0;

    color: var(--muted);

}



/* === ACCOUNT === */

.account-layout {

    display: grid;

    grid-template-columns: 260px 1fr;

    gap: var(--gap-xl);

    padding-top: var(--gap-lg);

}

.account-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

.account-sidebar ul li { margin-bottom: 4px; }

.account-sidebar ul li a {

    display: block;

    padding: 10px 16px;

    border-radius: var(--radius);

    font-family: var(--font-head);

    font-size: 0.9rem;

    font-weight: 500;

    color: var(--slate);

    transition: all var(--transition);

}

.account-sidebar ul li a:hover { background: var(--smoke); color: var(--charcoal); }

.account-sidebar ul li a.active { background: var(--coral-light); color: var(--coral); font-weight: 600; }

.account-content { min-height: 400px; }



/* Card (reusable) */

.card {

    background: #fff;

    border-radius: var(--radius-lg);

    border: 1px solid rgba(232,226,220,0.5);

    overflow: hidden;

}

.card__header {

    padding: 20px 24px;

    border-bottom: 1px solid var(--smoke);

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

}

.card__header h3 { font-size: 1.05rem; }

.card__body { padding: 24px; }



/* Tables */

.table-wrap { overflow-x: auto; }

.table-wrap table { width: 100%; border-collapse: collapse; }

.table-wrap th {

    font-family: var(--font-head);

    font-size: 0.78rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    color: var(--muted);

    text-align: left;

    padding: 12px 16px;

    border-bottom: 2px solid var(--smoke);

}

.table-wrap td {

    padding: 14px 16px;

    border-bottom: 1px solid var(--smoke);

    font-size: 0.9rem;

    vertical-align: middle;

}

.badge {

    display: inline-block;

    padding: 3px 10px;

    border-radius: var(--radius-pill);

    font-size: 0.72rem;

    font-weight: 700;

    font-family: var(--font-head);

    text-transform: uppercase;

    letter-spacing: 0.3px;

}

.badge--pending { background: rgba(212,168,83,0.15); color: #9A7B2C; }

.badge--processing { background: rgba(100,149,237,0.15); color: #4A7BD4; }

.badge--shipped { background: rgba(139,158,107,0.15); color: var(--sage-dark); }

.badge--delivered { background: rgba(78,154,92,0.15); color: var(--success); }

.badge--cancelled { background: rgba(217,72,72,0.1); color: var(--danger); }

.badge--active { background: rgba(78,154,92,0.12); color: var(--success); }



/* Pagination */

.pagination { display: flex; align-items: center; justify-content: center; gap: var(--gap-sm); padding: var(--gap-lg) 0; }

.pagination a, .pagination span {

    width: 36px; height: 36px;

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

    border-radius: 50%;

    font-family: var(--font-head);

    font-size: 0.85rem;

    font-weight: 600;

    transition: all var(--transition);

}

.pagination a { color: var(--slate); }



.pagination a:hover { background: var(--smoke); color: var(--charcoal); }

.pagination .active { background: var(--coral); color: #fff; }



/* === POLICY / STATIC PAGES === */

.policy-page { padding-top: var(--gap-lg); }

.policy-page h1 { font-size: 1.8rem; margin-bottom: var(--gap-lg); }

.policy-page h2 { font-size: 1.2rem; margin-top: var(--gap-xl); margin-bottom: var(--gap-md); color: var(--coral); }

.policy-page p { margin-bottom: var(--gap-md); line-height: 1.8; color: var(--slate); }

.policy-page ul { padding-left: 24px; margin-bottom: var(--gap-md); }

.policy-page ul li { margin-bottom: var(--gap-sm); color: var(--slate); list-style: disc; line-height: 1.7; }



/* === ABOUT / CONTACT === */

.about-hero {

    text-align: center;

    padding: var(--gap-2xl) 0;

    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);

}

.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--gap-md); }

.about-hero p { font-size: 1.1rem; color: var(--slate); max-width: 640px; margin: 0 auto; line-height: 1.8; }

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: var(--gap-xl);

}

.contact-info-card {

    background: var(--cream);

    border-radius: var(--radius-lg);

    padding: var(--gap-xl);

}

.contact-info-card h3 { font-size: 1.2rem; margin-bottom: var(--gap-lg); }

.contact-info-item {

    display: flex;

    gap: var(--gap-md);

    margin-bottom: var(--gap-lg);

}

.contact-info-item svg { width: 24px; height: 24px; stroke: var(--coral); flex-shrink: 0; margin-top: 2px; }

.contact-info-item strong { display: block; font-family: var(--font-head); margin-bottom: 2px; }

.contact-info-item span { color: var(--slate); font-size: 0.9rem; }



.shop-layout {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: var(--gap-2xl);

    padding-top: var(--gap-lg);

}

.shop-sidebar { 

    position: sticky; 

    top: calc(var(--header-h) + 24px); 

    align-self: flex-start;

}

.sidebar-section { margin-bottom: var(--gap-2xl); }

.sidebar-section h4 { 

    font-family: var(--font-head); 

    font-size: 0.9rem; 

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: var(--gap-md); 

    padding-bottom: 8px;

    border-bottom: 1.5px solid var(--cloud);

    color: var(--charcoal);

}

.sidebar-section ul { list-style: none; }

.sidebar-section ul li { margin-bottom: 6px; }

.sidebar-section ul li a { 

    color: var(--slate); 

    font-size: 0.9rem; 

    transition: all var(--transition);

}

.sidebar-section ul li a:hover, .sidebar-section ul li a.active { color: var(--coral); font-weight: 600; padding-left: 4px; }



.price-range { display: flex; align-items: center; gap: 8px; }

.price-range input { text-align: center; }



.filter-sizes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.filter-size-opt { 

    display: flex; 

    align-items: center; 

    gap: 8px; 

    font-size: 0.82rem; 

    cursor: pointer;

    padding: 4px 0;

}

.filter-size-opt input { width: 14px; height: 14px; accent-color: var(--coral); }

.shop-sidebar ul li a:hover { background: var(--smoke); color: var(--charcoal); }

.shop-sidebar ul li a.active { background: var(--coral-light); color: var(--coral); font-weight: 600; }



/* === RESPONSIVE === */

@media (max-width: 1024px) {

    .products-grid { grid-template-columns: repeat(3, 1fr); }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; }

    .hero-content p { margin: 0 auto var(--gap-xl); }

    .hero-actions { justify-content: center; }

    .hero-visual { margin-top: var(--gap-xl); }

    .hero-img-wrap { width: 60%; }

    .product-detail-grid { grid-template-columns: 1fr; }

    .shop-layout { grid-template-columns: 1fr; }

    .shop-sidebar { position: static; }

    .account-layout { grid-template-columns: 1fr; }

    .account-sidebar { position: static; }

    .contact-grid { grid-template-columns: 1fr; }

}

@media (max-width: 768px) {

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-md); }

    .categories-grid { grid-template-columns: repeat(2, 1fr); }

    .main-nav {

        position: fixed; top: 0; left: -100%; bottom: 0;

        width: 280px;

        height: 100vh;

        overflow-y: auto;

        flex-direction: column;

        background: #fff;

        padding: 80px 32px 32px;

        gap: var(--gap-sm);

        align-items: flex-start;

        box-shadow: var(--shadow-lg);

        transition: left var(--transition);

        z-index: 1001;

    }

    .main-nav.open { left: 0; }

    .hidden-desktop { display: flex !important; flex-direction: column; width: 100%; margin-top: var(--gap-lg); padding-top: var(--gap-md); border-top: 1px solid var(--cloud); gap: var(--gap-md); }

    .mobile-nav-search { display: block !important; margin-top: var(--gap-md); margin-bottom: 0; border-top: none; padding-top: 0; }

    .header-icons > .header-icon { display: none; }

    .main-nav a { font-size: 1.1rem; padding: 10px 0; }

    .mobile-toggle { display: flex; }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .footer-brand { grid-column: 1 / -1; }

    .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }

    .hero-img-wrap { width: 80%; }

    .form-row { grid-template-columns: 1fr; }

    .auth-box { padding: 32px 24px; }

    .section { padding: var(--gap-xl) 0; }

    .header-search { display: none; }

    .features-grid { grid-template-columns: 1fr; }

    .support-banner { flex-direction: column; }

}

@media (max-width: 480px) {

    .products-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }

    .categories-grid { grid-template-columns: 1fr; }

    .hero { min-height: auto; padding-bottom: var(--gap-xl); }

    .hero-img-wrap { width: 100%; }

    body { font-size: 14px; }

    .container { padding: 0 16px; }

    .features-grid { grid-template-columns: 1fr; }

}



/* === FEATURES GRID === */

.features-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: var(--gap-lg);

}

@media (max-width: 768px) {

    .features-grid { grid-template-columns: 1fr; }

}

.feature-card {

    background: #fff;

    border: 1px solid var(--cloud);

    border-radius: var(--radius-lg);

    padding: var(--gap-xl) var(--gap-lg);

    text-align: center;

    transition: transform var(--transition), box-shadow var(--transition);

}

.feature-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);

}

.feature-icon {

    width: 64px; height: 64px;

    margin: 0 auto var(--gap-md);

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

    background: var(--coral-light);

    border-radius: 50%;

}

.feature-icon svg { stroke: var(--coral); fill: none; stroke-width: 1.5; }

.feature-card h4 {

    font-family: var(--font-head);

    font-size: 1rem;

    margin-bottom: var(--gap-sm);

}

.feature-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }



/* === SUPPORT BANNER === */

.support-banner {

    display: flex;

    gap: var(--gap-xl);

    background: #fff;

    border-radius: var(--radius-xl);

    padding: var(--gap-xl);

    box-shadow: var(--shadow-sm);

    align-items: center;

    border: 1px solid var(--cloud);

}

.support-banner__content { flex: 1; }

.support-banner__content h2 { font-size: 1.5rem; margin-bottom: var(--gap-sm); }

.support-banner__content p { color: var(--slate); margin-bottom: var(--gap-lg); max-width: 440px; }

.support-banner__actions { display: flex; gap: var(--gap-md); flex-wrap: wrap; }

.support-banner__trust {

    display: flex;

    flex-direction: column;

    gap: var(--gap-md);

}

.trust-item {

    background: var(--cream);

    border-radius: var(--radius);

    padding: 14px 20px;

}

.trust-item strong { display: block; font-family: var(--font-head); font-size: 0.85rem; color: var(--charcoal); }

.trust-item span { font-size: 0.78rem; color: var(--muted); }



/* === TABLE WRAP === */

.table-wrap { overflow-x: auto; }

.table-wrap table { width: 100%; border-collapse: collapse; }

.table-wrap th, .table-wrap td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--cloud); font-size: 0.9rem; }

.table-wrap th { font-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); background: var(--smoke); }



/* === CART ITEM === */

.cart-item {

    display: flex;

    gap: var(--gap-md);

    align-items: center;

    padding: 20px 24px;

    border-bottom: 1px solid var(--cloud);

}

.cart-item:last-child { border-bottom: none; }

.cart-item__img { width: 80px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--smoke); }

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

.cart-item__name a { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }

.cart-item__name a:hover { color: var(--coral); }

.cart-item__variant { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.cart-item__price { font-size: 0.9rem; color: var(--slate); margin-top: 6px; }

.cart-item__remove { font-size: 0.8rem; color: var(--danger); font-weight: 600; }

.cart-item__remove:hover { text-decoration: underline; }



/* === ACCOUNT LAYOUT === */

.account-layout {

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: var(--gap-xl);

}

.account-sidebar ul li { margin-bottom: 4px; }

.account-sidebar ul li a {

    display: block;

    padding: 10px 16px;

    border-radius: var(--radius-sm);

    font-size: 0.9rem;

    color: var(--slate);

    transition: all var(--transition);

}

.account-sidebar ul li a:hover { background: var(--smoke); }

.account-sidebar ul li a.active { background: var(--coral-light); color: var(--coral); font-weight: 600; }



/* === CARD === */

.card {

    background: #fff;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    border: 1px solid var(--cloud);

}

.card__header {

    padding: 20px 24px;

    border-bottom: 1px solid var(--cloud);

}

.card__header h3 { font-size: 1.1rem; }

.card__body { padding: 24px; }



/* === BADGES === */

.badge { font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.5px; }

.badge--pending { background: rgba(212,168,83,0.15); color: #9A7B2C; }

.badge--processing { background: rgba(74,144,217,0.12); color: var(--coral); }

.badge--shipped { background: rgba(91,160,168,0.15); color: var(--sage-dark); }

.badge--delivered { background: rgba(78,154,92,0.12); color: var(--success); }

.badge--cancelled { background: rgba(217,72,72,0.1); color: var(--danger); }



/* === PAGINATION === */

.pagination {

    display: flex;

    justify-content: center;

    gap: 6px;

    margin-top: var(--gap-xl);

}

.pagination a, .pagination span {

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

    width: 38px; height: 38px;

    border-radius: var(--radius-sm);

    font-family: var(--font-head);

    font-size: 0.85rem;

    font-weight: 600;

    transition: all var(--transition);

}

.pagination a { color: var(--slate); border: 1px solid var(--cloud); }

.pagination a:hover { background: var(--coral); color: #fff; border-color: var(--coral); }

.pagination span.active { background: var(--coral); color: #fff; }



/* text-slate utility */

.text-slate { color: var(--slate); line-height: 1.7; }