/* ==========================================
   Jewellery & Accessories Hub - Shopping Platform
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ==========================================
   CSS Variables — Shopping Platform Theme
   ========================================== */
:root {
    /* Brand Colors */
    --primary:        #7C3AED;   /* vivid purple */
    --primary-dark:   #5B21B6;
    --primary-light:  #EDE9FE;
    --accent:         #F97316;   /* coral/orange */
    --accent-dark:    #EA580C;
    --accent-light:   #FFF7ED;

    /* Backgrounds */
    --bg-main:        #F3F4F6;   /* light grey page bg */
    --bg-white:       #FFFFFF;
    --bg-dark:        #1E1B2E;   /* deep purple-black for dark sections */
    --bg-section-alt: #F9F7FF;   /* very light lavender */

    /* Text */
    --text-dark:      #1A1A2E;
    --text-medium:    #374151;
    --text-muted:     #6B7280;
    --text-white:     #FFFFFF;

    /* Borders & Shadows */
    --border-light:   rgba(124, 58, 237, 0.12);
    --border-hover:   rgba(124, 58, 237, 0.4);
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:      0 8px 24px rgba(0,0,0,0.08);
    --shadow-card:    0 4px 16px rgba(124,58,237,0.07);
    --shadow-hover:   0 12px 32px rgba(124,58,237,0.14);

    /* Typography */
    --font-heading:   'Poppins', sans-serif;
    --font-body:      'Inter', sans-serif;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    --gradient-accent:  linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --gradient-hero:    linear-gradient(135deg, #1E1B2E 0%, #3730A3 50%, #7C3AED 100%);
    --gradient-badge:   linear-gradient(135deg, #F97316 0%, #EA580C 100%);

    /* Misc */
    --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm:        6px;
    --radius-md:        10px;
    --radius-lg:        16px;
    --radius-full:      9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 70px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ==========================================
   Layout Utilities
   ========================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 640px) {
    .container { padding: 0 0.875rem; }
}

section { padding: 4.5rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.section-header .section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

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

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

.btn-white {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background: #128c7e;
}

/* ==========================================
   Header / Navigation
   ========================================== */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 6px 2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.nav-icon:hover { color: var(--primary); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.burger div {
    width: 22px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: 72%;
        max-width: 280px;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 2rem;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

    .nav-links.active { right: 0; }
    .burger { display: flex; }

    .burger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 5px); }
    .burger.toggle .line2 { opacity: 0; }
    .burger.toggle .line3 { transform: rotate(45deg) translate(-5px, -5px); }
}

/* ==========================================
   Page Banner (Inner Pages)
   ========================================== */
.page-banner {
    background: var(--gradient-hero);
    padding: 4rem 0 3.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
}

@media (max-width: 640px) {
    .page-banner h1 { font-size: 2rem; }
    .page-banner { padding: 3rem 0 2.5rem; }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
}

.hero-shape-1 {
    width: 500px; height: 500px;
    top: -150px; right: -150px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
}

.hero-shape-2 {
    width: 300px; height: 300px;
    bottom: -100px; left: -80px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
}

.hero-shape-3 {
    width: 200px; height: 200px;
    top: 40%; left: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 0.18;
    animation: kenBurns 12s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.07); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    color: #fff;
    padding: 2rem 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.2);
    border: 1px solid rgba(249,115,22,0.35);
    color: #FED7AA;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: #FDBA74;
    position: relative;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #FDBA74;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-item .stat-num { font-size: 1.4rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
}

/* ==========================================
   Categories Section (Homepage)
   ========================================== */
.categories-section {
    background: var(--bg-white);
}

.categories-scroll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .categories-scroll { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .categories-scroll { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
}

.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 200px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.category-card-img {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,27,46,0.85) 0%, rgba(30,27,46,0.15) 55%, transparent 100%);
}

.category-card-label {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 1.1rem;
    color: #fff;
}

.category-card-label h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.category-card-label span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

@media (max-width: 640px) {
    .category-card { height: 160px; }
    .category-card-label h3 { font-size: 0.85rem; }
}

/* ==========================================
   Platform Info Section (Replaces Brand Highlight)
   ========================================== */
.platform-info {
    background: var(--bg-section-alt);
}

.platform-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .platform-info-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.platform-info-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.platform-info-img img {
    width: 100%;
    aspect-ratio: 1.2;
    object-fit: cover;
}

.platform-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.platform-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.platform-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
}

.platform-feature-item i {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ==========================================
   Products Grid — Shopping Platform Style
   ========================================== */
.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: var(--bg-white);
    border: 1.5px solid rgba(124,58,237,0.2);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}

/* --- PRODUCT GRID: 4 col desktop → 3 tablet → ALWAYS 2 on mobile --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
}

/* Force 2 per row on ALL small screens — never allow 1 column */
@media (max-width: 480px) {
    .container { padding: 0 0.625rem !important; }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
}
@media (max-width: 360px) {
    .container { padding: 0 0.5rem !important; }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }
}

/* ==========================================
   Product Card — Platform Style
   ========================================== */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.product-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .product-image-container { height: 160px; }
}

@media (max-width: 480px) {
    .product-image-container { height: 140px; }
}

@media (max-width: 360px) {
    .product-image-container { height: 120px; }
}

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

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

.product-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--gradient-badge);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    z-index: 3;
}

.product-img-dots {
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 5px; z-index: 3;
}

.img-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.img-dot.active {
    background: var(--accent);
    transform: scale(1.4);
}

.product-card-info {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-cat {
    font-size: 0.68rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #F3F4F6;
    gap: 0.5rem;
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-card-btn {
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.product-card-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .product-card-info { padding: 0.625rem; }
    .product-card-cat { font-size: 0.62rem; margin-bottom: 2px; }
    .product-card-title { font-size: 0.8rem; margin-bottom: 3px; }
    .product-card-desc { display: none; } /* hide desc on mobile to save space */
    .product-card-price { font-size: 0.88rem; }
    .product-card-btn { padding: 5px 8px; font-size: 0.65rem; }
    .product-card-footer { padding-top: 0.5rem; gap: 4px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .product-card-info { padding: 0.5rem; }
    .product-card-title { font-size: 0.75rem; }
    .product-card-price { font-size: 0.82rem; }
    .product-card-btn { padding: 4px 7px; font-size: 0.62rem; }
}

@media (max-width: 360px) {
    .product-card-info { padding: 0.4rem; }
    .product-card-title { font-size: 0.72rem; }
    .product-card-price { font-size: 0.78rem; }
    .product-card-btn { padding: 4px 6px; font-size: 0.6rem; }
}

/* ==========================================
   Why Choose Platform
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

.why-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #fff;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================
   Instagram Gallery
   ========================================== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; } }

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.insta-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(124,58,237,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
    font-size: 1.4rem;
}

.insta-item:hover img { transform: scale(1.08); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ==========================================
   WhatsApp CTA
   ========================================== */
.whatsapp-cta {
    background: var(--gradient-hero);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(249,115,22,0.12);
    pointer-events: none;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-content h2 span { color: #FDBA74; }

.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ==========================================
   Product Detail Page
   ========================================== */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.25rem;
    }
}

.detail-gallery-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-main-img-box {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
    cursor: zoom-in;
    background: #f5f5f5;
    border: 1px solid #F3F4F6;
}

.detail-main-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    transform-origin: center;
}

.detail-thumbs-panel {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.detail-thumb-item {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.detail-thumb-item.active, .detail-thumb-item:hover {
    border-color: var(--primary);
}

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

.detail-content-panel { display: flex; flex-direction: column; }

.detail-p-cat {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-p-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.detail-p-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.detail-p-desc-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.detail-p-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.detail-p-specs {
    border-top: 1px solid #F3F4F6;
    margin-bottom: 2rem;
}

.detail-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.875rem;
}

.detail-spec-key { color: var(--text-muted); }
.detail-spec-val { color: var(--text-dark); font-weight: 600; }

/* ==========================================
   Reviews Page
   ========================================== */
.reviews-grid-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) { .reviews-grid-panel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid-panel { grid-template-columns: 1fr; } }

.review-item-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.review-item-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-card-stars {
    color: #F59E0B;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.review-card-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-card-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-profile-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.review-profile-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.write-review-panel {
    max-width: 580px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.write-review-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

@media (max-width: 480px) { .write-review-panel { padding: 1.5rem; } }

/* ==========================================
   About Page
   ========================================== */
.about-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (max-width: 900px) {
    .about-story-row { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
}

.story-img-column {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-img-column img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}

.story-text-column h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.story-text-column p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.quote-highlight {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    line-height: 1.5;
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 2.5rem;
}

@media (max-width: 900px) { .contact-wrapper { grid-template-columns: 1fr; } }

.contact-info-block {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-methods { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-method-item { display: flex; gap: 1rem; }

.contact-icon {
    width: 46px; height: 46px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-muted);
}

.contact-details p, .contact-details a {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-details a:hover { color: var(--primary); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-link {
    width: 38px; height: 38px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-card);
}

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

/* ==========================================
   Footer
   ========================================== */
footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 4rem 0 1.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.footer-brand .logo-text { color: #fff; font-size: 1.3rem; }
.footer-brand .logo-sub { color: var(--accent); }

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 1rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col ul a {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 8px;
    margin-bottom: 0.875rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    align-items: flex-start;
}

.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

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

@media (max-width: 640px) {
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ==========================================
   Order Form Modal
   ========================================== */
.order-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 1rem;
}

.order-overlay.active {
    display: flex;
    opacity: 1;
}

.order-container {
    background: var(--bg-white);
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    transform: translateY(-20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-overlay.active .order-container { transform: translateY(0); }

@media (max-width: 480px) { .order-container { padding: 1.75rem 1.25rem; } }

.order-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.order-close:hover { background: var(--primary); color: #fff; }

.order-header { text-align: center; margin-bottom: 1.75rem; }

.order-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.order-header p { font-size: 0.83rem; color: var(--text-muted); }

.order-product-badge {
    background: var(--bg-section-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.75rem;
}

.order-prod-img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; }
.order-prod-details h4 { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.order-prod-details p { font-size: 0.85rem; color: var(--accent-dark); font-weight: 700; }

.form-group { margin-bottom: 1.1rem; }

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-medium);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid #E5E7EB;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    color: var(--text-dark);
    background: var(--bg-white);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.qty-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-sm);
    width: 130px;
    overflow: hidden;
}

.qty-btn {
    width: 40px; height: 40px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-medium);
}

.qty-btn:hover { background: var(--primary); color: #fff; }
.qty-val { flex-grow: 1; text-align: center; font-weight: 700; font-size: 1rem; }
.order-submit-btn { width: 100%; margin-top: 1.5rem; border-radius: var(--radius-md); padding: 0.9rem; }
