:root {
    --primary: #0a0a12;
    --accent: #D4AF37;
    --gold: #D4AF37;
    --rose: #E91E8C;
    --purple: #7C3AED;
    --teal: #0891B2;
    --grad-gold: linear-gradient(135deg, #D4AF37, #C5A059, #B98E40);
    --grad-rose: linear-gradient(135deg, #FF6EB0, #E91E8C, #C2185B);
    --grad-purple: linear-gradient(135deg, #A78BFA, #7C3AED, #5B21B6);
    --grad-teal: linear-gradient(135deg, #22D3EE, #0891B2, #0E7490);
    --grad-emerald: linear-gradient(135deg, #34D399, #059669, #065F46);
    --bg-light: #0d0520;
    --bg-white: #0a0a12;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.58);
    --border-soft: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #0a0a12;
    color: var(--text-main);
}

/* TICKER */
.ticker-wrap {
    background: linear-gradient(90deg, #1a0520, #200a40, #1a0520);
    padding: 12px 0;
    overflow: hidden;
    text-align: center;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #7C3AED, #E91E8C, #D4AF37, #0891B2) 1;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

@keyframes ticker {
    0% {
        transform: translateX(100vw)
    }

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

/* NAVBAR */
.gold-nav {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #7C3AED, #E91E8C, #D4AF37, #0891B2) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: visible;
    min-height: 64px;
    transition: 0.3s;
    padding: 10px 0 !important;
}

.navbar-brand img {
    height: 130px;
    border-radius: 10px;
    margin: -28px 0;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 30px rgba(124, 58, 237, 0.4));
}

.gold-nav .nav-link {
    color: rgba(15, 15, 30, 0.82) !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px !important;
    transition: 0.3s;
}

.gold-nav .nav-link:hover,
.gold-nav .nav-link.active {
    color: #7C3AED !important;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}

.btn-admin-login {
    background: var(--grad-gold);
    color: #0a0a12 !important;
    border-radius: 25px;
    padding: 9px 22px;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-admin-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* HERO */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background: #0a0a12;
}

#heroCarousel .carousel-item img {
    height: 90vh;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    background: var(--grad-gold);
    color: #0a0a12;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.5);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .g1 {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .g2 {
    background: var(--grad-rose);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background: var(--grad-gold);
    color: #0a0a12 !important;
    padding: 16px 42px;
    border-radius: 30px;
    font-weight: 800;
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--accent);
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(10px)
    }
}

/* PAGE HERO (Internal pages) */
.page-hero {
    background: linear-gradient(145deg, #1a0520, #200a40, #0a1030);
    padding: 110px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 55%), radial-gradient(ellipse at 75% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 55%);
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    position: relative;
}

.page-hero h1 .txt-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.55);
    margin-top: 15px;
    font-size: 1.1rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.rainbow-bar {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #E91E8C, #7C3AED, #0891B2);
    border-radius: 10px;
    margin: 20px auto 0;
}

/* SECTIONS (Global Typography) */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.eyebrow.gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow.rose,
.eyebrow.purple,
.eyebrow.teal {
    background: var(--grad-rose);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.color-bar {
    width: 70px;
    height: 4px;
    border-radius: 10px;
    margin: 14px auto 0;
}

.color-bar.gold {
    background: var(--grad-gold);
}

.color-bar.rose {
    background: var(--grad-rose);
}

.color-bar.purple {
    background: var(--grad-purple);
}

.color-bar.teal {
    background: var(--grad-teal);
}

.color-bar.left {
    margin-left: 0;
}

/* STATS */
.stats-section,
.stats-strip {
    background: linear-gradient(135deg, #4C1D95, #7C3AED, #E91E8C, #D4AF37);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border: none;
}

.stats-section::before,
.stats-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 55%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
}

.stat-card {
    text-align: center;
    color: white;
    border: none !important;
    background: transparent !important;
    padding: 20px;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    color: white !important;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-label,
.stat-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CATEGORIES */
.categories-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.category-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.7s ease;
}

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

.cat-overlay-men,
.cat-overlay-women,
.cat-overlay-kids {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: 0.4s;
}

.cat-overlay-men {
    background: linear-gradient(to top, rgba(8, 145, 178, 0.9), transparent 60%);
}

.cat-overlay-women {
    background: linear-gradient(to top, rgba(233, 30, 140, 0.9), transparent 60%);
}

.cat-overlay-kids {
    background: linear-gradient(to top, rgba(124, 58, 237, 0.9), transparent 60%);
}

.cat-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cat-badge.men {
    color: #22D3EE;
    border: 1px solid #22D3EE;
}

.cat-badge.women {
    color: #FF6EB0;
    border: 1px solid #FF6EB0;
}

.cat-badge.kids {
    color: #A78BFA;
    border: 1px solid #A78BFA;
}

.category-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.cat-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card:hover .cat-arrow {
    opacity: 1;
    transform: scale(1);
    background: var(--grad-gold);
    color: #0a0a12;
    border: none;
}

/* FEATURED PRODUCTS & NEW ARRIVALS */
.featured-section {
    padding: 100px 0;
    background: linear-gradient(145deg, #0a0520, #130a2a, #0a1020);
    position: relative;
}

.new-arrivals-section,
.products-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.product-card,
.na-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    text-align: center;
    position: relative;
}

.product-card:hover,
.na-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-card.hover-gold:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.product-card.hover-rose:hover {
    border-color: rgba(233, 30, 140, 0.5);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.15);
}

.product-card.hover-purple:hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
}

.product-card.hover-teal:hover {
    border-color: rgba(8, 145, 178, 0.5);
    box-shadow: 0 15px 40px rgba(8, 145, 178, 0.15);
}

.card-img-wrap {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    background: transparent;
}

.card-img-wrap img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    transition: 0.6s ease;
}

.product-card:hover .card-img-wrap img,
.na-card:hover .card-img-wrap img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.prod-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--grad-gold);
    color: #0a0a12;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 2;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prod-badge.hot {
    background: var(--grad-rose);
    color: white;
}

.prod-badge.new {
    background: var(--grad-purple);
    color: white;
}

.prod-badge.sale {
    background: var(--grad-teal);
    color: white;
}

.product-info,
.na-info {
    padding: 0 20px 25px;
}

.p-cat,
.na-cat {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.p-name,
.na-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
}

.p-price,
.na-price {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 16px;
}

.btn-order {
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 30px;
}

.btn-order:hover {
    background: var(--grad-gold);
    color: #0a0a12 !important;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* FEATURES */
.features-section,
.values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a12, #0d0520);
}

.feature-card,
.val-card {
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: center;
    height: 100%;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::after,
.val-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: 0.4s;
}

.feature-card:hover,
.val-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
}

.feature-card:hover::after,
.val-card:hover::after {
    transform: scaleX(1);
}

.fc1::after,
.vc1::after {
    background: var(--grad-gold);
}

.fc2::after,
.vc2::after {
    background: var(--grad-rose);
}

.fc3::after,
.vc3::after {
    background: var(--grad-purple);
}

.fc4::after,
.vc4::after {
    background: var(--grad-teal);
}

.vc5::after {
    background: var(--grad-emerald);
}

.f-icon,
.val-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.g,
.vi-g {
    background: var(--grad-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.r,
.vi-r {
    background: var(--grad-rose);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.p,
.vi-p {
    background: var(--grad-purple);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.t,
.vi-t {
    background: var(--grad-teal);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

.vi-e {
    background: var(--grad-emerald);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.f-title,
.val-card h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.f-text,
.val-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* REVIEWS */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-soft);
}

.review-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    transition: 0.4s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.reviewer-name {
    font-weight: 700;
    color: white;
    font-size: 1.05rem;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.review-stars {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: inline-block;
}

.review-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
}

.post-review-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    border-radius: 24px;
}

.btn-google-auth {
    background: white;
    color: #0a0a12;
    padding: 14px 36px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-google-auth:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3);
}

.review-form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 20px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
}

.review-form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5);
}

/* CONTACT STRIP */
.contact-strip {
    padding: 90px 0;
    background: linear-gradient(135deg, #0a0520, #130a2a);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    text-align: center;
}

.contact-info-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: 0.4s;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.c-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: white;
}

/* CONTACT CARDS PAGE */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #0a0520, #130a2a, #0a1020, #1a0a18);
}

.contact-card {
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: 0.4s;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.cc1 {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.cc1::after {
    background: var(--grad-gold);
}

.cc1:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 55px rgba(212, 175, 55, 0.15);
}

.cc2 {
    background: rgba(37, 211, 102, 0.07);
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.cc2::after {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.cc2:hover {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 20px 55px rgba(37, 211, 102, 0.15);
}

.cc3 {
    background: rgba(233, 30, 140, 0.07);
    border: 1px solid rgba(233, 30, 140, 0.25);
}

.cc3::after {
    background: var(--grad-rose);
}

.cc3:hover {
    border-color: rgba(233, 30, 140, 0.5);
    box-shadow: 0 20px 55px rgba(233, 30, 140, 0.15);
}

.cc4 {
    background: rgba(8, 145, 178, 0.07);
    border: 1px solid rgba(8, 145, 178, 0.25);
}

.cc4::after {
    background: var(--grad-teal);
}

.cc4:hover {
    border-color: rgba(8, 145, 178, 0.5);
    box-shadow: 0 20px 55px rgba(8, 145, 178, 0.15);
}

.cc-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.9rem;
    color: white;
}

.ci-g {
    background: var(--grad-gold);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}

.ci-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.ci-r {
    background: var(--grad-rose);
    box-shadow: 0 8px 28px rgba(233, 30, 140, 0.45);
}

.ci-t {
    background: var(--grad-teal);
    box-shadow: 0 8px 28px rgba(8, 145, 178, 0.45);
}

.cc-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
}

.cc-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.cc-link {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
    padding: 10px 26px;
    border-radius: 25px;
}

.cc-link.gold {
    background: var(--grad-gold);
    color: #0a0a12 !important;
}

.cc-link.wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
}

.cc-link.rose {
    background: var(--grad-rose);
    color: white !important;
}

.cc-link.teal {
    background: var(--grad-teal);
    color: white !important;
}

.cc-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* MAP SECTION & HOURS */
.map-section {
    padding: 0 0 80px;
    background: linear-gradient(145deg, #0a0520, #130a2a, #0a1020);
}

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.hours-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4C1D95, #7C3AED, #E91E8C, #D4AF37);
    position: relative;
    overflow: hidden;
}

.hours-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
}

.hour-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    color: white;
    transition: 0.3s;
}

.hour-card:hover {
    background: rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.hour-day {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.hour-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CONTACT PAGE */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    transition: 0.3s;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    color: white;
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    background: #06060e;
    color: white;
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to right, #F5A623, #E91E63, #9C27B0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.f-heading {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--grad-gold);
    color: #0a0a12;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), rgba(233, 30, 140, 0.3), transparent);
    margin: 40px 0 20px;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.15);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

@media(max-width:768px) {

    .hero-section,
    #heroCarousel .carousel-item img {
        height: 75vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* MODAL & FORM ENHANCEMENTS */
.bg-premium {
    background-color: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-select.bg-premium {
    color: white !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 1px;
}

.form-select.bg-premium option {
    background-color: #0a0a12;
    color: white;
    padding: 10px;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #ffd700;
}

.border-gold {
    border-color: var(--gold) !important;
}

.gold-text {
    color: var(--gold) !important;
}

/* Tracking widest */
.tracking-widest {
    letter-spacing: 0.15em;
}

/* Overlay for images */
.img-fluid.border-gold {
    border: 2px solid var(--gold);
}

.txt-brand-gradient {
    background: linear-gradient(to right, #F5A623, #E91E63, #9C27B0) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

/* FILTER BAR */
.filter-wrapper {
    margin: 40px 0;
}

.filter-bar {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-btn {
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.filter-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn:hover i {
    transform: scale(1.15);
}

.filter-btn.fa.active {
    background: var(--grad-gold);
    color: #0a0a12;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.filter-btn.fm.active {
    background: var(--grad-teal);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

.filter-btn.fw.active {
    background: var(--grad-rose);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.4);
}

.filter-btn.fk.active {
    background: var(--grad-purple);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.filter-btn.fn {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.2), rgba(124, 58, 237, 0.2));
    border-image: linear-gradient(135deg, #0891B2, #7C3AED) 1;
    border-width: 1px;
    margin-bottom: 10px;
}

.filter-btn.fn:hover {
    background: var(--grad-purple);
    color: white;
    border-color: transparent;
}

/* PREMIUM FOOTER */
.premium-footer {
    background: #05050a;
    padding: 80px 0 30px;
    color: white;
    position: relative;
    border-top: 1px solid var(--border-soft);
}

.premium-footer .footer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: white;
}

.premium-footer .footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none !important;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--grad-gold);
    color: #0a0a12;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom .designer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom .designer span {
    color: #D4AF37;
    font-weight: 700;
}

@media (max-width: 991px) {
    .premium-footer {
        padding: 60px 0 30px;
    }

    .footer-title {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

/* ABOUT SECTION ENHANCEMENTS */
.about-section {
    padding: 100px 0;
    background: #0a0a12;
}

.about-img-wrap {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-img-wrap img {
    width: 100%;
    transition: 1s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.05);
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    /* Fixed from jamming */
    margin-bottom: 24px;
    /* More spacing */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-text:nth-child(2) {
    animation-delay: 0.2s;
}

.about-text:nth-child(3) {
    animation-delay: 0.4s;
}

.about-text:nth-child(4) {
    animation-delay: 0.6s;
}

.about-text:nth-child(5) {
    animation-delay: 0.8s;
}

.about-text:nth-child(6) {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.txt-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* RESPONSIVE MEDIA QUERIES */

/* For smaller tablets and mobile devices */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 80px;
        margin: -10px 0;
    }
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    }
    .page-hero h1 {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }
    .hero-sub {
        font-size: 0.95rem !important;
        margin-bottom: 24px;
    }
    .btn-hero-primary, .btn-hero-outline {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    .ticker-text {
        font-size: 0.75rem;
    }
    
    .cat-overlay-men, .cat-overlay-women, .cat-overlay-kids {
        padding: 20px;
    }
    .category-card h3 {
        font-size: 1.8rem;
    }
    
    .contact-info-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .stat-num {
        font-size: 2.2rem;
    }
    .section-heading {
        font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
    }
    .product-card, .na-card {
        margin-bottom: 15px;
    }
    .premium-footer {
        text-align: center;
    }
    .footer-social-links {
        justify-content: center;
        margin-bottom: 20px;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .category-card img {
        height: 300px;
    }
    .card-img-wrap img {
        height: 250px;
    }
    .feature-card, .val-card {
        padding: 20px 10px;
    }
    .f-icon, .val-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 60px;
        margin: 0;
        margin-right: 5px;
    }
    .navbar-brand .txt-brand-gradient {
        font-size: 1.2rem !important;
    }
    .hero-section {
        height: 80vh;
    }
    #heroCarousel .carousel-item img {
        height: 80vh;
    }
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem) !important;
    }
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }
    .ticker-text {
        font-size: 0.65rem;
    }
    .d-flex.justify-content-center.gap-3.flex-wrap {
        flex-direction: column;
        gap: 10px !important;
        align-items: stretch;
    }
    .btn-hero-primary, .btn-hero-outline, .hero-section .btn {
        width: 100%;
        margin-bottom: 0px;
        text-align: center;
        justify-content: center;
    }
    .stats-section .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .features-section .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
    /* Fixed spacing for 2-column mobile grid */
    .featured-section .col-6, .new-arrivals-section .col-6, .products-section .col-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .row.g-3 {
        margin-left: -5px;
        margin-right: -5px;
    }
    .card-img-wrap img {
        height: 180px;
    }
    .category-card img {
        height: 250px;
    }
    .p-name, .na-name {
        font-size: 0.9rem;
    }
    .p-price, .na-price {
        font-size: 1.1rem;
    }
    .btn-order {
        padding: 8px 10px;
        font-size: 0.75rem;
        width: 100%;
    }
    .product-info, .na-info {
        padding: 0 10px 15px;
    }
}