/* ========================================
   YUGZEN v4 - 360° Fashion Manufacturing
   Color: #944a3e (primary), #000, #faf8f5, #fff7f5
   ======================================== */

:root {
    --primary: #944a3e;
    --primary-dark: #7a3d33;
    --black: #000;
    --cream: #faf8f5;
    --cream-dark: #fff7f5;
    --white: #fff;
    --gray: #666;
    --gray-light: #999;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.7;
    background: var(--cream);
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 400; }
em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--primary); }

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
.whatsapp-btn:hover { transform: scale(1.1); }
.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.modal.active { display: flex; }
.modal-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 460px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}
.modal-box h3 { margin-bottom: 0.3rem; font-size: 1.5rem; }
.modal-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }
.modal-box input,
.modal-box select,
.modal-box textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--black);
    appearance: none;
}
.modal-box input:focus,
.modal-box select:focus,
.modal-box textarea:focus { outline: none; border-color: var(--primary); }
.modal-box button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}
.modal-box button[type="submit"]:hover { background: var(--black); }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(250, 248, 245, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.nav-left, .nav-right { display: flex; gap: 2rem; align-items: center; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: var(--transition);
}
.nav-left a:hover, .nav-right a:hover { color: var(--primary); }
.nav-left a.nav-active, .nav-right a.nav-active { color: var(--primary); }
.logo { text-align: center; }
.logo a { display: inline-block; line-height: 0; }
.logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}
.btn-b2b {
    border: 1.5px solid var(--black) !important;
    padding: 0.4rem 1.2rem !important;
}
.btn-b2b:hover { background: var(--black) !important; color: var(--white) !important; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; }
.mobile-menu span { width: 22px; height: 2px; background: var(--black); }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 560px;
    margin-top: 62px;
    overflow: hidden;
}
.hero-slider { position: relative; height: 100%; }
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.65) 100%);
}
.slide img, .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    z-index: 2;
    max-width: 700px;
    width: 80%;
    text-align: center;
}
.slide-tag {
    font-size: 0.7rem;
    letter-spacing: 4px;
    display: inline-block;
    background: var(--primary);
    padding: 0.3rem 1rem;
    margin-bottom: 1.2rem;
}
.slide-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.slide-content h1 em { color: var(--white); display: block; }
.slide-content p { margin-bottom: 2rem; opacity: 0.9; font-size: 1rem; }
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-hero {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}
.btn-hero:hover { background: var(--white); color: var(--primary); }
.btn-hero-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition);
}
.btn-hero-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}
.hero-nav button {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}
.hero-nav button:hover { background: var(--primary); border-color: var(--primary); }
.hero-dots {
    position: absolute;
    bottom: 4rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 10;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--white); height: 25px; border-radius: 4px; }
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}
.bar { height: 100%; background: var(--primary); animation: progress 5s linear infinite; }
@keyframes progress { from { width: 0; } to { width: 100%; } }
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 10%;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
}
.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { width: 40px; opacity: 0.4; }
    50% { width: 60px; opacity: 1; }
}

/* ========================================
   SECTION HEAD
   ======================================== */
.section-head { text-align: center; margin-bottom: 3rem; }
.label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}
.section-head h2 { font-size: 2.2rem; }
.section-sub { color: var(--gray); margin-top: 0.5rem; font-size: 0.95rem; }
.deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}
.deco span { width: 40px; height: 1px; background: var(--primary); }
.deco i { color: var(--primary); font-style: normal; font-size: 0.8rem; }

/* ========================================
   CLIENTS MARQUEE
   ======================================== */
.clients {
    padding: 1.5rem 0;
    background: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(148,74,62,0.1);
    border-bottom: 1px solid rgba(148,74,62,0.1);
}
.marquee { overflow: hidden; }
.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    align-items: center;
}
.marquee-track span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    white-space: nowrap;
    color: var(--gray);
}
.tag-b2b {
    color: var(--primary) !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
}
.tag-sep { color: var(--primary) !important; opacity: 0.5; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   PRODUCTS HERO — Clean Card Grid
   ======================================== */
.products-hero {
    padding: 4rem 0 5rem;
    background: var(--cream);
}
.products-hero .section-head { margin-bottom: 3rem; }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

/* Image area */
.pillar-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.pillar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.92);
}
.pillar-card:hover .pillar-img img { transform: scale(1.06); }

/* Ghost number on image */
.pillar-num {
    position: absolute;
    bottom: 0.8rem;
    right: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color 0.4s ease;
}
.pillar-card:hover .pillar-num { color: rgba(255,255,255,0.1); }

/* Content area */
.pillar-body {
    padding: 1.6rem 1.8rem 2rem;
    border-top: 3px solid transparent;
    transition: border-color 0.35s ease;
}
.pillar-card:hover .pillar-body { border-top-color: var(--primary); }

.pillar-cat {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.pillar-body h3 {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.pillar-body p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.4rem;
}
.pillar-tags span {
    font-size: 0.62rem;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(148,74,62,0.3);
    color: var(--primary);
    border-radius: 20px;
    transition: background 0.25s, color 0.25s;
}
.pillar-card:hover .pillar-tags span {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: color 0.25s, gap 0.25s;
}
.pillar-link span { transition: transform 0.25s; }
.pillar-link:hover { color: var(--primary); gap: 0.8rem; }

/* ========================================
   SERVICES — Split Screen
   ======================================== */
.services {
    background: var(--white);
    padding: 5rem 0;
}
.services-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Left image panel */
.services-visual {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}
.services-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.services-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}
.services-visual-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
    z-index: 2;
}
.svo-big {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    line-height: 1;
}
.svo-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.25;
    font-weight: 400;
}

/* Right content panel */
.services-content {
    padding: 1.8rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
}
.svc-head { margin-bottom: 1.2rem; }
.svc-head .label { margin-bottom: 0.4rem; }
.svc-head h2 { font-size: 1.9rem; line-height: 1.2; margin-bottom: 0.5rem; }
.svc-head p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* Service list */
.svc-list { list-style: none; margin-bottom: 1.4rem; }
.svc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    cursor: pointer;
    transition: padding-left 0.3s ease;
}
.svc-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.svc-item:hover { padding-left: 0.6rem; }

.svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(148,74,62,0.25);
    min-width: 28px;
    transition: color 0.3s ease;
    line-height: 1;
}
.svc-item:hover .svc-num { color: var(--primary); }

.svc-info { flex: 1; }
.svc-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    transition: color 0.3s;
}
.svc-item:hover .svc-info h4 { color: var(--primary); }
.svc-info p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s;
}
.svc-item:hover .svc-info p { max-height: 60px; opacity: 1; margin-top: 0.3rem; }

.svc-arr {
    color: rgba(148,74,62,0.3);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.25s, transform 0.25s;
    display: block;
    flex-shrink: 0;
}
.svc-item:hover .svc-arr { color: var(--primary); transform: translateX(5px); }

/* Highlight item */
.svc-highlight .svc-info h4 { color: var(--primary); }
.svc-highlight .svc-num { color: rgba(148,74,62,0.5); }

.svc-cta { align-self: flex-start; }

/* ========================================
   B2B SECTION (Dark)
   ======================================== */
.b2b-section {
    background: #1a1a1a;
    padding: 5rem 0;
    overflow: hidden;
}
.b2b-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.b2b-header {
    text-align: center;
    margin-bottom: 3rem;
}
.b2b-header .label { color: var(--primary); }
.b2b-header h2 { color: var(--white); font-size: 2.2rem; }
.b2b-header h2 em { color: var(--primary); }
.b2b-header p { color: rgba(255,255,255,0.6); margin-top: 0.8rem; font-size: 0.95rem; }

.b2b-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.b2b-nav {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
}
.b2b-nav:hover { background: var(--primary); border-color: var(--primary); }

.b2b-slides {
    position: relative;
    width: 100%;
    max-width: 820px;
    height: 310px;
    perspective: 1000px;
}
.b2b-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 720px;
    display: flex;
    gap: 2rem;
    background: rgba(40, 40, 40, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 2rem;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(30deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.b2b-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    pointer-events: auto;
    z-index: 3;
    background: rgba(50, 50, 50, 1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.b2b-slide.prev {
    opacity: 0.2;
    transform: translate(-130%, -50%) scale(0.7) rotateY(25deg);
    z-index: 1;
}
.b2b-slide.next {
    opacity: 0.2;
    transform: translate(30%, -50%) scale(0.7) rotateY(-25deg);
    z-index: 1;
}
.b2b-image {
    flex: 0 0 180px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}
.b2b-image img { width: 100%; height: 100%; object-fit: cover; }
.b2b-content {
    flex: 1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide-num {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.b2b-content h3 { font-size: 1.4rem; margin-bottom: 0.8rem; line-height: 1.2; }
.b2b-content h3 em { color: var(--primary); }
.b2b-content p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1rem; }
.b2b-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.b2b-tags span {
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    background: rgba(148, 74, 62, 0.35);
    border-radius: 20px;
    color: #f5c4b8;
}
.b2b-features { display: flex; gap: 1.5rem; }
.b2b-features div { flex: 1; }
.b2b-features strong {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.3rem;
}
.b2b-features span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.b2b-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.b2b-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}
.b2b-dot.active { background: var(--primary); width: 25px; border-radius: 4px; }
.btn-partner {
    display: block;
    width: fit-content;
    margin: 2.5rem auto 0;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}
.btn-partner:hover { background: var(--primary-dark); }

/* ========================================
   CUSTOM SECTION (B2C)
   ======================================== */
.custom-section {
    padding: 6rem 0;
    background: var(--cream-dark);
}
.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.custom-text .label { margin-bottom: 0.5rem; }
.custom-text h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.2rem; }
.custom-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.custom-list {
    list-style: none;
    margin-bottom: 2rem;
}
.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: var(--black);
}
.custom-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2.5;
}
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}
.btn-primary:hover { background: var(--black); border-color: var(--black); }
.custom-visual { position: relative; }
.custom-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
}
.custom-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.custom-badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--primary);
    color: var(--white);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 1px;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(148,74,62,0.4);
}
.custom-badge strong { font-size: 1rem; font-family: 'Playfair Display', serif; }
.custom-img-small {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--white);
}
.custom-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* ========================================
   HOW IT WORKS — Individual Customer Journey
   ======================================== */
.how-it-works {
    padding: 5rem 0 4rem;
    background: var(--white);
}

/* ---- Journey rows ---- */
.hiw-journey {
    margin: 3rem 0;
    overflow: hidden;
    border: 1px solid rgba(148,74,62,0.1);
}
.hiw-row {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 400px;
    position: relative;
}
.hiw-reverse {
    grid-template-columns: 45% 55%;
}
.hiw-reverse .hiw-img { order: 2; }
.hiw-reverse .hiw-text { order: 1; }

/* ---- Image panel ---- */
.hiw-img {
    position: relative;
    overflow: hidden;
    height: 400px;
}
.hiw-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hiw-row:hover .hiw-img img { transform: scale(1.06); }

/* Gradient overlay on image */
.hiw-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(148,74,62,0.18) 0%, transparent 55%);
    pointer-events: none;
}

/* Step number badge on image */
.hiw-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(148,74,62,0.45);
}
.hiw-reverse .hiw-badge {
    left: auto;
    right: 1.5rem;
}

/* ---- Text panel ---- */
.hiw-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 3.5rem;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

/* Ghost big number behind text */
.hiw-ghost-num {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 11rem;
    font-weight: 700;
    color: rgba(148,74,62,0.045);
    line-height: 1;
    bottom: -1.5rem;
    right: -0.5rem;
    letter-spacing: -5px;
    pointer-events: none;
    user-select: none;
}
.hiw-reverse .hiw-text .hiw-ghost-num {
    right: auto;
    left: -0.5rem;
}

.hiw-step-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3.5px;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}
.hiw-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--black);
}
.hiw-text h3 em {
    font-style: italic;
    color: var(--primary);
}
.hiw-text p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 360px;
    margin-bottom: 1.8rem;
}
.hiw-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(148,74,62,0.8);
    border-top: 1px solid rgba(148,74,62,0.12);
    padding-top: 1.2rem;
}
.hiw-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- Scroll animations ---- */
.hiw-animate-left .hiw-img {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hiw-animate-left .hiw-text {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.hiw-animate-right .hiw-img {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hiw-animate-right .hiw-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.hiw-animate-left.in-view .hiw-img,
.hiw-animate-left.in-view .hiw-text,
.hiw-animate-right.in-view .hiw-img,
.hiw-animate-right.in-view .hiw-text {
    opacity: 1;
    transform: translateX(0);
}

.hiw-cta { text-align: center; margin-top: 3.5rem; }

/* ========================================
   PRODUCT SHOWCASE — Tabbed
   ======================================== */
.product-showcase {
    padding: 5rem 0;
    background: var(--cream);
}

/* Tab buttons */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(0,0,0,0.08);
}
.tab-btn {
    background: none;
    border: none;
    padding: 0.9rem 2.8rem;
    font-size: 0.72rem;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--gray-light);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.tab-btn.active { color: var(--primary); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--primary); }

/* Product grid */
.showcase-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}
.showcase-grid.active { display: grid; }

/* Product card */
.showcase-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}
.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}
.showcase-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.showcase-item:hover .showcase-img img { transform: scale(1.06); }
.showcase-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.65rem;
}
.showcase-body {
    padding: 0.9rem 1rem 1.1rem;
}
.showcase-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.showcase-price {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}
.showcase-enquire {
    font-size: 0.68rem;
    letter-spacing: 1px;
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.showcase-item:hover .showcase-enquire { color: var(--primary); }

/* Footer */
.showcase-footer { text-align: center; }
.showcase-footer p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}
.showcase-footer p em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--primary);
    font-size: 1.05rem;
}
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    border: 1.5px solid var(--black);
    padding: 0.9rem 2.5rem;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-view-all:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ========================================
   WHY US — Image Background Carousel
   ======================================== */
.why-us {
    padding: 5.5rem 0;
    background:
        linear-gradient(160deg, rgba(8,4,2,0.60) 0%, rgba(18,7,4,0.65) 100%),
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center / cover no-repeat;
    position: relative;
}
.why-us .section-head .label { color: var(--primary); }
.why-us .section-head h2 { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.5); }
.why-us .deco span { background: rgba(148,74,62,0.45); }
.why-us .deco i { color: rgba(148,74,62,0.7); }

/* ---- Carousel wrapper ---- */
.why-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 3rem;
}
.why-carousel {
    flex: 1;
    overflow: hidden;
}
.why-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ---- Cards ---- */
.why-card {
    flex: 0 0 auto;
    position: relative;
    padding: 2.6rem 2rem 2.4rem;
    background: rgba(0,0,0,0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid transparent;
    overflow: hidden;
    transition: border-top-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.why-card:hover {
    border-top-color: var(--primary);
    background: rgba(148,74,62,0.18);
    transform: translateY(-4px);
}

/* Ghost number */
.why-card-num {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.35s ease;
}
.why-card:hover .why-card-num { color: rgba(148,74,62,0.2); }

/* Icon */
.why-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(148,74,62,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.why-card:hover .why-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

/* Text */
.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}
.why-card:hover h4 { color: var(--primary); }
.why-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
}

/* ---- Nav arrows ---- */
.why-nav {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.why-nav svg { width: 20px; height: 20px; }
.why-nav:hover { background: var(--primary); border-color: var(--primary); }

/* ---- Dots ---- */
.why-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.why-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
    padding: 0;
}
.why-dot.active {
    background: var(--primary);
    width: 26px;
    border-radius: 4px;
}

/* ========================================
   ABOUT + NUMBERS
   ======================================== */
.about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a17 100%);
    padding: 6rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 4rem;
    align-items: center;
}

/* Left column — text + stats */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.about-text h2 { font-size: 2.5rem; margin: 0.5rem 0 1.5rem; line-height: 1.2; color: var(--white); }
.about-text p { color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; line-height: 1.8; font-size: 0.95rem; }
.link-arrow {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}
.link-arrow:hover { color: var(--white); }

/* Stats strip — 4 columns inline */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,0.1);
}
.about-stats .counter {
    text-align: center;
    padding: 1.5rem 0.8rem;
    background: transparent;
    border-radius: 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}
.about-stats .counter:last-child { border-right: none; }
.about-stats .counter:hover { background: rgba(255,255,255,0.04); }

.counter-val {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.05rem;
    line-height: 1;
    margin-bottom: 0.45rem;
}
.counter-val span {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1;
}
.counter-val sup {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}
.about-stats .counter p {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.4px;
    line-height: 1.4;
    margin-top: 0;
}

/* Right column — image panel */
.about-visual {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-visual img {
    width: 100%;
    display: block;
    aspect-ratio: 15 / 16;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-visual:hover img { transform: scale(1.04); }

.about-visual-badge {
    position: absolute;
    bottom: 2.2rem;
    left: -0.8rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.1rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    box-shadow: 0 12px 32px rgba(148,74,62,0.4);
}
.about-visual-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
}
.about-visual-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
}

/* ========================================
   GROW STRIP
   ======================================== */
.grow-strip {
    background: var(--primary);
    padding: 3rem 0;
}
.strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.strip-text h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.strip-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.btn-strip {
    flex-shrink: 0;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white);
}
.btn-strip:hover { background: transparent; color: var(--white); }

/* ========================================
   PROMISE
   ======================================== */
.promise {
    padding: 5rem 0;
    background: var(--cream-dark);
    border-top: 1px solid rgba(148, 74, 62, 0.1);
}
.promise h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    color: var(--primary);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}
.promise-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}
.promise-item { text-align: center; flex: 1; max-width: 180px; }
.promise-item svg {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 1.2rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
}
.promise-item h5 { font-size: 1rem; font-weight: 400; line-height: 1.6; font-family: 'Montserrat', sans-serif; }

/* ========================================
   COLLECTION CAROUSEL
   ======================================== */
.collection-section {
    background: var(--cream);
    padding: 5rem 0;
}
.col-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.col-header .label { color: var(--primary); }
.col-header h2 { color: var(--black); font-size: 2.2rem; font-weight: 400; }
.col-header h2 em { color: var(--primary); }

/* ---- Carousel wrapper ---- */
.col-carousel {
    position: relative;
    height: 520px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.col-track {
    position: absolute;
    inset: 0;
}

/* ---- Slides ---- */
.col-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}
.col-slide.active {
    opacity: 1;
    pointer-events: all;
}

/* ---- Background image ---- */
.col-bg {
    position: absolute;
    inset: 0;
}
.col-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.col-slide.active .col-bg img { transform: scale(1); }
.col-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.22) 0%,
        rgba(0,0,0,0.06) 45%,
        rgba(0,0,0,0.58) 60%,
        rgba(0,0,0,0.78) 100%
    );
}

/* ---- Content panel ---- */
@keyframes colPanelIn {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}
.col-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem 3rem 4.5rem;
    background: var(--cream);
    overflow: hidden;
}
.col-slide.active .col-panel {
    animation: colPanelIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
/* Vertical primary accent */
.col-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    height: 64%;
    width: 3px;
    background: var(--primary);
}

/* Ghost number */
.col-ghost {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 14rem;
    font-weight: 700;
    color: rgba(148,74,62,0.05);
    line-height: 1;
    right: -0.5rem;
    bottom: -1.5rem;
    letter-spacing: -7px;
    pointer-events: none;
    user-select: none;
}

/* Meta row */
.col-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.col-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 500;
}
.col-count i { color: var(--primary); font-style: normal; }
.col-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    padding: 0.25rem 0.75rem;
}

/* Heading & text */
.col-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.1rem;
    color: var(--black);
}
.col-panel h3 em { font-style: italic; color: var(--primary); }
.col-panel p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 320px;
    margin-bottom: 1.8rem;
}

/* CTA button */
.col-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary);
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s, gap 0.2s;
}
.col-cta:hover { background: var(--black); gap: 1rem; }
.col-cta span { display: inline-block; transition: transform 0.25s; }
.col-cta:hover span { transform: translateX(4px); }

/* ---- Arrow buttons ---- */
.col-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.28);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.3s, border-color 0.3s;
}
.col-nav:hover { background: var(--primary); border-color: var(--primary); }
.col-nav svg { width: 22px; height: 22px; }
.col-prev { left: 2rem; }
.col-next { left: calc(62% - 4.5rem); }

/* ---- Thumbnail strip ---- */
.col-thumbs {
    display: flex;
    border: 1px solid rgba(148,74,62,0.12);
    border-top: none;
    background: var(--white);
}
.col-thumb {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.1rem 0.5rem;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(148,74,62,0.1);
    color: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    border-bottom: 2px solid transparent;
}
.col-thumb:last-child { border-right: none; }
.col-thumb span {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    transition: color 0.25s;
}
.col-thumb em {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 2px;
    font-style: normal;
    text-transform: uppercase;
}
.col-thumb:hover { background: rgba(148,74,62,0.05); color: rgba(0,0,0,0.65); }
.col-thumb.active { color: var(--primary); border-bottom-color: var(--primary); background: rgba(148,74,62,0.06); }
.col-thumb.active span { color: var(--primary); }

/* ---- Progress bar ---- */
@keyframes colProgress {
    from { width: 0; }
    to   { width: 100%; }
}
.col-progress-wrap {
    height: 3px;
    background: rgba(148,74,62,0.1);
}
.col-progress-bar {
    height: 100%;
    background: var(--primary);
    animation: colProgress 5s linear forwards;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 5rem 0;
    background: var(--cream);
    overflow: hidden;
}
.test-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}
.test-preview {
    width: 200px;
    text-align: center;
    opacity: 0.5;
    transition: all 0.6s ease;
    cursor: pointer;
}
.test-preview:hover { opacity: 0.85; transform: scale(1.03); }
.test-preview.left { text-align: right; }
.test-preview.right { text-align: left; }
.test-preview img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.8rem;
    border: 3px solid rgba(148, 74, 62, 0.2);
    transition: all 0.6s ease;
}
.test-preview.left img { margin-left: auto; }
.test-preview p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; margin-bottom: 0.4rem; }
.test-preview span { font-size: 0.72rem; color: var(--primary); font-weight: 500; }
.test-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.test-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: scale(1.1); }
.test-main {
    background: var(--white);
    padding: 3rem 4rem;
    min-width: 500px;
    max-width: 560px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.test-card {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.test-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.test-card.prev { transform: translateX(-100%); opacity: 0; }
.test-card.next { transform: translateX(100%); opacity: 0; }
.test-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--cream);
    box-shadow: 0 8px 30px rgba(148, 74, 62, 0.15);
}
.test-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.test-card span { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--black);
    padding: 0;
}
.cta-inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a17 100%);
    padding: 6rem 2rem;
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.cta-content .label { color: var(--primary); margin-bottom: 1rem; }
.cta-content h2 { font-size: 2.8rem; color: var(--white); margin-bottom: 1.2rem; line-height: 1.2; }
.cta-content h2 em { color: var(--primary); }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
}
.btn-cta-primary:hover { background: var(--primary-dark); }
.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}
.btn-cta-wa svg { width: 20px; height: 20px; fill: white; }
.btn-cta-wa:hover { background: #1ebe5d; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--cream);
    position: relative;
}
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col h4 { font-size: 1rem; margin-bottom: 1.5rem; }
.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-col.right { text-align: right; }
.footer-center { text-align: center; }
.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}
.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.footer-tagline {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black);
    border-radius: 50%;
    transition: var(--transition);
}
.social a svg { width: 16px; height: 16px; stroke: var(--black); fill: none; stroke-width: 2; }
.social a:hover { background: var(--primary); border-color: var(--primary); }
.social a:hover svg { stroke: var(--white); }
.divider { width: 1px; height: 35px; background: rgba(0,0,0,0.15); margin: 1.2rem auto; }
.footer-center h5 { font-size: 0.9rem; margin-bottom: 0.8rem; }
.footer-center p { font-size: 0.88rem; color: var(--gray); margin-bottom: 0.4rem; }
.address { margin-top: 0.8rem; line-height: 1.6; }
.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.scroll-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }

/* ========================================
   MOBILE DRAWER
   ======================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.mobile-nav.active { right: 0; }
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.mobile-nav-header span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 3px;
}
.close-menu {
    width: 35px;
    height: 35px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
}
.mobile-nav-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav-links a {
    padding: 14px 15px;
    text-decoration: none;
    color: var(--black);
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.2s;
}
.mobile-nav-links a:hover { background: var(--cream); color: var(--primary); }
.mobile-nav-links a.nav-active { color: var(--primary); font-weight: 600; }
.mobile-nav-links a.highlight {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    margin-top: 10px;
    border-radius: 8px;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ========================================
   RESPONSIVE — TABLET (1024px)
   ======================================== */
@media (max-width: 1024px) {
    /* Pillars — 2 columns on tablet */
    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .pillar-img { height: 260px; }
    /* Services — reduce padding on tablet */
    .services-wrap { min-height: 260px; }
    .services-content { padding: 1.5rem 1.5rem; }
    .svc-head h2 { font-size: 1.7rem; }
    /* How It Works — compact on tablet */
    .hiw-img { height: 360px; }
    .hiw-text { padding: 2.5rem 3rem; }
    .hiw-text h3 { font-size: 1.8rem; }
    /* Showcase — 3 col on tablet */
    .showcase-grid.active { grid-template-columns: repeat(3, 1fr); }
    .tab-btn { padding: 0.8rem 1.8rem; }
    .why-carousel-wrap { gap: 0.8rem; }
    .custom-grid { grid-template-columns: 1fr; gap: 3rem; }
    .custom-img-small { right: 0; bottom: -1rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-stats { grid-template-columns: repeat(4, 1fr); }
    .about-visual { max-height: 480px; }
    .about-visual img { aspect-ratio: 4 / 3; }
    .about-visual-badge { left: 0; }
    /* Collection Carousel — tablet */
    .col-carousel { height: 460px; }
    .col-panel { width: 44%; padding: 2.5rem 2.5rem 2.5rem 3.5rem; }
    .col-next { left: calc(56% - 4.5rem); }
    .col-panel h3 { font-size: 2rem; }
    .col-ghost { font-size: 10rem; }
    .test-preview { display: none; }
    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .footer-col, .footer-col.right { text-align: center; }
    .b2b-slide { flex-direction: column; gap: 1rem; padding: 1.5rem; }
    .b2b-image { flex: 0 0 140px; height: 140px; margin: 0 auto; }
}

/* ========================================
   RESPONSIVE — MOBILE (768px)
   ======================================== */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 15px; }

    /* Header */
    .nav-left, .nav-right { display: none; }
    .mobile-menu { display: flex; }
    .header-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }
    .logo-img { height: 34px; }

    /* Hero */
    .hero { margin-top: 55px; height: 75vh; min-height: 380px; }
    .slide-content { left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 90%; }
    .slide-tag { font-size: 0.6rem; letter-spacing: 2px; }
    .slide-content h1 { font-size: 2rem; margin-bottom: 0.8rem; }
    .slide-content p { font-size: 0.85rem; margin-bottom: 1.2rem; }
    .slide-btns { gap: 0.6rem; }
    .btn-hero, .btn-hero-outline { padding: 0.7rem 1.4rem; font-size: 0.7rem; }
    .hero-nav { display: none; }
    .hero-dots { bottom: 1.5rem; right: 1.5rem; gap: 5px; }
    .dot { width: 6px; height: 6px; }
    .dot.active { height: 18px; }
    .scroll-hint { display: none; }

    /* Clients marquee */
    .clients { padding: 10px 0; }

    /* Section heads */
    .section-head { margin-bottom: 1.5rem; }
    .section-head h2 { font-size: 1.5rem; }

    /* Pillars — single column on mobile */
    .products-hero { padding: 2rem 0 3rem; }
    .pillars-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .pillar-img { height: 240px; }
    .pillar-body { padding: 1.4rem 1.5rem 1.8rem; }
    .pillar-body h3 { font-size: 1.4rem; }
    .pillar-body p { font-size: 0.84rem; }

    /* Services — stack on mobile */
    .services { padding: 3rem 0; }
    .services-wrap { grid-template-columns: 1fr; min-height: auto; }
    .services-visual { min-height: 45vw; }
    .svo-big { font-size: 4rem; }
    .svo-tag { font-size: 1.5rem; }
    .services-visual-overlay { bottom: 1.5rem; left: 1.5rem; }
    .services-content { padding: 2.5rem 1.5rem; }
    .svc-head h2 { font-size: 1.7rem; }

    /* How It Works — stack on mobile */
    .how-it-works { padding: 3rem 0 2rem; }
    .hiw-row, .hiw-reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hiw-row .hiw-img,
    .hiw-reverse .hiw-img { order: 1 !important; height: 260px; }
    .hiw-row .hiw-text,
    .hiw-reverse .hiw-text { order: 2 !important; padding: 2rem 1.5rem; }
    .hiw-reverse .hiw-badge { left: 1.5rem; right: auto; }
    .hiw-ghost-num { font-size: 7rem; }
    .hiw-text h3 { font-size: 1.6rem; }
    .hiw-text p { max-width: 100%; }
    /* disable slide-in on small screens — just fade */
    .hiw-animate-left .hiw-img, .hiw-animate-left .hiw-text,
    .hiw-animate-right .hiw-img, .hiw-animate-right .hiw-text {
        transform: translateY(20px);
    }
    .hiw-animate-left.in-view .hiw-img, .hiw-animate-left.in-view .hiw-text,
    .hiw-animate-right.in-view .hiw-img, .hiw-animate-right.in-view .hiw-text {
        transform: translateY(0);
    }

    /* Showcase — 2 col on mobile */
    .product-showcase { padding: 3rem 0; }
    .showcase-grid.active { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .tab-btn { padding: 0.7rem 1.2rem; font-size: 0.65rem; letter-spacing: 2px; }
    .showcase-body h5 { font-size: 0.88rem; }
    .showcase-footer p { font-size: 0.88rem; }

    /* B2B */
    .b2b-section { padding: 3rem 0; }
    .b2b-slides { height: auto; perspective: none; }
    .b2b-slide {
        position: absolute;
        width: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.4s ease;
        flex-direction: column;
        background: rgba(35, 35, 35, 1);
    }
    .b2b-slide.active {
        position: relative;
        opacity: 1;
        transform: translateX(0);
    }
    .b2b-slide.prev { transform: translateX(-100%); }
    .b2b-slide.next { transform: translateX(100%); }
    .b2b-nav { display: none !important; }
    .b2b-content { text-align: center; }
    .b2b-features { justify-content: center; }

    /* Custom */
    .custom-section { padding: 3rem 0; }
    .custom-grid { gap: 2rem; }
    .custom-img-wrap { height: 300px; }
    .custom-badge { left: 0.5rem; width: 75px; height: 75px; }
    .custom-img-small { width: 120px; height: 120px; right: 0; bottom: -0.5rem; }
    .custom-text h2 { font-size: 1.8rem; }

    /* Why us */
    .why-us { padding: 3rem 0; }
    .why-card { padding: 2rem 1.4rem; }
    .why-card-num { font-size: 4rem; }
    .why-icon { width: 44px; height: 44px; margin-bottom: 1.2rem; }
    .why-icon svg { width: 20px; height: 20px; }
    .why-nav { width: 40px; height: 40px; }
    .why-nav svg { width: 16px; height: 16px; }

    /* About */
    .about-section { padding: 3rem 0; }
    .about-grid { gap: 2rem; }
    .about-left { gap: 2rem; }
    .about-text h2 { font-size: 1.8rem; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-stats .counter { padding: 1.2rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .about-stats .counter:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .about-stats .counter:nth-child(even) { border-right: none; }
    .counter-val span { font-size: 1.9rem; }
    .counter-val sup { font-size: 1rem; }
    .about-visual img { aspect-ratio: 16 / 9; }
    .about-visual-badge { bottom: 1.5rem; left: 0; padding: 0.9rem 1.2rem; }
    .about-visual-badge strong { font-size: 1.6rem; }

    /* Grow strip */
    .strip-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .strip-text h3 { font-size: 1.2rem; }

    /* Promise */
    .promise { padding: 3rem 0; }
    .promise h2 { font-size: 1.5rem; margin-bottom: 2rem; }
    .promise-grid { flex-wrap: wrap; gap: 2rem; justify-content: center; }
    .promise-item { max-width: 130px; }

    /* Collection Carousel — mobile stack */
    .collection-section { padding: 3rem 0 3rem; }
    .col-header { margin-bottom: 1.5rem; }
    .col-header h2 { font-size: 1.6rem; }
    .col-carousel { height: auto; overflow: visible; }
    .col-track { position: relative; inset: auto; }
    .col-slide { position: absolute; opacity: 0; display: none; pointer-events: none; }
    .col-slide.active { position: relative; opacity: 1; display: block; pointer-events: all; }
    .col-slide.active .col-panel { animation: none; }
    .col-bg { height: 280px; position: relative; overflow: hidden; }
    .col-bg img { position: absolute; inset: 0; width: 100%; height: 100%; transform: scale(1); }
    .col-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)); }
    .col-panel { position: relative; width: 100%; right: auto; top: auto; bottom: auto; padding: 2rem 1.5rem; }
    .col-panel::before { top: 0; height: 3px; width: 60px; bottom: auto; left: 1.5rem; }
    .col-ghost { font-size: 7rem; }
    .col-panel h3 { font-size: 1.7rem; }
    .col-panel p { max-width: 100%; }
    .col-nav { display: none; }
    .col-thumbs { flex-wrap: wrap; }
    .col-thumb { min-width: 33.33%; border-bottom: 1px solid rgba(148,74,62,0.1); }
    .col-thumb em { display: none; }

    /* Testimonials */
    .testimonials { padding: 3rem 0; }
    .test-main { min-width: 0; flex: 1; padding: 2rem 1.5rem; }
    .test-card p { font-size: 0.88rem; }
    .test-btn { width: 40px; height: 40px; font-size: 1rem; }

    /* CTA */
    .cta-inner { padding: 4rem 1.5rem; }
    .cta-content h2 { font-size: 1.8rem; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-cta-primary, .btn-cta-wa { width: 100%; max-width: 280px; justify-content: center; }

    /* Footer */
    .footer-main { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .footer-col { display: none; }
    .footer-bottom { padding: 1rem; }

    /* Floating */
    .whatsapp-btn { width: 50px; height: 50px; bottom: 1.2rem; right: 1.2rem; }
    .whatsapp-btn svg { width: 24px; height: 24px; }
    .scroll-top { width: 40px; height: 40px; bottom: 5rem; right: 1.2rem; font-size: 1rem; }
}

/* ========================================
   EXTRA SMALL (480px)
   ======================================== */
@media (max-width: 480px) {
    .hero { height: 70vh; min-height: 320px; }
    .slide-content h1 { font-size: 1.7rem; }
    .pillar-img { height: 210px; }
    .showcase-grid.active { grid-template-columns: repeat(2, 1fr); }
    .pillar-body h3 { font-size: 1.25rem; }
    /* Collection Carousel — 480px */
    .col-panel h3 { font-size: 1.45rem; }
    .col-ghost { font-size: 5.5rem; }
    .col-thumb { min-width: 50%; }
    .why-card { padding: 1.6rem 1rem; }
    .why-card-num { font-size: 3.5rem; }
    .why-nav { display: none; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .cta-content h2 { font-size: 1.5rem; }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   INNER PAGE HERO (Simple title section)
   ======================================== */
.page-hero {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a17 100%);
    text-align: center;
    margin-top: 70px;
}
.page-hero .label { display: block; margin-bottom: 0.8rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.5rem); color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--primary); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 1.5rem; font-size: 0.95rem; }
.breadcrumb { display: flex; gap: 0.5rem; justify-content: center; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .bc-sep { color: rgba(255,255,255,0.2); }
.breadcrumb .bc-current { color: var(--primary); }
@media (max-width: 768px) { .page-hero { margin-top: 55px; padding: 3.5rem 0 2.5rem; } }

/* ========================================
   SERVICES PAGE
   ======================================== */

/* Stats bar */
.svc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 3rem 0; }
.svc-stat { text-align: center; }
.svc-stat .stat-val { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--primary); font-weight: 600; line-height: 1; margin-bottom: 0.4rem; }
.svc-stat .stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); font-weight: 600; }

/* Service detail row — alternating image + text */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 5rem 0; }
.svc-row.reverse { direction: rtl; }
.svc-row.reverse > * { direction: ltr; }
.svc-row-img { position: relative; border-radius: 4px; overflow: hidden; }
.svc-row-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.6s ease; }
.svc-row-img:hover img { transform: scale(1.04); }
.svc-row-num { position: absolute; top: 1.2rem; left: 1.2rem; width: 52px; height: 52px; border: 2px solid var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); z-index: 2; background: rgba(0,0,0,0.3); backdrop-filter: blur(6px); }
.svc-row-text .svc-icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid rgba(148,74,62,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.svc-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.svc-row-text .svc-label { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; display: block; }
.svc-row-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; line-height: 1.2; }
.svc-row-text > p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.svc-row-text ul { list-style: none; margin-bottom: 1.8rem; }
.svc-row-text ul li { font-size: 0.82rem; color: var(--gray); padding: 0.35rem 0; padding-left: 1.6rem; position: relative; line-height: 1.6; }
.svc-row-text ul li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 8px; height: 8px; border: 1.5px solid var(--primary); border-radius: 50%; }
.svc-row-text .svc-btn { display: inline-block; padding: 0.8rem 1.8rem; background: none; border: 1.5px solid var(--black); font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--black); text-decoration: none; transition: var(--transition); }
.svc-row-text .svc-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Alternating bg */
.svc-section:nth-child(even) { background: var(--cream-dark); }
.svc-section:nth-child(odd) { background: var(--cream); }

/* 6-service mini card grid */
.svc-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 3rem 0; }
.svc-mini-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); padding: 1.8rem 1.4rem; text-align: center; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.svc-mini-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(148,74,62,0.1); border-color: var(--primary); }
.svc-mini-card .svc-mini-icon { width: 48px; height: 48px; border: 1.5px solid rgba(148,74,62,0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); margin: 0 auto 1rem; transition: background 0.3s, border-color 0.3s, color 0.3s; }
.svc-mini-card:hover .svc-mini-icon { background: var(--primary); border-color: var(--primary); color: var(--white); }
.svc-mini-card .svc-mini-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-mini-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.svc-mini-card p { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }

/* Process strip */
.process-strip { background: linear-gradient(135deg, #1a1a1a 0%, #2a1a17 50%, #1a1a1a 100%); padding: 5rem 0; position: relative; overflow: hidden; }
.process-strip::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?w=1600') center/cover; opacity: 0.06; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(148,74,62,0.5), transparent); }
.process-step { text-align: center; position: relative; }
.process-step .step-num { width: 64px; height: 64px; border: 2px solid var(--primary); background: transparent; color: var(--primary); font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; position: relative; z-index: 1; transition: background 0.3s, color 0.3s; }
.process-step:hover .step-num { background: var(--primary); color: var(--white); }
.process-step h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 200px; margin: 0 auto; }
.process-step .step-icon { color: var(--primary); margin-bottom: 0.8rem; }
.process-step .step-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

@media (max-width: 992px) {
    .svc-row { gap: 2.5rem; }
    .svc-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
    .svc-row { grid-template-columns: 1fr; gap: 2rem; }
    .svc-row.reverse { direction: ltr; }
    .svc-mini-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-steps::before { display: none; }
    .svc-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   B2B PAGE
   ======================================== */
/* B2B Why Grid (responsive for why-card on B2B) */
.b2b-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Manufacturing Detail Sections */
.mfg-detail-section { padding: 4rem 0; }
.mfg-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.mfg-detail.reverse { direction: rtl; }
.mfg-detail.reverse > * { direction: ltr; }
.mfg-detail-gallery { position: sticky; top: 90px; }
.mfg-gallery-main {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 0.8rem;
}
.mfg-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mfg-gallery-main:hover img { transform: scale(1.04); }
.mfg-detail-num {
    position: absolute;
    bottom: 1rem;
    right: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    line-height: 1;
    pointer-events: none;
}
.mfg-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}
.mfg-thumb {
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.mfg-thumb:hover { border-color: var(--primary); }
.mfg-thumb img { width: 100%; height: 100%; object-fit: cover; }

.mfg-card-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(148,74,62,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}
.mfg-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.mfg-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    margin-bottom: 1.5rem;
}
.mfg-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
}
.mfg-feat svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.mfg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}
.mfg-tags span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(148,74,62,0.3);
    color: var(--primary);
    transition: background 0.3s, color 0.3s;
}
.mfg-tags span:hover {
    background: var(--primary);
    color: var(--white);
}
.mfg-detail-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}
.mfg-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 0.7rem 1.4rem;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.mfg-pdf-btn svg { width: 16px; height: 16px; }
.mfg-pdf-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(148,74,62,0.05);
}

/* Partner Steps */
.partner-steps { counter-reset: partner-step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin: 3rem 0; }
.partner-step { text-align: center; padding: 1.5rem 1rem; position: relative; counter-increment: partner-step; }
.partner-step::before { content: counter(partner-step); display: block; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.3rem; line-height: 48px; margin: 0 auto 0.8rem; }
.partner-step h5 { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.3rem; }
.partner-step p { font-size: 0.78rem; color: var(--gray); }
@media (max-width: 992px) {
    .b2b-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .mfg-detail { grid-template-columns: 1fr; gap: 2.5rem; }
    .mfg-detail.reverse { direction: ltr; }
    .mfg-detail-gallery { position: static; }
    .partner-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .mfg-detail-features { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .b2b-why-grid { grid-template-columns: 1fr 1fr !important; }
    .partner-steps { grid-template-columns: repeat(2, 1fr); }
    .mfg-detail-actions { flex-direction: column; align-items: flex-start; }
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.timeline { position: relative; padding: 3rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(148,74,62,0.3); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 1.5rem; align-items: start; margin-bottom: 3rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content-left { text-align: right; padding-top: 0.3rem; }
.timeline-content-right { padding-top: 0.3rem; }
.timeline-dot { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.75rem; color: var(--white); flex-direction: column; line-height: 1.2; text-align: center; position: relative; z-index: 1; }
.timeline-dot .tl-year { font-size: 1rem; font-weight: 400; }
.timeline-content-left h4,
.timeline-content-right h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.4rem; }
.timeline-content-left p,
.timeline-content-right p { font-size: 0.85rem; color: var(--gray); }
/* About Values Grid (uses .why-card from homepage) */
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Capabilities Grid */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}
.cap-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-top: 3px solid transparent;
    padding: 2.4rem 2rem;
    overflow: hidden;
    transition: border-top-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.cap-card:hover {
    border-top-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cap-card-num {
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.35s ease;
}
.cap-card:hover .cap-card-num { color: rgba(148,74,62,0.12); }
.cap-card-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(148,74,62,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.3rem;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.cap-card:hover .cap-card-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.cap-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.cap-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}
.cap-card:hover h4 { color: var(--primary); }
.cap-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.85;
}
@media (max-width: 768px) {
    .timeline::before { left: 30px; }
    .timeline-item { grid-template-columns: 60px 1fr; grid-template-rows: auto; }
    .timeline-content-left { display: none; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .cap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .about-values-grid { grid-template-columns: 1fr 1fr !important; }
    .cap-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CUSTOM ORDER PAGE
   ======================================== */
/* Custom Order Category Cards */
.co-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}
.co-cat-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.co-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}
.co-cat-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.co-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.co-cat-card:hover .co-cat-img img { transform: scale(1.05); }
.co-cat-body { padding: 2rem 1.8rem 2.2rem; }
.co-cat-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(148,74,62,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.co-cat-card:hover .co-cat-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.co-cat-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.co-cat-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 0.5rem; }
.co-cat-body > p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.co-cat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.co-cat-list li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 2;
}
.co-cat-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}
.co-cat-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}
.co-cat-btn:hover { color: var(--black); border-color: var(--black); }

/* Product Story — Slider */
.co-story-slider { position: relative; }
.co-story {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    opacity: 0;
}
.co-story.active-slide {
    display: grid;
    animation: coSlideIn 0.45s ease forwards;
}
.co-story.reverse { direction: rtl; }
.co-story.reverse > * { direction: ltr; }
@keyframes coSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 4-Image Process Collage */
.co-story-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.co-collage-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.co-collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.co-collage-img:hover img { transform: scale(1.06); }
.co-collage-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 0.7rem 0.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

/* Story Content */
.co-story-content {
    position: relative;
    padding-top: 0.5rem;
}
.co-story-num {
    position: absolute;
    top: -0.5rem;
    right: 0;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    pointer-events: none;
}
.co-story-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.co-story-text {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.co-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.co-stat { text-align: center; }
.co-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}
.co-stat span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}
.co-story-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: var(--black);
}
.co-story-price em {
    font-style: normal;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}
.co-story-cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: background 0.3s;
}
.co-story-cta:hover { background: #7a3b31; }

/* Slider Navigation Arrows */
.co-story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 3;
    color: var(--black);
    transition: all 0.3s;
}
.co-story-nav:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.co-story-prev { left: -24px; }
.co-story-next { right: -24px; }

/* Slider Dots */
.co-story-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}
.co-story-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.co-story-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Materials */
.materials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.material-card { background: var(--white); border: 1px solid rgba(0,0,0,0.08); overflow: hidden; transition: var(--transition); }
.material-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.material-card img { width: 100%; height: 180px; object-fit: cover; }
.material-card-body { padding: 1.5rem; }
.material-card-body h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
.material-card-body p { font-size: 0.82rem; color: var(--gray); }

/* FAQ */
.faq-list { margin: 2rem 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.2rem 0; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--black); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer p { padding-bottom: 1.2rem; font-size: 0.85rem; color: var(--gray); }
.faq-item.open .faq-answer { max-height: 300px; }
@media (max-width: 992px) {
    .co-cat-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .co-story.active-slide { grid-template-columns: 1fr; gap: 2rem; }
    .co-story.reverse { direction: ltr; }
    .co-story-collage { max-width: 520px; }
    .co-story-num { font-size: 4rem; }
    .co-story-prev { left: 0; }
    .co-story-next { right: 0; }
}
@media (max-width: 768px) {
    .materials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .materials-grid { grid-template-columns: 1fr; }
    .co-story-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .co-stat strong { font-size: 1.1rem; }
    .co-stat span { font-size: 0.55rem; }
    .co-story-content h3 { font-size: 1.4rem; }
    .co-story-nav { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; padding: 4rem 0; }
.contact-form { background: var(--white); padding: 3rem; border-radius: 4px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.4rem; }
.contact-form > p { color: var(--gray); font-size: 0.85rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 0.4rem; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; border: 1px solid rgba(0,0,0,0.15); background: var(--cream); padding: 0.75rem 1rem; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; border-radius: 3px; transition: border-color 0.3s; outline: none; color: var(--black); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { padding-top: 1rem; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
.contact-info > p { color: var(--gray); font-size: 0.85rem; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-detail .cd-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h5 { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.88rem; color: var(--gray); }
.contact-detail a { font-size: 0.88rem; color: var(--gray); text-decoration: none; }
.contact-detail a:hover { color: var(--primary); }
.social-row { display: flex; gap: 1rem; margin-top: 2rem; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; color: var(--black); transition: var(--transition); }
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.map-strip { background: #1a1a1a; padding: 1rem 0; text-align: center; }
.map-placeholder { background: rgba(255,255,255,0.05); border: 1px dashed rgba(255,255,255,0.15); border-radius: 4px; padding: 4rem 2rem; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   PRODUCTS PAGE — CATEGORY CAROUSEL
   ======================================== */
.cat-wrapper { position: relative; display: flex; align-items: center; gap: 0.5rem; }
.cat-nav { width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 1px solid rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; font-size: 1rem; color: var(--black); transition: var(--transition); z-index: 2; }
.cat-nav:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cat-scroll { display: flex; gap: 2rem; overflow-x: auto; scroll-behavior: smooth; padding: 1rem 0; scrollbar-width: none; -ms-overflow-style: none; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-item { flex: 0 0 auto; text-align: center; text-decoration: none; color: var(--black); transition: var(--transition); }
.cat-item:hover { transform: translateY(-4px); }
.cat-circle { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(148,74,62,0.15); margin: 0 auto 0.8rem; transition: var(--transition); }
.cat-item:hover .cat-circle { border-color: var(--primary); box-shadow: 0 8px 30px rgba(148,74,62,0.2); }
.cat-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-item:hover .cat-circle img { transform: scale(1.1); }
.cat-item span { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* ========================================
   PRODUCTS PAGE — GENDER SECTIONS
   ======================================== */
.gender-section { padding: 5rem 0; }
.gender-section.for-her { background: var(--cream-dark); }
.gender-section.for-him { background: #f5f0eb; }
.gender-section.unisex { background: var(--cream); }
.gender-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.gender-head-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.3rem; }
.gender-head-text p { color: var(--gray); font-size: 0.88rem; }
.btn-view-all-outline { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; color: var(--black); border: 1.5px solid var(--black); padding: 0.7rem 1.5rem; transition: var(--transition); }
.btn-view-all-outline:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ========================================
   PRODUCT CARD (Matches homepage showcase style)
   ======================================== */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.prod-card { background: var(--white); overflow: hidden; text-decoration: none; color: var(--black); display: block; border: 1px solid rgba(0,0,0,0.06); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(0,0,0,0.1); }
.prod-card .prod-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.prod-card .prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-card .prod-badge { position: absolute; top: 0.8rem; left: 0.8rem; background: var(--primary); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.55rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; padding: 0.25rem 0.65rem; z-index: 1; }
.prod-card .prod-info { padding: 0.9rem 1rem 1.1rem; }
.prod-card .prod-cat { font-size: 0.55rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 0.25rem; display: block; }
.prod-card .prod-info h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; margin-bottom: 0.25rem; font-weight: 500; line-height: 1.3; }
.prod-card .prod-price { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; display: block; }
.prod-card .prod-price .old-price { text-decoration: line-through; color: var(--gray-light); font-weight: 400; font-size: 0.72rem; margin-left: 0.5rem; }
.prod-card .prod-link { font-size: 0.68rem; letter-spacing: 1px; color: var(--gray); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.prod-card:hover .prod-link { color: var(--primary); }

/* ========================================
   PRODUCT LIST PAGE
   ======================================== */
.product-list-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; padding: 4rem 0; }
.filter-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-group { margin-bottom: 2rem; }
.filter-group h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--primary); }
.filter-group label { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.85rem; cursor: pointer; color: var(--gray); transition: color 0.3s; }
.filter-group label:hover { color: var(--black); }
.filter-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.filter-group input[type="range"] { width: 100%; accent-color: var(--primary); }
.filter-price-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--gray); margin-top: 0.3rem; }
.active-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.filter-tag { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--cream-dark); border: 1px solid rgba(148,74,62,0.2); padding: 0.3rem 0.8rem; font-size: 0.72rem; border-radius: 20px; color: var(--primary); font-weight: 600; letter-spacing: 0.5px; }
.filter-tag .remove-filter { cursor: pointer; font-size: 0.85rem; line-height: 1; }
.list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.list-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.list-header .result-count { font-size: 0.82rem; color: var(--gray); }
.sort-select { border: 1px solid rgba(0,0,0,0.15); padding: 0.5rem 1rem; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; background: var(--white); border-radius: 3px; outline: none; cursor: pointer; }
.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.load-more-wrap { text-align: center; margin-top: 3rem; }
.btn-load-more { display: inline-block; padding: 0.8rem 2.5rem; border: 1.5px solid var(--black); background: none; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-load-more:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.mobile-filter-btn { display: none; position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 99; padding: 0.8rem 2rem; background: var(--black); color: var(--white); border: none; border-radius: 30px; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
@media (max-width: 992px) {
    .product-list-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--white); z-index: 1001; padding: 2rem; overflow-y: auto; transition: left 0.3s; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
    .filter-sidebar.open { left: 0; }
    .mobile-filter-btn { display: block; }
    .list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .list-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem 0; align-items: start; }
.pd-gallery { position: sticky; top: 90px; }
.pd-main-img { border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 1rem; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; cursor: zoom-in; }
.pd-main-img:hover img { transform: scale(1.05); }
.pd-thumbs { display: flex; gap: 0.6rem; }
.pd-thumb { width: 72px; height: 72px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color 0.3s; }
.pd-thumb.active { border-color: var(--primary); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info { padding-top: 0.5rem; }
.pd-info .prod-cat { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; display: block; }
.pd-info h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 0.8rem; }
.pd-info .pd-price { font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; }
.pd-info .pd-price .old-price { text-decoration: line-through; color: var(--gray-light); font-weight: 400; font-size: 1.1rem; margin-left: 0.8rem; }
.pd-info .pd-desc { color: var(--gray); line-height: 1.8; font-size: 0.9rem; margin-bottom: 2rem; }
.pd-specs { margin-bottom: 2rem; }
.pd-specs h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.pd-spec-row { display: flex; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 0.6rem 0; }
.pd-spec-row .spec-label { width: 140px; font-size: 0.82rem; color: var(--gray); flex-shrink: 0; }
.pd-spec-row .spec-value { font-size: 0.82rem; font-weight: 500; }
.pd-actions { display: flex; gap: 1rem; margin-bottom: 2rem; }
.pd-actions .btn-enquire { flex: 1; padding: 1rem; background: var(--primary); color: var(--white); border: none; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; border-radius: 3px; transition: var(--transition); text-align: center; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.pd-actions .btn-enquire:hover { background: var(--black); }
.pd-actions .btn-wa { flex: 1; padding: 1rem; background: #25d366; color: var(--white); border: none; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; border-radius: 3px; transition: var(--transition); text-align: center; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.pd-actions .btn-wa:hover { background: #1da851; }
.pd-trust { display: flex; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid rgba(0,0,0,0.06); }
.pd-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--gray); }
.pd-trust-item .trust-icon { font-size: 1.2rem; }
.related-section { padding: 4rem 0; background: var(--cream-dark); }
@media (max-width: 768px) {
    .pd-layout { grid-template-columns: 1fr; gap: 2rem; }
    .pd-gallery { position: static; }
    .pd-actions { flex-direction: column; }
    .pd-trust { flex-wrap: wrap; gap: 1rem; }
}

/* Product card responsive */
@media (max-width: 992px) {
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-circle { width: 110px; height: 110px; }
}
@media (max-width: 768px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-card .prod-img { height: 200px; }
    .prod-card .prod-overlay { display: none; }
    .cat-circle { width: 85px; height: 85px; }
    .cat-scroll { gap: 1.2rem; }
    .cat-item span { font-size: 0.6rem; }
    .gender-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 480px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .prod-card .prod-img { height: 170px; }
    .prod-card .prod-info { padding: 0.8rem; }
    .prod-card .prod-info h4 { font-size: 0.85rem; }
    .cat-circle { width: 70px; height: 70px; }
}
