/* ════════════════════════════════════════════════════════
   RIJAL — Premium Men's Grooming Brand
   Design System: Black + White + Steel Blue
   ════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-card-hover: #151515;

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;

    /* Steel Blue palette */
    --copper: #8ba8b6;
    --copper-light: #a3bfcc;
    --copper-dark: #6e8f9e;
    --copper-glow: rgba(139, 168, 182, 0.25);
    --copper-glow-strong: rgba(139, 168, 182, 0.5);
    --copper-gradient: linear-gradient(135deg, #8ba8b6, #a3bfcc, #6e8f9e);

    --font-primary: 'Outfit', 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

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

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

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Bilingual text display ─── */
.name-en, .desc-en, .title-en, .tagline-en, .badge-text {
    display: block;
    font-size: 0.65em;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    direction: ltr;
    text-align: center;
    margin-top: 2px;
}

.name-ar, .desc-ar, .title-ar, .tagline-ar {
    display: block;
}

/* ════════════════════════════════════════════════════════
   LOADING SCREEN
   ════════════════════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo {
    width: 120px;
    height: 60px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
}

.loader-line-fill {
    width: 0%;
    height: 100%;
    background: var(--copper-gradient);
    border-radius: 4px;
}

.loader-text {
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    direction: ltr;
}

/* ════════════════════════════════════════════════════════
   PARTICLE CANVAS
   ════════════════════════════════════════════════════════ */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(193, 127, 78, 0.1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    width: 100px;
    height: 45px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-links a span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
    direction: ltr;
    text-align: center;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--copper-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--copper-light);
}

.nav-links a:hover span {
    color: var(--copper);
}

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

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    right: 0;
    transition: var(--transition-smooth);
}

.hamburger span:nth-child(1) { top: 0; width: 100%; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 75%; }
.hamburger span:nth-child(3) { bottom: 0; width: 50%; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    width: 100%;
    transform: translateY(-50%) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(193, 127, 78, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    opacity: 0;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--copper);
}

.badge-text {
    font-size: 0.7rem !important;
    letter-spacing: 0.35em;
    color: var(--copper-light) !important;
    direction: ltr;
    margin-top: 0 !important;
}

.hero-title {
    font-size: clamp(4.5rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 1.05;
    margin-top: -20px;
    margin-bottom: 24px;
}

.ar-title {
    display: block;
    font-size: 1em;
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #8ba8b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(139, 168, 182, 0.2));
    line-height: 1.3;
    padding-bottom: 10px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
    opacity: 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--copper), transparent);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--copper);
    transform: rotate(45deg);
}

.hero-tagline {
    margin-bottom: 48px;
    opacity: 0;
}

.tagline-ar {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.tagline-en {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    direction: ltr;
}

/* CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--copper);
    border-radius: 60px;
    color: var(--text-primary);
    background: transparent;
    transition: var(--transition-smooth);
    opacity: 0;
    cursor: pointer;
    margin-bottom: 60px;
}

.hero-cta:hover {
    background: var(--copper);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(193, 127, 78, 0.3);
}

.hero-cta svg {
    transform: scaleX(-1);
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: scaleX(-1) translateX(4px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--copper);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* ════════════════════════════════════════════════════════
   SHIMMER BUTTON
   ════════════════════════════════════════════════════════ */
.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transition: none;
}

.shimmer-btn:hover::before {
    animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
    from { right: -100%; }
    to { right: 100%; }
}

/* ════════════════════════════════════════════════════════
   SECTION STYLES (shared)
   ════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
    direction: ltr;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title .title-ar {
    display: block;
}

.section-title .title-en {
    display: block;
    font-size: 0.4em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 400;
    direction: ltr;
    text-align: center;
    margin-top: 4px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-divider .divider-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--copper), transparent);
}

.section-divider .divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--copper);
    transform: rotate(45deg);
}

/* ════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ════════════════════════════════════════════════════════ */
.products {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(193, 127, 78, 0.2), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(193, 127, 78, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px var(--copper-glow),
        inset 0 1px 0 rgba(193, 127, 78, 0.2);
}

.product-image-wrap {
    position: relative;
    padding: 32px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    overflow: hidden;
}

.product-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--copper-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.product-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--copper);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.05em;
}

.product-badge.new-badge {
    background: linear-gradient(135deg, #c17f4e, #d4975f);
}

.product-info {
    padding: 28px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-name .name-ar {
    display: block;
}

.product-name .name-en {
    font-size: 0.6em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 400;
    direction: ltr;
    text-align: start;
    margin-top: 4px;
}

.product-desc {
    margin-bottom: 20px;
}

.product-desc .desc-ar {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-desc .desc-en {
    font-size: 0.6em;
    text-align: start;
    margin-top: 6px;
    color: var(--text-muted);
}

/* Product Pricing */
.meta-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price, .showcase-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--copper);
    direction: ltr;
}

.delivery-badge {
    font-size: 0.65rem;
    background: rgba(37, 211, 102, 0.15); /* WhatsApp Green tint */
    color: #4ade80;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: normal;
}

.showcase-price-box {
    margin-bottom: 24px;
}
.showcase-price-box .price-amount {
    font-size: 1.8rem;
}
.showcase-price-box .delivery-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
}

.delivery-en {
    font-size: 0.85em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    direction: ltr;
    opacity: 0.8;
}

.product-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-size {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--copper-light);
    letter-spacing: 0.1em;
    direction: ltr;
}

.product-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--copper);
    color: var(--bg-primary);
    border-radius: 30px;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.product-order:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 127, 78, 0.4);
}

/* ─── Products Showcase ─── */
.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.products-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom left, rgba(193, 127, 78, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-image-wrap {
    position: relative;
    z-index: 1;
}

.showcase-image {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.showcase-text {
    position: relative;
    z-index: 1;
}

.showcase-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-text h3 .name-en {
    text-align: start;
}

.showcase-text p {
    margin-bottom: 28px;
}

.showcase-text .desc-ar {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.showcase-text .desc-en {
    text-align: start;
    margin-top: 8px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--copper);
    color: var(--bg-primary);
    border-radius: 30px;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.showcase-btn:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 168, 182, 0.3);
}

/* ════════════════════════════════════════════════════════
   ALBUM / GALLERY SECTION
   ════════════════════════════════════════════════════════ */
.album {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.album::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139, 168, 182, 0.2), transparent);
}

.album-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.album-item {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.album-item-large {
    grid-row: span 2;
}

.album-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.album-image-wrap:hover {
    border-color: rgba(139, 168, 182, 0.3);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 30px var(--copper-glow);
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.album-image-wrap:hover .album-image {
    transform: scale(1.06);
    filter: brightness(0.7);
}

.album-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
}

.album-image-wrap:hover .album-overlay {
    opacity: 1;
}

.album-overlay svg {
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.album-image-wrap:hover .album-overlay svg {
    transform: scale(1);
}

/* ─── Lightbox ─── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--copper-light);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: #000;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    direction: ltr;
}

/* ════════════════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════════════════ */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(193, 127, 78, 0.2), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.about-block {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.about-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--copper-gradient);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-block:hover {
    transform: translateY(-6px);
    border-color: rgba(193, 127, 78, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.about-block:hover::before {
    opacity: 1;
}

.about-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(193, 127, 78, 0.1);
    border-radius: 50%;
    color: var(--copper-light);
}

.about-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-block h3 .name-en {
    text-align: center;
}

.about-block p .desc-ar {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-block p .desc-en {
    text-align: center;
    margin-top: 8px;
}

/* Stats */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 48px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--copper-light);
    direction: ltr;
    display: inline;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 900;
    color: var(--copper-light);
    direction: ltr;
}

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

.stat-label .name-en {
    font-size: 0.7em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
}

/* ════════════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════════════ */
.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(193, 127, 78, 0.2), transparent);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    margin-bottom: 40px;
}

.contact-desc-ar {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-desc-en {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    direction: ltr;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 44px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #25D366;
    color: #fff;
    border-radius: 60px;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.3);
    background: #22c55e;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    width: 80px;
    height: 40px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-text {
    margin-bottom: 24px;
}

.footer-text .name-ar {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-text .name-en {
    font-size: 0.55rem;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--copper);
    margin: 20px auto;
    opacity: 0.4;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    direction: ltr;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-content .about-block:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .nav-links a span {
        font-size: 0.65rem;
    }

    /* Hero */
    .hero {
        padding: 80px 20px 40px;
    }

    .hero-title {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    /* Products */
    .products {
        padding: 80px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-image {
        height: 220px;
    }

    .products-showcase {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    /* Album */
    .album {
        padding: 80px 0;
    }

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

    .album-item-large {
        grid-row: span 1;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }

    /* About */
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-content .about-block:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .about-stats {
        flex-direction: column;
        gap: 32px;
        padding: 32px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    /* Contact */
    .contact {
        padding: 80px 0;
    }

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

    /* Section headers */
    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 18vw, 4rem);
    }

    .tagline-ar {
        font-size: 1rem;
    }

    .product-info {
        padding: 20px;
    }

    .product-image-wrap {
        padding: 24px;
    }

    .about-block {
        padding: 32px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ─── Visibility helper for GSAP ─── */
[data-animate] {
    opacity: 0;
}
