/* ============================================================
   NEXUS CALCUTTA — Premium Garments E-commerce
   LIGHT THEME — Navy Blue + Gold (from logo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F8FA;
    --bg-tertiary: #EEF1F6;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F7F8FA;
    --border-light: #E2E6ED;
    --border-medium: #D0D5DD;
    
    --navy-primary: #1B2A4A;
    --navy-light: #2C3E6B;
    --navy-dark: #0F1C33;
    --navy-gradient: linear-gradient(135deg, #1B2A4A, #2C3E6B);
    
    --gold-primary: #C5A55A;
    --gold-light: #D4B96E;
    --gold-dark: #A68B3E;
    --gold-gradient: linear-gradient(135deg, #C5A55A, #D4B96E);
    --gold-gradient-hover: linear-gradient(135deg, #D4B96E, #E0C97E);
    
    --text-primary: #1B2A4A;
    --text-secondary: #4A5568;
    --text-muted: #8896AA;
    --text-gold: #A68B3E;
    
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    
    --shadow-sm: 0 1px 3px rgba(27,42,74,0.06), 0 1px 2px rgba(27,42,74,0.04);
    --shadow-md: 0 4px 12px rgba(27,42,74,0.08);
    --shadow-lg: 0 10px 30px rgba(27,42,74,0.1);
    --shadow-gold: 0 4px 15px rgba(197,165,90,0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --container-max: 1280px;
    --nav-height: 75px;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy-primary); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 15px;
    color: var(--navy-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 30px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.nav-logo-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links li a {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 2px;
}

/* ── Section UI Elements ── */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197,165,90,0.1);
    color: var(--gold-dark);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(197,165,90,0.2);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--navy-primary);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero Carousel ── */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 550px;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.carousel-slides { position: relative; width: 100%; height: 100%; }

.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.carousel-slide.active { opacity: 1; z-index: 1; }

.carousel-slide img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
}

.carousel-slide picture {
    position: absolute;
    width: 100%; height: 100%;
}

.carousel-slide picture img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    display: none;
}

.carousel-content {
    display: none;
}

.carousel-content-visible {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 80px;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.carousel-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    line-height: 1.15;
}

.carousel-content h1 .gold-text {
    color: var(--gold-light);
}

.carousel-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

.carousel-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-dot.active {
    background: var(--gold-primary);
    box-shadow: 0 0 12px rgba(197,165,90,0.5);
    transform: scale(1.2);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-arrow {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: auto;
}

.carousel-arrow:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: white;
    transform: scale(1.1);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(197,165,90,0.35);
}

.btn-navy {
    background: var(--navy-gradient);
    color: #fff;
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(27,42,74,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
}

.btn-outline:hover {
    background: var(--navy-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-dark);
    border: 2px solid var(--gold-primary);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-sm {
    background: var(--whatsapp-green);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-whatsapp-sm:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-1px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ── Spotlight Section ── */
.section-spotlight {
    background: #FDF8F0;
    padding: 0 0 80px;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.spotlight-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(139, 92, 24, 0.08); /* Warm shadow */
    position: relative;
    border: 1px solid rgba(139, 92, 24, 0.05);
}

.spotlight-badge {
    display: none;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.spotlight-image {
    padding: 40px;
}

.spotlight-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition-slow);
}

.spotlight-card:hover .spotlight-image img {
    transform: scale(1.02);
}

.spotlight-content {
    padding: 60px 80px 60px 20px;
}

.spotlight-offer-badge {
    display: inline-block;
    background: #EAB308; /* Yellow from reference */
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.spotlight-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.spotlight-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.spotlight-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 40px;
}

.spotlight-price .mrp {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.spotlight-price .sale {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy-primary);
    font-family: var(--font-heading);
}

.spotlight-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .spotlight-grid { grid-template-columns: 1fr; }
    .spotlight-content { padding: 40px; text-align: center; }
    .spotlight-desc { margin-left: auto; margin-right: auto; }
    .spotlight-price { justify-content: center; }
    .spotlight-actions { justify-content: center; }
    .spotlight-title { font-size: 2.8rem; }
}

/* ── Premium Product Cards (Nexus Calcutta Style) ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    transition: var(--transition-slow);
    cursor: pointer;
    background: transparent;
}

.product-card-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.product-card:hover .product-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27,42,74,0.12);
    border-color: rgba(197,165,90,0.3);
}

.product-card-image {
    position: relative;
    width: 100%;
    padding-top: 130%; /* Portrait aspect ratio */
    overflow: hidden;
    background: #f9fafb;
}

.product-card-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 4rem;
}

/* Shine Effect */
.product-card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-card-shine {
    left: 150%;
}

/* Overlay & View Details */
.product-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(27, 42, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-view {
    padding: 10px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    color: var(--navy-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card:hover .product-card-view {
    transform: translateY(0);
}

/* Featured Badge */
.product-card-featured {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--gold-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(197,165,90,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-card-featured .star {
    font-size: 0.8rem;
    color: white;
}

.product-card-price-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 0.9rem;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-card-price-badge {
    transform: translateY(0);
    opacity: 1;
}

.product-card-info {
    padding: 22px 20px;
    text-align: left; /* Left alignment for modern look */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.product-card-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-card-cat {
    font-size: 0.8rem;
    color: var(--text-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.product-card-price-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.product-card-actions {
    display: flex;
    margin-top: auto;
}

.product-card-actions .btn-whatsapp-sm {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp-green);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.15);
}

.product-card:hover .product-card-actions .btn-whatsapp-sm {
    background: var(--whatsapp-dark);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.product-card-actions .btn-whatsapp-sm svg {
    transition: transform 0.3s ease;
}

.product-card-actions .btn-whatsapp-sm:hover svg {
    transform: rotate(10deg) scale(1.1);
}

/* ── Product Detail Page ── */
.product-detail {
    padding-top: calc(var(--nav-height) + 20px);
    min-height: 100vh;
}

.breadcrumb {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--navy-primary); }
.breadcrumb .separator { color: var(--text-muted); }
.breadcrumb .current { color: var(--navy-primary); font-weight: 500; }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 30px 0 60px;
}

/* Image Gallery */
.product-gallery {
    position: sticky;
    top: calc(var(--nav-height) + 30px);
}

.product-main-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-tertiary);
    position: relative;
    cursor: zoom-in;
    border: 1px solid var(--border-light);
}

.product-main-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-main-image:hover img { transform: scale(1.05); }

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.product-thumb {
    width: 80px; height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-light);
    transition: var(--transition);
    flex-shrink: 0;
    opacity: 0.6;
}

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--gold-primary);
    opacity: 1;
}

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

/* Product Info */
.product-info { padding: 10px 0; }

.product-info h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 10px;
    color: var(--navy-primary);
}

.product-category-tag {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--navy-primary);
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.product-price-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    margin-bottom: 25px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-primary);
    font-family: var(--font-heading);
}

.product-price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.product-specs { margin-bottom: 25px; }

.product-specs h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--navy-primary);
    font-family: var(--font-heading);
}

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

.specs-table tr { border-bottom: 1px solid var(--border-light); }

.specs-table td { padding: 12px 15px; font-size: 0.95rem; }

.specs-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.specs-table td:last-child { color: var(--text-primary); }

.specs-table tr:nth-child(even) { background: var(--bg-secondary); }

.product-description { margin-bottom: 30px; }

.product-description h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--navy-primary);
    font-family: var(--font-heading);
}

.product-description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-enquiry { margin-bottom: 25px; }

.product-enquiry .btn-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-share span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.share-icons { display: flex; gap: 10px; }

.share-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-card);
}

.share-icon:hover {
    border-color: var(--navy-primary);
    color: var(--navy-primary);
    background: var(--bg-tertiary);
}

/* Related Products */
.related-products {
    padding: 60px 0 80px;
    border-top: 1px solid var(--border-light);
}

.related-products h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--navy-primary);
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.section-navy { background: var(--navy-primary); color: white; }
.section-navy .section-title { color: white; }
.section-navy .section-subtitle { color: rgba(255,255,255,0.75); }
.section-navy h2 { color: white; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27,42,74,0.05), rgba(197,165,90,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--navy-primary);
    font-family: var(--font-heading);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.category-card:hover { border-color: var(--gold-primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(27,42,74,0.85));
}

.category-card-overlay h3 { font-size: 1.2rem; color: var(--gold-light); }
.category-card-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* Testimonials */
.testimonials-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 30px;
}

.testimonial-slide.active { display: block; animation: fadeIn 0.5s ease; }

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.4;
    position: absolute;
    top: -20px; left: -10px;
    font-family: var(--font-heading);
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.testimonial-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 3px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.testimonial-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.testimonial-dot.active { background: var(--gold-primary); }

/* ── Gallery ── */
.gallery-grid {
    columns: 4 250px;
    column-gap: 15px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.gallery-item:hover { border-color: var(--gold-primary); transform: scale(1.02); }

.gallery-item img {
    width: 100%; display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(27,42,74,0.8));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay p { color: white; font-size: 0.9rem; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(27,42,74,0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%; max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover { background: var(--gold-primary); }

/* ── About Page ── */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover { border-color: var(--gold-primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--navy-primary);
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 0.9rem;
}

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy-primary);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
    background: white;
}

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

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27,42,74,0.06), rgba(197,165,90,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-container {
    margin-top: 25px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 300px;
    box-shadow: var(--shadow-sm);
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Page Headers ── */
.page-header {
    padding: calc(var(--nav-height) + 50px) 0 50px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-tertiary), var(--bg-primary));
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.page-header p { color: var(--text-secondary); font-size: 1.1rem; }

/* ── Filter Tabs ── */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
    color: white;
}

/* Search */
.search-box {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 25px 15px 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box input:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}

.search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.page-link:hover,
.page-link.active {
    background: var(--navy-primary);
    color: white;
    border-color: var(--navy-primary);
}

/* ── Footer ── */
.footer {
    background: var(--navy-primary);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 15px; }
.footer-brand .nav-logo-text { color: white; }
.footer-brand .nav-logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand .nav-logo img { border-color: var(--gold-primary); }

.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: white;
    border-color: var(--gold-primary);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item .icon { color: var(--gold-light); font-size: 1.1rem; margin-top: 2px; }
.footer-contact-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-bottom span { color: var(--gold-light); }

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 999;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Alerts ── */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ── No Results ── */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results .icon { font-size: 3rem; margin-bottom: 15px; }
.no-results h3 { font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 8px; }

/* ── Animations ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* ── SkillHub-Style Dropdown Menu ── */
    .navbar {
        padding: 0 20px;
        height: 65px;
        position: fixed;
    }
    .nav-logo-text { font-size: 1.2rem; }
    .nav-logo-sub { font-size: 0.55rem; letter-spacing: 2px; }
    .nav-logo img { height: 40px; width: 40px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 15px 20px 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(27,42,74,0.12);
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
        z-index: 999;
        border-top: 1px solid var(--border-light);
    }
    .nav-links.active { display: flex; }
    .nav-links li a {
        font-size: 1rem;
        padding: 14px 15px;
        color: var(--text-secondary);
        display: block;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid var(--border-light);
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }
    .nav-links li a:hover,
    .nav-links li a.active {
        background: var(--bg-secondary);
        color: var(--navy-primary);
    }
    .hamburger { display: block; z-index: 1001; }

    /* ── Carousel Mobile ── */
    .hero-carousel { height: 70vh; min-height: 400px; margin-top: 65px; }
    .carousel-content { display: none; } /* Hide text on carousel for mobile */
    .carousel-overlay { display: none; }
    .carousel-arrows { padding: 0 10px; }
    .carousel-arrow { width: 38px; height: 38px; font-size: 1rem; }
    .carousel-dots { bottom: 20px; gap: 8px; }
    .carousel-dot { width: 10px; height: 10px; }

    /* ── Spotlight Mobile Fix ── */
    .section-spotlight { 
        background: #FDF8F0;
        padding: 0 0 50px; 
        margin-top: 0;
    }
    .spotlight-card { border-radius: 20px; }
    .spotlight-badge { top: -12px; font-size: 0.75rem; padding: 6px 18px; }
    .spotlight-grid { grid-template-columns: 1fr; }
    .spotlight-image { padding: 25px 20px 15px; display: flex; justify-content: center; }
    .spotlight-image img {
        width: 100%;
        max-width: 350px;
        border-radius: 18px;
        margin: 0 auto;
    }
    .spotlight-content {
        padding: 20px 25px 30px;
        text-align: center;
    }
    .spotlight-title { font-size: 2rem; text-align: center; }
    .spotlight-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 1rem;
    }
    .spotlight-price { justify-content: center; }
    .spotlight-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .spotlight-actions .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.05rem;
    }
    .spotlight-actions .btn-gold {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
    .spotlight-offer-badge { margin-bottom: 15px; }

    /* ── Sections ── */
    .section { padding: 50px 0; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 10px; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 35px; padding: 0 10px; }
    .section-badge { font-size: 0.7rem; letter-spacing: 1.5px; padding: 5px 12px; margin-bottom: 15px; }

    /* ── Products Grid ── */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card-inner { border-radius: 14px; }
    .product-card-image { padding-top: 120%; }
    .product-card-info { padding: 14px 12px; }
    .product-card-name { font-size: 0.9rem; min-height: auto; }
    .product-card-meta { margin-bottom: 12px; }
    .product-card-cat { font-size: 0.7rem; }
    .product-card-price-text { font-size: 0.95rem; }
    .product-card-actions .btn-whatsapp-sm {
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    /* ── Product Detail ── */
    .product-detail-grid { grid-template-columns: 1fr; gap: 25px; }
    .product-gallery { position: static; }
    .product-info h1 { font-size: 1.6rem; }
    .product-price { font-size: 1.6rem; }
    .product-price-box { padding: 15px 18px; }
    .product-thumbnails { gap: 8px; }
    .product-thumb { width: 60px; height: 75px; }

    /* ── Features ── */
    .features-grid { grid-template-columns: 1fr; gap: 15px; }
    .feature-card { padding: 30px 25px; }

    /* ── Categories ── */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* ── Footer ── */
    .footer { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }

    /* ── Other Pages ── */
    .contact-grid { grid-template-columns: 1fr; gap: 25px; }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-grid { columns: 2 150px; column-gap: 10px; }

    /* ── Page Header ── */
    .page-header { padding: calc(65px + 35px) 0 35px; }
    .page-header h1 { font-size: 1.8rem; }

    /* ── WhatsApp Float ── */
    .whatsapp-float { bottom: 20px; right: 15px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 26px; height: 26px; }

    /* ── Testimonials ── */
    .testimonial-text { font-size: 1rem; }
    .testimonial-slide { padding: 20px 10px; }

    /* ── Contact Form ── */
    .contact-form { padding: 25px 20px; }

    /* ── Breadcrumb ── */
    .breadcrumb { font-size: 0.8rem; padding: 10px 0; }

    /* ── Buttons ── */
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .btn-large { padding: 14px 28px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-card-info { padding: 10px 8px; }
    .product-card-name { font-size: 0.82rem; -webkit-line-clamp: 1; min-height: auto; }
    .product-card-meta { margin-bottom: 8px; flex-direction: column; align-items: flex-start; gap: 3px; }
    .product-card-cat { font-size: 0.65rem; }
    .product-card-price-text { font-size: 0.9rem; }
    .product-card-actions .btn-whatsapp-sm { padding: 8px 10px; font-size: 0.72rem; }
    .hero-carousel { height: 55vh; min-height: 320px; }
    .spotlight-title { font-size: 1.6rem; }
    .spotlight-desc { font-size: 0.9rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-card { padding: 18px 12px; }
    .stat-number { font-size: 1.8rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .section { padding: 40px 0; }
    .container { padding: 0 15px; }
    .footer-grid { gap: 20px; }
    .filter-tabs { gap: 6px; padding: 0 10px; }
    .filter-tab { padding: 8px 16px; font-size: 0.8rem; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-primary); }

/* ── Selection ── */
::selection { background: var(--navy-primary); color: white; }
