/* ═══════════════════════════════════════════════════════
   MEHAR BY JASS MANGAT — SHARED STYLES
   Used by index.html & products.html
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap');

/* ── ROOT & RESET ─────────────────────────── */
:root {
    --bg: #FFFFFF;
    --bg-warm: #FFFFFF;
    --bg-dark: #0A0A0A;
    --text: #111111;
    --text-light: #555555;
    --text-muted: #999999;
    --accent: #111111;
    --accent-dark: #000000;
    --accent-light: #333333;
    --border: #E0E0E0;
    --white: #FFFFFF;
    --serif: 'DM Serif Display', serif;
    --elegant: 'Cormorant Garamond', serif;
    --sans: 'DM Sans', sans-serif;
    --radius: 0px;
    --radius-sm: 0px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: var(--white); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── PRELOADER ────────────────────────────── */
#preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand { display: flex; align-items: center; justify-content: center; animation: pulse 1.5s ease-in-out infinite; }
.loader-logo { height: 48px; width: auto; }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── NAVIGATION ───────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 48px; display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav.scrolled {
    background: rgba(26,26,26,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 14px 48px; box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.nav.dark-nav { background: rgba(26,26,26,0.95); backdrop-filter: blur(20px); }
.nav-logo { display: flex; align-items: center; transition: all 0.4s; }
.nav-logo-img { height: 36px; width: auto; transition: height 0.4s; }
.nav.scrolled .nav-logo-img { height: 30px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.75); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--white); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    padding: 10px 24px; border: 1px solid var(--white); border-radius: 0;
    color: var(--white); font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; transition: all 0.3s;
}
.nav-cta:hover { background: var(--white); color: var(--bg-dark); }

.burger { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; cursor: pointer; z-index: 1001; }
.burger span { display: block; width: 100%; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
    display: none; position: fixed; inset: 0; background: rgba(18,18,18,0.97);
    backdrop-filter: blur(30px); z-index: 999; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
    color: rgba(255,255,255,0.8); font-size: 1.1rem; font-family: var(--elegant);
    letter-spacing: 3px; transition: all 0.3s ease; text-transform: uppercase;
    padding: 14px 32px; position: relative; font-weight: 400;
}
.mobile-menu a:hover, .mobile-menu a:active { color: #fff; letter-spacing: 5px; }
.mobile-menu a::after {
    content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px; background: rgba(255,255,255,0.35); transition: width 0.3s;
}
.mobile-menu a:hover::after { width: 36px; }

@media(max-width: 900px) {
    .nav { padding: 16px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: flex; }
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes gentleFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

.reveal { opacity:0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity:1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; } .reveal-d4 { transition-delay: 0.4s; }

/* ── SECTION COMMON ───────────────────────── */
.section { padding: 100px 48px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.section-header.center { text-align: center; margin-bottom: 56px; }
.section-header.center .section-tag::before { display: none; }
.section-header.center .section-desc { margin: 0 auto; }
.section-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent-dark); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 32px; height: 1.5px; background: var(--accent); }
.section-heading {
    font-family: var(--elegant); font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text); line-height: 1.2; margin-bottom: 16px; font-weight: 300;
    letter-spacing: 1px;
}
.section-desc {
    font-size: 0.88rem; color: var(--text-light); line-height: 1.8; font-weight: 300; max-width: 540px;
}
@media(max-width: 768px) { .section { padding: 64px 20px; } }

/* ── HERO — FULL SCREEN ───────────────────── */
.hero {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }

/* Hero Slider */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img, .hero-slide video { width: 100%; height: 100%; object-fit: cover; }
.hero-dots {
    position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 10px;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6);
    background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: var(--white); border-color: var(--white); transform: scale(1.2); }
.hero-dot:hover { border-color: var(--white); }

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 800px; }
.hero-tag {
    display: inline-block; padding: 8px 24px; border: 1px solid rgba(255,255,255,0.4);
    border-radius: 0; color: var(--white); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; animation: fadeUp 1s 0.3s both;
}
.hero-heading {
    font-family: var(--elegant); font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white);
    font-weight: 300; line-height: 1.15; margin-bottom: 24px; white-space: pre-line; animation: fadeUp 1s 0.5s both;
}
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.7; max-width: 560px; margin: 0 auto 40px; animation: fadeUp 1s 0.7s both; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s 0.9s both; }
.btn-hero-primary {
    padding: 16px 40px; background: var(--white); color: var(--bg-dark); border-radius: 0;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    transition: all 0.3s; border: 2px solid var(--white);
}
.btn-hero-primary:hover { background: transparent; color: var(--white); }
.btn-hero-secondary {
    padding: 16px 40px; border: 2px solid rgba(255,255,255,0.3); color: var(--white); border-radius: 0;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s;
}
.btn-hero-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; animation: gentleFloat 2s ease-in-out infinite; }
.hero-scroll svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.4); }

/* ── CATEGORIES ───────────────────────────── */
.categories { background: var(--bg); }

/* Slider wrapper with arrows */
.cat-slider-wrap { position: relative; max-width: 1200px; margin: 0 auto; }
.cat-slider {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 0;
}
.cat-slider::-webkit-scrollbar { display: none; }
.cat-card {
    position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer;
    flex: 0 0 calc(25% - 15px); min-width: calc(25% - 15px); scroll-snap-align: start;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 28px 20px; transition: background 0.4s;
}
.cat-card:hover .cat-card-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.8) 100%); }
.cat-card-name { font-family: var(--elegant); font-size: 1.35rem; color: var(--white); margin-bottom: 6px; text-align: center; font-weight: 400; letter-spacing: 1px; }
.cat-card-desc { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 300; text-align: center; opacity: 0; transform: translateY(8px); transition: all 0.4s; }
.cat-card:hover .cat-card-desc { opacity: 1; transform: translateY(0); }
.cat-card-arrow {
    position: absolute; top: 20px; right: 20px; width: 36px; height: 36px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); display: flex; align-items: center;
    justify-content: center; opacity: 0; transform: translateY(-8px); transition: all 0.4s;
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateY(0); }
.cat-card-arrow svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; }

/* Slider navigation arrows */
.cat-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--white); color: var(--bg-dark); box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.cat-slider-arrow:hover { background: var(--accent); color: var(--white); }
.cat-slider-arrow:hover svg { stroke: var(--white); }
.cat-slider-arrow svg { width: 18px; height: 18px; stroke: var(--bg-dark); fill: none; }
.cat-arrow-left { left: -20px; }
.cat-arrow-right { right: -20px; }

@media(max-width: 900px) {
    .cat-card { flex: 0 0 calc(25% - 15px); min-width: calc(25% - 15px); }
    .cat-slider { gap: 16px; }
    .cat-arrow-left { left: 4px; }
    .cat-arrow-right { right: 4px; }
    .cat-slider-arrow { width: 34px; height: 34px; }
    .cat-slider-arrow svg { width: 16px; height: 16px; }
}
@media(max-width: 600px) {
    .cat-card { flex: 0 0 calc(25% - 12px); min-width: calc(25% - 12px); aspect-ratio: 2/3; }
    .cat-slider { gap: 12px; }
    .cat-card-name { font-size: 0.9rem; }
    .cat-card-overlay { padding: 16px 8px; }
    .cat-slider-arrow { width: 30px; height: 30px; }
    .cat-slider-arrow svg { width: 14px; height: 14px; }
}

/* ── TRENDING SERIES ──────────────────────── */
.trending-section { background: var(--bg); }
.trending-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
}
.trend-card {
    border: 1px solid var(--border); transition: all 0.4s;
    display: flex; flex-direction: column; overflow: hidden;
}
.trend-card:hover { border-color: var(--accent); }
.trend-card-img {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.trend-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.trend-card:hover .trend-card-img img { transform: scale(1.05); }
.trend-tag {
    position: absolute; top: 16px; left: 16px; padding: 6px 14px;
    background: var(--bg-dark); color: var(--white);
    font-size: 0.58rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase;
}
.trend-card-body { padding: 24px 20px; display: flex; flex-direction: column; flex: 1; }
.trend-name {
    font-family: var(--elegant); font-size: 1.25rem; color: var(--text);
    font-weight: 400; margin-bottom: 10px;
}
.trend-desc {
    font-size: 0.8rem; color: var(--text-light); line-height: 1.7;
    font-weight: 300; flex: 1; margin-bottom: 20px;
}
.trend-actions { display: flex; align-items: center; gap: 20px; }
.trend-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--bg-dark); transition: all 0.3s;
}
.trend-link svg { transition: transform 0.3s; }
.trend-link:hover { color: var(--accent-dark); }
.trend-link:hover svg { transform: translateX(4px); }
.trend-wa {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-light); transition: all 0.3s;
}
.trend-wa:hover { color: var(--bg-dark); }
@media(max-width: 1024px) { .trending-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .trending-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ── SERVICES ─────────────────────────────── */
.services-section { background: var(--bg); }
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
}
.service-card {
    background: var(--bg); padding: 44px 28px 36px; text-align: left;
    border: 1px solid var(--border); transition: all 0.4s;
    display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--accent); }
.service-icon {
    width: 48px; height: 48px; margin-bottom: 28px; color: var(--accent);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon { color: var(--accent-dark); }
.service-title {
    font-family: var(--elegant); font-size: 1.25rem; color: var(--text); margin-bottom: 14px; font-weight: 400;
}
.service-desc {
    font-size: 0.82rem; color: var(--text-light); line-height: 1.8; font-weight: 300;
    flex: 1;
}
.service-book {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--bg-dark); transition: all 0.3s; padding: 12px 0;
    border-bottom: 1.5px solid var(--bg-dark);
}
.service-book svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-book:hover { color: var(--accent-dark); border-color: var(--accent); }
.service-book:hover svg { transform: translateX(4px); }
@media(max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .services-grid { grid-template-columns: 1fr; gap: 16px; } .service-card { padding: 32px 24px 28px; } }

/* ── ABOUT US ─────────────────────────────── */
.about-section { background: var(--bg-warm); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; }

/* Image composition */
.about-img-wrap {
    position: relative; min-height: 520px;
}
.about-img-main {
    position: absolute; top: 0; left: 0; width: 72%; aspect-ratio: 3/4;
    overflow: hidden; border-radius: 12px; z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-secondary {
    position: absolute; bottom: 0; right: 0; width: 55%; aspect-ratio: 1/1;
    overflow: hidden; border-radius: 12px; z-index: 3;
    border: 5px solid var(--bg-warm);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Decorative dotted frame */
.about-frame {
    position: absolute; top: -20px; right: 30px; width: 45%; aspect-ratio: 1/1;
    border: 2px dashed rgba(0,0,0,0.08); border-radius: 12px; z-index: 1;
}

/* Floating badge */
.about-badge {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 4; width: 100px; height: 100px; border-radius: 50%;
    background: var(--bg-dark); color: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    animation: badgePulse 3s ease-in-out infinite;
}
.about-badge-num {
    font-family: var(--elegant); font-size: 1.6rem; font-weight: 600; line-height: 1;
}
.about-badge-label {
    font-size: 0.48rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; margin-top: 4px; opacity: 0.7;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 8px rgba(0,0,0,0.04); }
}

.about-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.9; font-weight: 300; margin-bottom: 20px; }
.about-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 56px auto 0;
}
.stat-card { background: var(--white); padding: 32px 20px; text-align: center; border: 1px solid var(--border); transition: all 0.4s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-light); }
.stat-num { font-family: var(--elegant); font-size: 2rem; color: var(--accent-dark); margin-bottom: 6px; font-weight: 400; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
@media(max-width: 768px) {
    .about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap { min-height: 400px; }
    .about-img-main { width: 68%; }
    .about-img-secondary { width: 50%; }
    .about-badge { width: 80px; height: 80px; }
    .about-badge-num { font-size: 1.3rem; }
    .about-badge-label { font-size: 0.42rem; }
    .about-frame { display: none; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
    .about-img-wrap { min-height: 340px; }
    .about-img-main { width: 65%; }
    .about-img-secondary { width: 48%; border-width: 3px; }
}

/* ── HOW IT WORKS / PROCESS ──────────────── */
.process-section { background: var(--bg-dark); padding: 100px 5vw; }
.process-section .section-header.center { margin-bottom: 64px; }
.process-section .section-tag { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }
.process-section .section-heading { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,0.55); }

.process-grid {
    display: flex; align-items: flex-start; justify-content: center;
    max-width: 1100px; margin: 0 auto; gap: 0; position: relative;
}
.process-card {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative; padding: 0 10px;
}

/* Icon circle */
.step-icon-wrap { position: relative; margin-bottom: 24px; width: 88px; height: 88px; }
.step-icon {
    width: 72px; height: 72px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04); transition: all 0.4s;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 1;
}
.step-icon svg { width: 32px; height: 32px; stroke: rgba(255,255,255,0.7); transition: stroke 0.4s; }
.process-card:hover .step-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }
.process-card:hover .step-icon svg { stroke: var(--white); }

/* Rotating orbit ring */
.step-orbit {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1.5px dashed transparent;
    border-top-color: rgba(255,255,255,0.35);
    border-right-color: rgba(255,255,255,0.15);
    animation: orbitSpin 6s linear infinite;
}
.process-card:hover .step-orbit {
    border-top-color: rgba(255,255,255,0.6);
    border-right-color: rgba(255,255,255,0.3);
    animation-duration: 3s;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Connector line between cards */
.step-connector {
    position: absolute; top: 44px; left: calc(50% + 54px);
    width: calc(100% - 108px); height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}
.process-card:last-child .step-connector { display: none; }

.step-content { padding: 0 8px; }
.step-title {
    font-family: var(--elegant); font-size: 1.15rem; color: var(--white);
    font-weight: 400; margin-bottom: 10px; letter-spacing: 0.5px;
}
.step-desc {
    font-size: 0.76rem; color: rgba(255,255,255,0.4); line-height: 1.75;
    font-weight: 300; max-width: 180px; margin: 0 auto;
}

.process-cta-wrap { text-align: center; margin-top: 56px; }
.process-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 36px; background: var(--white); color: var(--bg-dark);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; transition: all 0.3s;
    border: 1.5px solid var(--white);
}
.process-cta:hover { background: transparent; color: var(--white); }
.process-cta svg { transition: transform 0.3s; stroke: currentColor; }
.process-cta:hover svg { transform: translateX(4px); }

@media(max-width: 900px) {
    .process-grid { flex-wrap: wrap; gap: 48px 0; }
    .process-card { flex: 0 0 33.33%; }
    .step-connector { display: none; }
}
@media(max-width: 600px) {
    .process-grid { flex-direction: column; align-items: center; gap: 40px; }
    .process-card { flex: none; width: 100%; }
    .step-icon-wrap { width: 78px; height: 78px; }
    .step-icon { width: 60px; height: 60px; }
    .step-icon svg { width: 26px; height: 26px; }
    .step-desc { max-width: 260px; }
}

/* ── FOUNDER ──────────────────────────────── */
.founder-section {
    background: var(--bg); overflow: hidden;
    padding: 100px 5vw;
}
.founder-layout {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px;
    max-width: 1200px; margin: 0 auto; align-items: center;
}

/* ── Image ── */
.founder-visual { position: relative; }
.founder-img {
    width: 100%; max-width: 400px; aspect-ratio: 3/5; overflow: hidden;
    border-radius: 200px; position: relative;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-img-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 36px;
    border-radius: 0 0 200px 200px;
}
.founder-signature {
    font-family: 'Ms Madi', cursive; font-size: 3.2rem; color: #ffffff;
    letter-spacing: 0; text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    transform: rotate(-8deg); display: inline-block; font-weight: 400;
    font-style: normal;
}
.founder-quote-card { display: none; }

/* ── Content side ── */
.founder-content { position: relative; }
.founder-accent-line {
    width: 50px; height: 3px; background: var(--accent); margin-bottom: 24px;
}
.founder-content .section-tag {
    color: var(--accent); margin-bottom: 10px;
}
.founder-content .section-heading {
    color: var(--bg-dark); font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 6px; line-height: 1.2; font-weight: 300;
}
.founder-title-text {
    font-size: 0.78rem; color: var(--accent-dark); font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 28px;
}
.founder-content p {
    font-size: 0.9rem; color: var(--text-light); line-height: 1.9;
    font-weight: 300; margin-bottom: 16px;
}
.founder-ig {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--accent-dark); font-weight: 600;
    transition: all 0.3s; text-decoration: none;
    border-bottom: 1.5px solid var(--accent); padding-bottom: 2px;
}
.founder-ig:hover { color: var(--accent); }

/* ── Stats row ── */
.founder-stats {
    display: flex; gap: 36px; margin-top: 36px;
    padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.08);
}
.founder-stat { text-align: center; }
.fs-num {
    display: block; font-family: var(--elegant); font-size: 1.6rem;
    color: var(--bg-dark); font-weight: 600; line-height: 1.2;
}
.fs-label {
    font-size: 0.7rem; color: var(--text-light); letter-spacing: 1px;
    text-transform: uppercase; margin-top: 4px; display: block;
}

/* ── Responsive ── */
@media(max-width: 900px) {
    .founder-layout { grid-template-columns: 1fr; gap: 50px; }
    .founder-visual { display: flex; justify-content: center; }
    .founder-img { max-width: 340px; }
    .founder-quote-card { right: 0; bottom: -24px; max-width: 240px; }
    .founder-content { text-align: center; }
    .founder-accent-line { margin: 0 auto 24px; }
    .founder-content .section-tag, .founder-content .section-heading { text-align: center; }
    .founder-stats { justify-content: center; }
    .founder-ig { justify-content: center; }
}
@media(max-width: 480px) {
    .founder-section { padding: 70px 5vw; }
    .founder-img { max-width: 260px; }
    .founder-signature { font-size: 2rem; }
    .founder-img-fade { padding-bottom: 28px; }
    .founder-stats { gap: 20px; flex-wrap: wrap; }
    .fs-num { font-size: 1.3rem; }
}

/* ── PILL BUTTONS (shared) ────────────────── */
.pill {
    padding: 8px 20px; border-radius: 0; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid var(--border);
    color: var(--text-light); background: var(--white); cursor: pointer; transition: all 0.3s;
    white-space: nowrap;
}
.pill:hover { border-color: var(--accent); color: var(--accent-dark); }
.pill.active { background: var(--accent); border-color: var(--accent); color: var(--white); }
.pill-sm {
    padding: 7px 18px; border-radius: 0; font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.8px; border: 1px solid var(--border);
    color: var(--text-muted); background: transparent; cursor: pointer; transition: all 0.3s;
    white-space: nowrap;
}
.pill-sm:hover { border-color: var(--accent-light); color: var(--accent-dark); }
.pill-sm.active { background: var(--text); border-color: var(--text); color: var(--white); }

/* ── PORTFOLIO ────────────────────────────── */
.portfolio { background: var(--bg-warm); }
.portfolio-filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1200px; margin: 0 auto; }
.port-card { overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 1; background: var(--bg); transition: all 0.4s; }
.port-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.port-card:hover img { transform: scale(1.06); }
.port-card-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    opacity: 0; transition: opacity 0.4s; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 16px;
}
.port-card:hover .port-card-overlay { opacity: 1; }
.port-card-label { color: var(--white); font-size: 0.65rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.port-card-btn {
    display: inline-block; padding: 6px 16px; background: var(--white); color: var(--bg-dark);
    font-size: 0.6rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
    text-decoration: none; transition: background 0.3s, color 0.3s;
}
.port-card-btn:hover { background: var(--accent); color: var(--white); }
@media(max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 600px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials-section { background: var(--bg-warm); overflow: hidden; }

.testimonials-slider-wrap {
    position: relative; max-width: 1200px; margin: 0 auto;
}
.testimonials-track {
    display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 10px 0 20px;
}
.testimonials-track.centered { justify-content: center; overflow-x: visible; }
.testimonials-track::-webkit-scrollbar { display: none; }

.testi-card {
    flex: 0 0 calc(33.333% - 16px); min-width: calc(33.333% - 16px);
    scroll-snap-align: start; background: var(--white);
    padding: 36px 32px; border: 1px solid var(--border);
    transition: all 0.4s; position: relative;
}
.testi-card.active { border-color: var(--accent); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.testi-stars { color: #d4a853; font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }

.testi-text {
    font-size: 0.88rem; color: var(--text-light); line-height: 1.85;
    font-weight: 300; font-style: italic; margin-bottom: 24px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-dark); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--elegant); font-size: 1.1rem; font-weight: 400;
    flex-shrink: 0;
}
.testi-avatar-img {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 2px solid #e8e8e8;
}
.testi-info { display: flex; flex-direction: column; }
.testi-name {
    font-size: 0.82rem; font-weight: 600; color: var(--text);
    letter-spacing: 0.5px;
}
.testi-location {
    font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Arrows */
.testi-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--white); color: var(--bg-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.testi-arrow:hover { background: var(--bg-dark); color: var(--white); }
.testi-arrow:hover svg { stroke: var(--white); }
.testi-arrow svg { width: 18px; height: 18px; stroke: var(--bg-dark); fill: none; }
.testi-arrow-left { left: -20px; }
.testi-arrow-right { right: -20px; }

/* Dots */
.testi-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 12px;
}
.testi-dot {
    width: 8px; height: 8px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.15); cursor: pointer; transition: all 0.3s; padding: 0;
}
.testi-dot.active { background: var(--bg-dark); width: 24px; border-radius: 4px; }

@media(max-width: 900px) {
    .testi-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
    .testi-arrow-left { left: 4px; }
    .testi-arrow-right { right: 4px; }
}
@media(max-width: 600px) {
    .testi-card { flex: 0 0 85%; min-width: 85%; padding: 28px 24px; }
    .testi-arrow { width: 32px; height: 32px; }
    .testi-arrow svg { width: 14px; height: 14px; }
}

/* ── INSTAGRAM FEED ───────────────────────── */
.ig-section { background: var(--bg-dark); color: var(--white); }
.ig-section .section-tag { color: rgba(255,255,255,0.5); }
.ig-section .section-heading { color: var(--white); font-weight: 300; }
.ig-section .section-desc { color: rgba(255,255,255,0.5); }
.ig-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
    max-width: 1200px; margin: 0 auto;
}
.ig-card {
    position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer;
}
.ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ig-card:hover img { transform: scale(1.08); }
.ig-card-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex;
    align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s;
}
.ig-card:hover .ig-card-overlay { opacity: 1; }
@media(max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 480px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-follow-wrap { text-align: center; margin-top: 40px; }
.btn-ig-follow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border: 1.5px solid var(--white); border-radius: 0;
    color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; transition: all 0.3s;
}
.btn-ig-follow:hover { background: var(--white); color: var(--bg-dark); }

/* ── CONTACT ──────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; max-width: 1100px; margin: 0 auto; }
.ci-card { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.ci-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 0; background: var(--bg-dark); color: var(--white); display: flex; align-items: center; justify-content: center; }
.ci-icon svg { width: 20px; height: 20px; stroke: var(--white) !important; }
.ci-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ci-value { font-size: 0.88rem; color: var(--text); font-weight: 400; }
.ci-value a { color: var(--text); transition: color 0.3s; }
.ci-value a:hover { color: var(--accent-dark); }
.ci-wa-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
    background: var(--bg-dark); color: var(--white); border-radius: 0; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 1px; transition: all 0.3s; margin-top: 12px;
    border: 1.5px solid var(--bg-dark);
}
.ci-wa-btn:hover { background: transparent; color: var(--bg-dark); transform: scale(1.03); }
.ci-wa-btn svg { fill: currentColor; }

.contact-form { background: var(--white); padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 1px solid var(--border);
    font-family: var(--sans); font-size: 0.85rem; color: var(--text); background: var(--bg);
    transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
    width: 100%; padding: 16px; background: var(--accent); color: var(--white); border: 2px solid var(--accent);
    border-radius: 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
@media(max-width: 768px) {
    .contact-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
}

/* ── PRODUCTS PAGE ────────────────────────── */
.page-header {
    padding: 140px 48px 60px; background: var(--bg-dark); text-align: center;
}
.page-header .section-tag { color: rgba(255,255,255,0.5); }
.page-header .section-tag::before { background: rgba(255,255,255,0.3); }
.page-header .section-heading { color: var(--white); font-weight: 300; }
.page-header .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto; }
.page-header .breadcrumb { margin-top: 20px; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.4); font-size: 0.72rem; transition: color 0.3s; }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb span { color: rgba(255,255,255,0.25); font-size: 0.72rem; margin: 0 8px; }

.products-section { background: var(--bg); padding: 56px 48px 100px; }
.portfolio-page { background: var(--bg-warm); padding: 56px 48px 100px; }
.portfolio-page .portfolio-filters { max-width: 1000px; margin: 0 auto 40px; flex-wrap: wrap; justify-content: center; }
.portfolio-page .portfolio-grid { max-width: 1200px; margin: 0 auto; }
@media(max-width: 768px) { .portfolio-page { padding: 40px 20px 64px; } }
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; max-width: 900px; margin-left: auto; margin-right: auto; }
.series-slider-wrap {
    position: relative; max-width: 900px; margin: 0 auto 48px;
    display: flex; align-items: center; justify-content: center;
}
.series-slider-wrap .series-arrow { width: 30px; height: 30px; }
.series-slider-wrap .series-arrow svg { width: 14px; height: 14px; }
.series-slider-wrap .cat-slider-left { left: 4px; z-index: 2; }
.series-slider-wrap .cat-slider-right { right: 4px; z-index: 2; }
.series-bar { display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto; min-height: 36px; padding: 4px 42px; scrollbar-width: none; -webkit-overflow-scrolling: touch; width: 100%; }
.series-bar::-webkit-scrollbar { display: none; }
.series-bar .pill { flex-shrink: 0; }
.series-bar .pill-sm { flex-shrink: 0; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.product-card { background: var(--white); overflow: hidden; border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.product-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-warm); }
.card-carousel { position: relative; width: 100%; height: 100%; }
.carousel-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 0.45s ease;
}
.carousel-slide.active { opacity: 1; position: relative; }
.product-card:hover .carousel-slide.active { transform: scale(1.05); transition: opacity 0.45s ease, transform 0.5s; }

/* Arrows */
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.85); border: none; cursor: pointer;
    opacity: 0; transition: opacity 0.3s, background 0.2s;
}
.product-card:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: var(--white); }
.carousel-arrow svg { stroke: var(--bg-dark); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* Dots */
.carousel-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; gap: 6px; opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .carousel-dots { opacity: 1; }
.carousel-dot {
    width: 7px; height: 7px; background: rgba(255,255,255,0.45); cursor: pointer;
    transition: background 0.2s, transform 0.2s; border-radius: 0;
}
.carousel-dot.active { background: var(--white); transform: scale(1.3); }
.product-card-series {
    position: absolute; top: 12px; left: 12px; padding: 5px 14px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
    font-size: 0.58rem; font-weight: 600; color: var(--white); letter-spacing: 1px; text-transform: uppercase;
}
.product-card-body { padding: 20px; }
.product-card-name { font-family: var(--elegant); font-size: 1.1rem; color: var(--text); margin-bottom: 6px; font-weight: 400; }
.product-card-desc { font-size: 0.72rem; color: var(--text-light); line-height: 1.6; font-weight: 300; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-footer { display: flex; flex-direction: column; gap: 0; }
.product-img-count {
    position: absolute; bottom: 10px; right: 10px; z-index: 3;
    padding: 4px 10px; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
    font-size: 0.6rem; font-weight: 600; color: var(--white); letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 5px;
}
.product-img-count svg { stroke: var(--white); }
.btn-shop {
    padding: 10px 22px; background: var(--accent); color: var(--white); border-radius: 0;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 6px;
}
.btn-shop:hover { background: var(--accent-dark); transform: scale(1.04); }
.btn-shop svg { width: 14px; height: 14px; fill: var(--white); }

/* View Details button */
.btn-view-detail {
    width: 100%; padding: 13px 20px; background: var(--bg-dark); color: var(--white); border-radius: 0;
    font-size: 0.62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--bg-dark); text-align: center;
}
.btn-view-detail:hover { background: transparent; color: var(--bg-dark); }

/* Enquire Now button */
.btn-enquire {
    width: 100%; padding: 12px 20px; background: transparent; color: var(--text-light); border-radius: 0;
    font-size: 0.58rem; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
    border: none; border-top: 1px solid var(--border); text-align: center;
}
.btn-enquire:hover { color: var(--bg-dark); }

.no-products { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 0.9rem; }

/* ── CATEGORY SLIDER WRAPPER (products page) ─── */
.products-section .cat-slider-wrap {
    position: relative; max-width: 100%; margin-bottom: 32px;
    display: flex; align-items: center; justify-content: center;
}
.cat-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-60%); z-index: 3;
    width: 36px; height: 36px; border-radius: 50%;
    background: #fff; border: 1px solid #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; padding: 0;
}
.cat-slider-arrow svg { width: 18px; height: 18px; }
.cat-slider-arrow:hover { background: #1a1a1a; border-color: #1a1a1a; }
.cat-slider-arrow:hover svg { stroke: #fff; }
.cat-slider-left { left: 6px; }
.cat-slider-right { right: 6px; }

/* ── CATEGORY FILTER CARDS (products page, desktop) ─── */
.cat-filter-cards {
    display: flex; gap: 16px; flex-wrap: nowrap;
    max-width: 100%; margin-left: auto; margin-right: auto;
    overflow-x: auto; overflow-y: visible;
    padding: 12px 20px 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.cat-filter-cards::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.cat-filter-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    cursor: pointer; transition: all 0.3s; padding: 8px;
    flex-shrink: 0;
}
.cat-filter-card .cfc-img {
    width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
    background: #e8e8e8; transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    outline: 3px solid transparent; outline-offset: 3px;
}
.cat-filter-card .cfc-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-filter-card .cfc-icon {
    width: 80px; height: 80px; border-radius: 50%; background: #e8e8e8;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: var(--text-muted);
    outline: 3px solid transparent; outline-offset: 3px;
}
.cat-filter-card .cfc-icon svg { width: 28px; height: 28px; }
.cat-filter-card .cfc-name {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); transition: color 0.3s; text-align: center;
    white-space: nowrap;
}
.cat-filter-card:hover .cfc-img,
.cat-filter-card:hover .cfc-icon { outline-color: rgba(0,0,0,0.3); }
.cat-filter-card:hover .cfc-name { color: var(--text); }
.cat-filter-card.active .cfc-img,
.cat-filter-card.active .cfc-icon { outline-color: var(--bg-dark); outline-width: 2.5px; outline-offset: 4px; }
.cat-filter-card.active .cfc-name { color: var(--accent-dark); font-weight: 700; }
.cat-filter-card.active .cfc-icon { background: var(--bg-dark); color: var(--white); }

/* Mobile: keep rounded image cards, just scale down */
.cat-filter-pills { display: none; }
@media(max-width: 768px) {
    .cat-slider-wrap { margin-bottom: 20px; }
    .cat-slider-arrow { width: 28px; height: 28px; }
    .cat-slider-arrow svg { width: 14px; height: 14px; }
    .cat-slider-left { left: 2px; }
    .cat-slider-right { right: 2px; }
    .cat-filter-cards { gap: 10px; margin-bottom: 0; padding: 8px 36px 12px; }
    .cat-filter-card { padding: 4px; gap: 6px; }
    .cat-filter-card .cfc-img,
    .cat-filter-card .cfc-icon { width: 56px; height: 56px; outline-width: 2px; outline-offset: 3px; }
    .cat-filter-card .cfc-icon svg { width: 22px; height: 22px; }
    .cat-filter-card .cfc-name { font-size: 0.52rem; letter-spacing: 0.5px; }
    .series-slider-wrap { margin-bottom: 32px; }
    .series-slider-wrap .series-arrow { width: 24px; height: 24px; }
    .series-slider-wrap .series-arrow svg { width: 12px; height: 12px; }
}

/* ── PORTFOLIO VIEW MORE ──────────────────── */
.portfolio-view-more {
    text-align: center; margin-top: 32px;
}
.btn-view-more {
    padding: 14px 36px; border: 1.5px solid var(--bg-dark); border-radius: 0;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--bg-dark); background: transparent; cursor: pointer; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-view-more:hover { background: var(--bg-dark); color: var(--white); }
.btn-view-more svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn-view-more.expanded svg { transform: rotate(180deg); }

@media(max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .products-section { padding: 40px 20px 64px; } }
@media(max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-card-body { padding: 12px; }
    .product-card-footer { gap: 0; }
    .btn-view-detail, .btn-enquire { font-size: 0.55rem; padding: 10px 8px; letter-spacing: 1px; }
    .btn-shop { width: 100%; justify-content: center; }
}

/* ── PRODUCT DETAIL PAGE ─────────────────── */
.pd-page { padding: 120px 5vw 80px; max-width: 1200px; margin: 0 auto; }
.pd-breadcrumb {
    font-size: 0.72rem; color: var(--text-muted); margin-bottom: 40px;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pd-breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.pd-breadcrumb a:hover { color: var(--text); }
.pd-breadcrumb span { color: var(--border); }

.pd-layout {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start;
}

/* Gallery */
.pd-gallery { position: sticky; top: 100px; }
.pd-main-img {
    position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden;
    background: var(--bg-warm); border: 1px solid var(--border); margin-bottom: 12px;
}
.pd-main-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity 0.4s ease;
}
.pd-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.9); border: none; cursor: pointer;
    transition: all 0.3s; opacity: 0;
}
.pd-main-img:hover .pd-arrow { opacity: 1; }
.pd-arrow:hover { background: var(--white); }
.pd-arrow svg { stroke: var(--bg-dark); }
.pd-arrow-prev { left: 12px; }
.pd-arrow-next { right: 12px; }
.pd-img-counter {
    position: absolute; bottom: 12px; right: 12px; z-index: 3;
    padding: 6px 14px; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
    font-size: 0.65rem; font-weight: 600; color: var(--white); letter-spacing: 1px;
}

/* Thumbnails */
.pd-thumbs {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
}
.pd-thumb {
    width: 72px; height: 90px; flex-shrink: 0; overflow: hidden; cursor: pointer;
    border: 2px solid transparent; transition: all 0.3s; opacity: 0.5;
}
.pd-thumb.active { border-color: var(--bg-dark); opacity: 1; }
.pd-thumb:hover { opacity: 0.85; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.pd-info { padding-top: 8px; }
.pd-series {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 12px;
}
.pd-title {
    font-family: var(--elegant); font-size: 2.4rem; font-weight: 300;
    color: var(--text); line-height: 1.2; margin-bottom: 8px; letter-spacing: 0.5px;
}
.pd-category {
    font-size: 0.75rem; color: var(--text-light); font-weight: 400; margin-bottom: 20px;
}
.pd-divider { width: 48px; height: 1px; background: var(--border); margin-bottom: 24px; }
.pd-description {
    font-size: 0.88rem; color: var(--text-light); line-height: 1.85; font-weight: 300;
    margin-bottom: 32px; max-width: 460px;
}

/* Details list */
.pd-details { margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.pd-detail-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.76rem; color: var(--text-light); font-weight: 400;
}
.pd-detail-item svg { stroke: var(--text-muted); flex-shrink: 0; }

/* Actions */
.pd-actions { display: flex; flex-direction: column; gap: 12px; }
.pd-enquire {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 36px; background: var(--bg-dark); color: var(--white);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    transition: all 0.3s; border: 1.5px solid var(--bg-dark); text-align: center;
}
.pd-enquire:hover { background: transparent; color: var(--bg-dark); }
.pd-enquire svg { fill: currentColor; width: 18px; height: 18px; }
.pd-back {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 36px; background: transparent; color: var(--text-light);
    font-size: 0.65rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    transition: all 0.3s; border: 1.5px solid var(--border);
}
.pd-back:hover { border-color: var(--bg-dark); color: var(--bg-dark); }
.pd-back svg { stroke: currentColor; }

/* Related Products */
.pd-related { margin-top: 80px; border-top: 1px solid var(--border); padding-top: 56px; }
.pd-related-title {
    font-family: var(--elegant); font-size: 1.5rem; font-weight: 300;
    color: var(--text); margin-bottom: 32px; letter-spacing: 0.5px;
}
.pd-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pd-related-card {
    display: block; border: 1px solid var(--border); transition: all 0.4s;
    overflow: hidden;
}
.pd-related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pd-rc-img { aspect-ratio: 3/4; overflow: hidden; }
.pd-rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pd-related-card:hover .pd-rc-img img { transform: scale(1.05); }
.pd-rc-body { padding: 14px; }
.pd-rc-name { font-family: var(--elegant); font-size: 0.95rem; color: var(--text); font-weight: 400; margin-bottom: 4px; }
.pd-rc-series { font-size: 0.62rem; color: var(--text-muted); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

@media(max-width: 900px) {
    .pd-layout { grid-template-columns: 1fr; gap: 40px; }
    .pd-gallery { position: static; }
    .pd-arrow { opacity: 1; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
    .pd-page { padding: 100px 16px 60px; }
    .pd-title { font-size: 1.8rem; }
    .pd-thumbs { gap: 6px; }
    .pd-thumb { width: 56px; height: 70px; }
    .pd-related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .pd-actions { gap: 10px; }
}

/* ── FOOTER ───────────────────────────────── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 80px 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 60px; }
.footer-brand { margin-bottom: 16px; }
.footer-logo { height: 32px; width: auto; opacity: 0.85; }
.footer-desc { font-size: 0.78rem; line-height: 1.8; font-weight: 300; max-width: 320px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; transition: color 0.3s; font-weight: 300; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; text-align: center; font-size: 0.68rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 16px; margin-top: 20px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 0; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-socials a:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.footer-socials svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
@media(max-width: 768px) { .footer { padding: 48px 20px 24px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── LIGHTBOX ─────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center; padding: 40px;
    opacity: 0; visibility: hidden; transition: all 0.3s; cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 0;
    background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; }

/* ── FLOATING WHATSAPP ────────────────────── */
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(237,156,45,0.45); }
    50% { box-shadow: 0 0 0 14px rgba(237,156,45,0); }
    100% { box-shadow: 0 0 0 0 rgba(237,156,45,0); }
}
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    padding: 16px 26px; border-radius: 100px;
    background: #ed9c2d; color: var(--white);
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 24px rgba(237,156,45,0.35);
    transition: all 0.3s; animation: fadeUp 1s 1.5s both, waPulse 4s 3s ease-in-out infinite;
    font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.wa-float:hover { background: #d88b1f; transform: scale(1.05); }
.wa-float svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.wa-float-text { white-space: nowrap; }
@media(max-width: 480px) {
    .wa-float { padding: 16px; border-radius: 100px; }
    .wa-float-text { display: none; }
}

/* ── BACK TO TOP ──────────────────────────── */
.back-top {
    position: fixed; bottom: 28px; left: 28px; z-index: 900; width: 44px; height: 44px; border-radius: 0;
    background: var(--bg-dark); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s; cursor: pointer;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: #333; }
.back-top svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; }
