/* ============================================================
   KISAC FAIR TRADE — MASTER UNIFIED STYLESHEET
   Aesthetic: Light Cream Luxury / High-End Gallery
   Version: 13.0 (Mobile-First Responsive Edition)
============================================================ */

/* 1. VARIABLES & RESET */
:root {
    --bg:          #F5F0E8;
    --bg-off:      #EDE8DC;
    --bg-dark:     #1A1208;
    --bg-card:     #FFFFFF;
    --gold:        #B8860B;
    --gold-light:  #DAAB2D;
    --gold-dim:    #96700A;
    --text:        #1A1208;
    --text-muted:  #6B6355;
    --text-dim:    #9A9080;
    --border:      rgba(184,134,11,0.15);
    --border-hard: #D8D0C0;
    --shadow:      0 4px 30px rgba(26,18,8,0.08);
    --shadow-lg:   0 20px 60px rgba(26,18,8,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 2. TYPOGRAPHY */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 6vw, 5rem); letter-spacing: -1px; line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3.5vw, 3rem); line-height: 1.1; }
p { line-height: 1.8; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.subtitle, .gold-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.65rem;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

/* ============================================================
   3. NAVBAR — with hamburger for mobile
============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(245,240,232,0.97);
    border-bottom: 1px solid var(--border-hard);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.logo {
    color: var(--text);
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 6px;
    cursor: pointer;
    flex-shrink: 0;
}
.logo::after { content: '·'; color: var(--gold); margin-left: 4px; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    font-weight: 400;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
    color: var(--text);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

/* 4. HERO BASE */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,18,8,0.18) 0%, rgba(26,18,8,0.32) 60%, rgba(26,18,8,0.68) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 20px; }
.hero-content h1, .hero-content h2 { color: #FFFFFF; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content .subtitle, .hero-content .gold-label { color: var(--gold-light); }

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.val { color: var(--gold-light); display: block; font-size: 1.3rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.lab { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.7); display: block; margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* 5. BUTTONS */
.btn-gold-solid {
    display: inline-block;
    background: var(--gold-light);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-gold-solid:hover { background: #c29828; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(184,134,11,0.25); }

.btn-gold-outline {
    display: inline-block;
    background: none;
    border: 1px solid rgba(26,18,8,0.4);
    color: var(--text);
    padding: 13px 32px;
    font-size: 0.68rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}
.btn-gold-outline:hover { background: rgba(0,0,0,0.03); border-color: var(--text); }

.btn-view-piece {
    background: none;
    border: 1px solid var(--border-hard);
    color: var(--text-muted);
    padding: 11px 20px;
    width: 100%;
    cursor: pointer;
    font-size: 0.62rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    margin-top: 14px;
}
.btn-view-piece:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.btn-whatsapp-direct {
    display: inline-block;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.72rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 12px;
}
.btn-whatsapp-direct:hover { background: #128C7E; }

.btn-gold {
    background: var(--gold-light);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}
.btn-gold:hover { background: #c29828; }

/* 6. FOOTER */
.main-footer { background: var(--bg-dark); padding: 80px 8% 40px; border-top: 1px solid rgba(255,255,255,0.05); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 1.4rem; letter-spacing: 6px; margin-bottom: 12px; display: block; }
.footer-location { color: #555; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { color: var(--gold-light); font-size: 0.72rem; text-decoration: none; border: 1px solid rgba(218,171,45,0.25); padding: 7px 14px; transition: background 0.3s, color 0.3s; }
.social-links a:hover { background: var(--gold-light); color: #000; }

.footer-col h4 { color: var(--gold-light); text-transform: uppercase; font-size: 0.65rem; letter-spacing: 3px; margin-bottom: 22px; font-weight: 500; font-family: 'Poppins', sans-serif; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #777; text-decoration: none; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-hours { list-style: none; padding: 0; }
.footer-hours li { margin-bottom: 10px; }
.hours-day { color: var(--gold-light); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 3px; }
.hours-time { color: #999; font-size: 0.75rem; }
.hours-note { color: #444; font-size: 0.62rem; letter-spacing: 1px; margin-top: 10px; display: block; }

.location-list { list-style: none; padding: 0; }
.location-list li { color: #666; font-size: 0.72rem; margin-bottom: 13px; text-transform: uppercase; letter-spacing: 1px; }
.location-list strong { color: var(--gold-light); display: block; margin-bottom: 2px; font-size: 0.65rem; letter-spacing: 2px; }

.about-col p { color: #777; font-size: 0.8rem; line-height: 1.9; margin-bottom: 14px; }
.about-col strong { color: var(--gold-light); font-size: 0.82rem; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); margin: 40px 0 20px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.58rem; color: #333; letter-spacing: 2px; text-transform: uppercase; margin: 0; }
.footer-tagline { font-size: 0.58rem; color: #333; letter-spacing: 1px; font-style: italic; }

/* 7. HOME PAGE */
.home-hero {
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('js/assets/bannerimage.jpg') no-repeat center center / cover;
}

.hero-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 10px; }

.hero-btn {
    width: auto !important;
    padding: 16px 50px !important;
    margin-top: 30px !important;
    font-size: 0.72rem;
    letter-spacing: 3px;
    background: var(--gold-light) !important;
    color: #000 !important;
    display: inline-block;
    text-decoration: none;
}
.hero-btn:hover { background: #fff !important; color: #000 !important; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

.mission-statement-section {
    padding: 100px 8%;
    background: var(--bg);
    border-bottom: 1px solid var(--border-hard);
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
    align-items: center;
}

.mission-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 30px;
}

.mission-detail p {
    color: var(--text-muted);
    font-size: 1rem;
    border-left: 2px solid var(--gold);
    padding-left: 30px;
}

.impact-bar {
    background: #fff;
    border-top: 1px solid var(--border-hard);
    border-bottom: 1px solid var(--border-hard);
    padding: 60px 8%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.impact-stat { text-align: center; flex: 1; min-width: 120px; }
.impact-stat .stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 10px; }
.impact-stat .stat-label { color: var(--text-muted); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 3px; }
.impact-bar-divider { width: 1px; height: 60px; background: var(--border-hard); flex-shrink: 0; }

.home-value {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 100px 8%;
    background: var(--bg-off);
    gap: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-hard);
}

.value-box { text-align: center; flex: 1; min-width: 180px; max-width: 260px; }
.value-icon { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 25px; }
.value-box h3 { color: var(--text); font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 12px; }
.value-box p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.9; }

.home-process {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    background: var(--bg-dark);
    min-height: 560px;
    overflow: hidden;
}

.process-text-container { padding: 70px 8% 70px 10%; }
.process-text-container .subtitle { color: var(--gold-light); }
.process-text-container h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 3rem); margin: 0 0 20px; line-height: 1.1; }
.process-text-container > p { font-size: 0.9rem; color: #999; max-width: 380px; line-height: 1.9; margin-bottom: 25px; }

.process-caption-box { border-left: 2px solid var(--gold-light); padding: 10px 16px; margin: 25px 0 30px; background: rgba(218,171,45,0.06); }
.process-caption-box p { color: var(--gold-light); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; margin: 0; }

.process-slideshow-container { height: 560px; width: 100%; position: relative; background: #000; overflow: hidden; }
.process-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 1; }
.process-slide.active { opacity: 1; z-index: 2; }
.process-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.process-slide.active img { filter: brightness(1); }

.slideshow-controls { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.25); border-radius: 50%; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.active { background: var(--gold-light); transform: scale(1.3); }

.quote-band { background: var(--bg); padding: 100px 10%; text-align: center; border-top: 1px solid var(--border-hard); border-bottom: 1px solid var(--border-hard); }
.quote-band blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.5vw, 2rem); line-height: 1.7; color: var(--text); max-width: 820px; margin: 0 auto; font-style: italic; font-weight: 400; }
.quote-band .quote-rule { display: block; width: 50px; height: 1px; background: var(--gold); margin: 30px auto 22px; }
.quote-band .quote-attr { color: var(--text-dim); font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; }

/* 8. PRODUCTS PAGE */
.artisan-hero {
    height: 55vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('js/assets/bannerimage.jpg') no-repeat center center / cover;
}

.cart-pill {
    position: fixed !important;
    bottom: 20px !important;
    right: 16px !important;
    top: auto !important;
    left: auto !important;

    width: fit-content !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 18px !important;

    border-radius: 999px !important;
    background: var(--bg-dark);
    border: 1px solid rgba(218,171,45,.35);

    z-index: 9999 !important;
    overflow: hidden !important;
}
.pill-text { color: var(--gold-light); font-weight: 600; font-size: 0.65rem; letter-spacing: 3px; }
.pill-badge { background: var(--gold-light); color: #000; padding: 2px 8px; border-radius: 50px; font-size: 0.6rem; font-weight: 700; min-width: 20px; text-align: center; }

#cart-modal { display: none; position: fixed; right: 0; top: 0; width: min(440px, 100vw); height: 100vh; background: var(--bg-card); z-index: 3000; padding: 40px 30px; overflow-y: auto; border-left: 1px solid var(--border-hard); box-shadow: -10px 0 40px rgba(0,0,0,0.1); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border-hard); }
.cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); }
.cart-close-x { font-size: 2rem; color: var(--text-dim); cursor: pointer; transition: color 0.3s; line-height: 1; }
.cart-close-x:hover { color: var(--text); }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border-hard); }
.cart-item p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.gold-price { color: var(--gold) !important; font-weight: 600; }
.cart-item span { color: var(--text-dim); cursor: pointer; font-size: 1.3rem; transition: color 0.2s; }
.cart-item span:hover { color: var(--text); }
#cart-total-display { color: var(--gold); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-align: right; padding: 20px 0 10px; border-top: 1px solid var(--border-hard); }
#order-request-form label { display: block; color: var(--gold); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 18px; margin-bottom: 6px; }
#order-request-form input { width: 100%; background: var(--bg); border: 1px solid var(--border-hard); border-left: 2px solid var(--gold); color: var(--text); padding: 12px 14px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; outline: none; transition: border-color 0.3s; }
#order-request-form input:focus { border-color: var(--gold); }
#order-request-form input::placeholder { color: var(--text-dim); }
.cart-submit-btn { background: var(--gold); color: #fff; border: none; padding: 14px; width: 100%; font-weight: 700; font-size: 0.72rem; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; margin-top: 20px; transition: background 0.3s; }
.cart-submit-btn:hover { background: var(--gold-dim); }
.cart-wa-btn { width: 100%; background: #25D366; color: #fff; border: none; padding: 13px; font-weight: 600; font-size: 0.7rem; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; margin-top: 10px; transition: background 0.3s; }
.cart-wa-btn:hover { background: #128C7E; }
.cart-tabs { display: flex; border-bottom: 1px solid var(--border-hard); }
.cart-tab { flex: 1; padding: 12px; background: none; border: none; border-bottom: 2px solid transparent; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; font-family: 'Poppins', sans-serif; color: var(--text-dim); cursor: pointer; transition: all 0.2s; margin-bottom: -1px; }
.cart-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.cart-empty { padding: 40px 0; text-align: center; border-bottom: 1px solid var(--border-hard); margin-bottom: 10px; }
.cart-empty p { font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; margin: 0 0 6px; }
.cart-empty span { font-size: 0.7rem; color: var(--border-hard); }
.cart-confirm-note { text-align: center; font-size: 0.62rem; color: var(--text-dim); letter-spacing: 1px; margin-top: 14px; padding-bottom: 10px; }
.cart-item-meta { font-size: 0.68rem; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; margin: 0; }

.showroom-wrapper { display: flex; padding: 50px 6% 100px; gap: 40px; align-items: flex-start; background: var(--bg); }
.sidebar { width: 200px; flex-shrink: 0; position: sticky; top: 100px; height: fit-content; }
.side-box { margin-bottom: 40px; }
.side-box h4 { color: var(--text); font-size: 0.65rem; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border-hard); font-weight: 500; }
.v-filters { display: flex; flex-direction: column; gap: 6px; }
.filter-btn { background: none; border: 1px solid var(--border-hard); color: var(--text-muted); text-align: left; padding: 9px 14px; cursor: pointer; text-transform: uppercase; font-size: 0.62rem; letter-spacing: 1px; font-family: 'Poppins', sans-serif; transition: all 0.3s; }
.filter-btn:hover { color: var(--text); border-color: var(--text); background: rgba(26,18,8,0.04); }
.filter-btn.active { color: var(--text); border-color: var(--gold); background: rgba(184,134,11,0.06); }

#sort-selector { width: 100%; padding: 10px 32px 10px 12px; background: #fff; border: 1px solid var(--border-hard); border-left: 2px solid var(--gold); color: var(--text-muted); font-family: 'Poppins', sans-serif; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; outline: none; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='%23B8860B' d='M5 7L0 2h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-color: #fff; transition: border-color 0.3s; }
#sort-selector:hover { border-color: var(--gold); color: var(--text); }
#sort-selector option { background: #fff; color: var(--text); }

.grid-container { flex-grow: 1; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border-hard); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.4s, box-shadow 0.4s; padding-bottom: 22px; overflow: hidden; }
.product-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.image-container { height: 300px; position: relative; overflow: hidden; cursor: pointer; margin-bottom: 18px; }
.gallery-slide { width: 100%; height: 100%; object-fit: cover; position: absolute; opacity: 0; transition: opacity 1.5s ease-in-out; }
.gallery-slide.active { opacity: 1; }
.product-card:hover .gallery-slide.active { transform: scale(1.04); transition: opacity 1.5s ease-in-out, transform 0.8s ease; }
.card-info { padding: 0 18px; text-align: center; }
.card-info .gold-label { color: var(--gold); font-size: 0.58rem; letter-spacing: 3px; margin-bottom: 8px; }
.card-info h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text); margin-bottom: 4px; }
.gallery-loading { display: flex; align-items: center; justify-content: center; height: 300px; color: var(--text-dim); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; grid-column: 1 / -1; }

.modal-overlay { position: fixed; inset: 0; background: rgba(26,18,8,0.65); z-index: 4000; display: none; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(4px); }
.modal-card { background: var(--bg-card); border: 1px solid var(--border-hard); padding: 32px; width: 100%; max-width: 820px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.modal-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--text); margin-bottom: 15px; }
.modal-info p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.modal-info label { display: block; color: var(--gold); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.modal-info select { width: 100%; background: var(--bg); border: 1px solid var(--border-hard); border-left: 2px solid var(--gold); color: var(--text); padding: 12px 14px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; outline: none; appearance: none; cursor: pointer; }
.modal-qty-row { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.modal-qty-row label { margin: 0; }
#det-qty { width: 65px; background: var(--bg); border: 1px solid var(--border-hard); color: var(--text); padding: 10px; text-align: center; font-family: 'Poppins', sans-serif; outline: none; }
.modal-close-text { cursor: pointer; margin-top: 18px; color: var(--text-dim); text-align: center; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; display: block; }
.modal-close-text:hover { color: var(--text); }

/* 9. ABOUT PAGE */
.about-hero { height: 85vh; min-height: 480px; display: flex; align-items: flex-end; justify-content: flex-start; position: relative; background: url('js/assets/bannerimage.jpg') no-repeat center center / cover; overflow: hidden; }
.about-hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, transparent, var(--gold-light), transparent); z-index: 2; }
.about-hero .hero-content { text-align: left; padding: 0 8% 70px; max-width: 900px; animation: fadeUp 1.2s ease both; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-eyebrow-line { width: 45px; height: 1px; background: var(--gold-light); flex-shrink: 0; }
.hero-eyebrow span { color: var(--gold-light); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 5px; }
.hero-intro { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.9; font-weight: 300; max-width: 580px; }

.scroll-cue { position: absolute; bottom: 30px; right: 8%; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: scrollBounce 2s infinite; }
.scroll-cue span { font-size: 0.52rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.4); writing-mode: vertical-rl; }
.scroll-cue-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold-light), transparent); }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.about-impact-bar { background: #fff; border-bottom: 1px solid var(--border-hard); padding: 60px 8%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.about-impact-item { position: relative; }
.about-impact-item + .about-impact-item::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: var(--border-hard); }
.impact-num { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); display: block; line-height: 1; margin-bottom: 12px; }
.impact-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-dim); }

.mission-pull { padding: 100px 8%; display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center; background: var(--bg-off); border-bottom: 1px solid var(--border-hard); }
.mission-label-col { position: relative; }
.mission-label-col::after { content: '"'; font-family: 'Playfair Display', serif; font-size: 18rem; color: rgba(184,134,11,0.06); position: absolute; top: -60px; left: -20px; line-height: 1; pointer-events: none; }
.mission-tag { color: var(--gold); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 5px; display: block; margin-bottom: 20px; }
.mission-label-col h2 { color: var(--text); }
.mission-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.5rem); font-style: italic; line-height: 1.7; color: var(--text); margin-bottom: 30px; font-weight: 400; }
.mission-body { color: var(--text-muted); line-height: 2; font-size: 0.9rem; margin-bottom: 15px; }

.process-section { background: var(--bg-dark); padding: 40px 0 80px; }
.process-header { padding: 70px 8% 50px; display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); }
.process-header h2 { color: #fff; }
.process-header p { max-width: 400px; color: #888; font-size: 0.85rem; line-height: 1.8; text-align: right; }

.step-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.5s; }
.step-row:hover { background: rgba(255,255,255,0.02); }
.step-row.flipped { direction: rtl; }
.step-row.flipped > * { direction: ltr; }
.step-image { position: relative; overflow: hidden; }
.step-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%) brightness(85%); transition: filter 0.8s, transform 1.4s; }
.step-row:hover .step-image img { filter: grayscale(0%) brightness(100%); transform: scale(1.04); }
.step-num-overlay { position: absolute; bottom: 20px; left: 20px; font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(218,171,45,0.15); line-height: 1; pointer-events: none; transition: color 0.5s; }
.step-row:hover .step-num-overlay { color: rgba(218,171,45,0.3); }
.step-content { display: flex; flex-direction: column; justify-content: center; padding: 60px 8%; }
.step-tag { color: var(--gold-light); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.step-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold-light); flex-shrink: 0; }
.step-content h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 20px; }
.step-content p { color: #888; font-size: 0.88rem; line-height: 1.9; margin-bottom: 15px; }
.step-divider { width: 40px; height: 1px; background: var(--gold-light); margin-bottom: 25px; transition: width 0.5s; }
.step-row:hover .step-divider { width: 80px; }

.values-band { background: var(--bg); padding: 80px 8%; text-align: center; border-top: 1px solid var(--border-hard); border-bottom: 1px solid var(--border-hard); }
.values-band-label { color: var(--gold); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 20px; display: block; }
.values-band h2 { margin-bottom: 60px; color: var(--text); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-hard); }
.value-card { background: var(--bg); padding: 45px 36px; text-align: left; transition: background 0.3s; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--gold); transition: height 0.4s; }
.value-card:hover { background: #fff; }
.value-card:hover::before { height: 100%; }
.value-card .value-icon { font-size: 2rem; margin-bottom: 25px; display: block; width: auto; height: auto; background: none; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); margin-bottom: 15px; }
.value-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.8; }

.pullquote-section { padding: 100px 8%; text-align: center; background: var(--bg-off); position: relative; overflow: hidden; border-bottom: 1px solid var(--border-hard); }
.pullquote-section::before { content: 'KISAC'; font-family: 'Playfair Display', serif; font-size: clamp(4rem, 15vw, 18rem); color: rgba(184,134,11,0.04); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; letter-spacing: 20px; }
.pullquote { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 3vw, 2.2rem); font-style: italic; color: var(--text); line-height: 1.6; max-width: 900px; margin: 0 auto 25px; position: relative; z-index: 1; font-weight: 400; }
.pullquote-line { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 20px; }
.pullquote-attr { color: var(--text-dim); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 4px; position: relative; z-index: 1; }

.locations-section { background: #fff; padding: 80px 8%; border-bottom: 1px solid var(--border-hard); }
.locations-header { text-align: center; margin-bottom: 50px; }
.locations-header span { color: var(--gold); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 5px; display: block; margin-bottom: 15px; }
.locations-header h2 { color: var(--text); }
.location-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-hard); }
.loc-card { background: #fff; padding: 44px 36px; transition: background 0.3s; }
.loc-card:hover { background: var(--bg); }
.loc-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: rgba(184,134,11,0.12); line-height: 1; margin-bottom: 20px; transition: color 0.3s; }
.loc-card:hover .loc-num { color: rgba(184,134,11,0.25); }
.loc-card h3 { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 8px; font-family: 'Poppins', sans-serif; font-weight: 500; }
.loc-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); margin-bottom: 16px; }
.loc-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.8; }

.team-cta { padding: 100px 8%; text-align: center; background: var(--bg); border-bottom: 1px solid var(--border-hard); }
.team-cta span { color: var(--gold); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 5px; display: block; margin-bottom: 20px; }
.team-cta h2 { color: var(--text); margin-bottom: 20px; }
.team-cta p { color: var(--text-muted); max-width: 520px; margin: 0 auto 40px; line-height: 1.8; font-size: 0.9rem; }

/* 10. CONTACT PAGE */
.contact-hero { height: 50vh; min-height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background: url('js/assets/bannerimage.jpg') no-repeat center center / cover; }
.contact-hero .hero-intro { font-size: 0.95rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 15px auto 0; line-height: 1.7; }

.contact-wrapper { background: var(--bg); padding: 70px 8% 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 70px; align-items: flex-start; }
.contact-info .info-block { margin-bottom: 45px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--text); margin-bottom: 18px; }
.pillar-details { list-style: none; padding: 0; }
.pillar-details li { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; }
.pillar-details strong { color: var(--gold); }
.contact-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }

.contact-form-container { background: var(--bg-card); border: 1px solid var(--border-hard); padding: 40px; box-shadow: var(--shadow); }
#contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
#contact-form .form-group { margin-bottom: 24px; }
#contact-form .form-group label { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
#contact-form input, #contact-form select, #contact-form textarea { width: 100%; background: var(--bg); border: 1px solid var(--border-hard); border-left: 2px solid var(--gold); color: var(--text); padding: 13px 15px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.3s, background 0.3s; display: block; appearance: none; -webkit-appearance: none; }
#contact-form input:focus, #contact-form select:focus, #contact-form textarea:focus { border-color: var(--gold); background: #fff; }
#contact-form input::placeholder, #contact-form textarea::placeholder { color: var(--text-dim); opacity: 1; }
#contact-form select { cursor: pointer; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23B8860B' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; background-color: var(--bg); }
#contact-form select option { background: #fff; color: var(--text); }
#contact-form textarea { resize: vertical; min-height: 130px; }
#contact-form .btn-gold-solid { width: 100%; padding: 15px; font-size: 0.72rem; letter-spacing: 2px; }

/* 11. ADMIN */
body.admin-body { background: #020B13; color: #fff; }
.admin-wrap { max-width: 1200px; margin: 40px auto; padding: 20px; }
.admin-wrap h1 { color: #DAAB2D; font-family: 'Playfair Display', serif; margin-bottom: 40px; }
.box { background: #111; padding: 30px; border: 1px solid #333; margin-bottom: 30px; border-radius: 8px; }
.box h3 { margin-bottom: 20px; color: #DAAB2D; }
.inventory-card { background: #000; border: 1px solid #222; padding: 20px; margin-bottom: 20px; border-radius: 8px; }
.edit-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-top: 15px; }
.image-edit-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; background: #080C10; padding: 15px; }
.img-edit-box { position: relative; width: 80px; height: 80px; }
.img-edit-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.del-img-btn { position: absolute; top: -5px; right: -5px; background: red; color: white; border: none; border-radius: 50%; cursor: pointer; width: 20px; height: 20px; font-size: 12px; }
.btn-save { background: #DAAB2D; color: #000; border: none; padding: 10px 20px; cursor: pointer; font-weight: bold; margin-top: 15px; font-family: 'Poppins', sans-serif; }
.btn-del-prod { background: #331111; color: #ff4444; border: 1px solid #ff4444; padding: 10px 20px; cursor: pointer; margin-top: 15px; margin-left: 10px; font-family: 'Poppins', sans-serif; }
.admin-wrap input[type="text"], .admin-wrap input[type="number"], .admin-wrap textarea { width: 100%; background: #0A0A0A; border: 1px solid #333; color: #fff; padding: 12px; font-family: 'Poppins', sans-serif; outline: none; margin-bottom: 10px; transition: border-color 0.3s; }
.admin-wrap input:focus, .admin-wrap textarea:focus { border-color: #DAAB2D; }
.admin-wrap textarea { min-height: 100px; resize: vertical; }

/* 12. EDITORIAL / GALLERY */
.editorial-section { background: var(--bg); padding: 60px 0; }
.editorial-row { padding: 70px 8%; border-bottom: 1px solid var(--border); }
.editorial-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.editorial-row.flipped .editorial-grid { direction: rtl; }
.editorial-row.flipped .editorial-text { direction: ltr; text-align: left; }
.editorial-image { position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.editorial-image img { width: 100%; height: 500px; object-fit: cover; display: block; transition: transform 1.2s ease; }
.editorial-row:hover .editorial-image img { transform: scale(1.05); }
.editorial-text { padding: 20px 0; }
.editorial-text h2 { margin-bottom: 25px; }
.editorial-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.gallery-container { padding: 80px 8% 120px; background: var(--bg); text-align: center; }
.gallery-intro { margin-bottom: 60px; }
.gallery-intro h1 { margin-top: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1400px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; border: 1px solid var(--border-hard); background: #fff; box-shadow: var(--shadow); transition: 0.5s ease; }
.gallery-item img { width: 100%; height: 450px; object-fit: cover; display: block; filter: grayscale(20%) brightness(0.9); transition: 1.2s cubic-bezier(0.22,1,0.36,1); }
.gallery-item:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,8,0.85) 0%, rgba(26,18,8,0) 50%); display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding: 36px; opacity: 0; transition: 0.5s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.3rem; margin-top: 5px; }
.gallery-overlay span { color: #fff; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 500; }

/* ============================================================
   13. RESPONSIVE — TABLET (max 900px)
============================================================ */
@media (max-width: 900px) {

    /* Navbar → hamburger */
    .navbar { padding: 18px 5%; }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(245,240,232,0.98);
        backdrop-filter: blur(16px);
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1050;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    /* General sections */
    .mission-statement-section { grid-template-columns: 1fr; gap: 40px; padding: 70px 6%; text-align: center; }
    .mission-detail p { border-left: none; border-top: 2px solid var(--gold); padding-left: 0; padding-top: 24px; }

    .home-process { grid-template-columns: 1fr; }
    .process-slideshow-container { height: 320px; }
    .process-text-container { padding: 50px 6%; }

    .impact-bar-divider { display: none; }
    .home-value { flex-direction: column; align-items: center; padding: 60px 6%; }

    /* Shop */
    .showroom-wrapper { flex-direction: column; padding: 30px 5% 70px; gap: 24px; }
    .sidebar { width: 100%; position: static; }
    .v-filters { flex-direction: row; flex-wrap: wrap; }
    .grid-container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .image-container { height: 220px; }

    /* Modal */
    .modal-card { grid-template-columns: 1fr; padding: 24px; gap: 20px; }

    /* Cart */
    #cart-modal { width: 100vw; padding: 30px 20px; }

    /* About */
    .about-hero { height: 70vh; min-height: 400px; }
    .about-hero .hero-content { padding: 0 5% 55px; }
    .about-impact-bar { grid-template-columns: 1fr 1fr; gap: 24px; }
    .about-impact-item + .about-impact-item::before { display: none; }
    .mission-pull { grid-template-columns: 1fr; gap: 40px; padding: 60px 6%; }
    .process-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .process-header p { text-align: left; max-width: 100%; }
    .step-row, .step-row.flipped { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
    .step-image { height: 280px; }
    .step-row.flipped .step-image { order: -1; }
    .step-content { padding: 44px 6%; }
    .values-grid { grid-template-columns: 1fr; }
    .location-cards { grid-template-columns: 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    #contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form-container { padding: 28px 20px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    /* Editorial / Gallery */
    .editorial-grid { grid-template-columns: 1fr; gap: 32px; }
    .editorial-row.flipped .editorial-grid { direction: ltr; }
    .editorial-image img { height: 320px; }
    .gallery-item img { height: 340px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
}

/* ============================================================
   14. RESPONSIVE — MOBILE (max 600px)
============================================================ */
@media (max-width: 600px) {

    .navbar { padding: 16px 5%; }
    .logo { font-size: 1.2rem; letter-spacing: 4px; }

    /* Hero */
    .home-hero { height: 90vh; }
    .about-hero { height: 65vh; }
    .artisan-hero { height: 45vh; min-height: 260px; }
    .contact-hero { height: 40vh; min-height: 240px; }

    /* Cart pill moves to bottom on small screens */
    .cart-pill { top: auto; bottom: 20px; right: 16px; padding: 9px 14px; }

    /* Products grid → 1 column on very small */
    .grid-container { grid-template-columns: 1fr; }
    .image-container { height: 260px; }

    /* Impact bar */
    .impact-bar { flex-direction: column; gap: 30px; padding: 50px 6%; }
    .about-impact-bar { grid-template-columns: 1fr 1fr; gap: 20px; padding: 44px 5%; }
    .impact-num { font-size: 2rem; }

    /* Sections */
    .pullquote-section { padding: 70px 5%; }
    .team-cta { padding: 70px 5%; }
    .contact-wrapper { padding: 50px 5% 70px; }
    .locations-section { padding: 60px 5%; }
    .values-band { padding: 60px 5%; }
    .values-band h2 { margin-bottom: 40px; }
    .value-card { padding: 36px 24px; }

    /* Hero content padding */
    .about-hero .hero-content { padding: 0 5% 44px; }
    .hero-intro { font-size: 0.88rem; }

    /* Step rows */
    .step-image { height: 220px; }
    .step-content { padding: 36px 5%; }

    /* Footer */
    .main-footer { padding: 60px 5% 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    /* Gallery */
    .gallery-container { padding: 60px 5% 80px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
    .gallery-item img { height: 300px; }

    /* Editorial */
    .editorial-image img { height: 260px; }

    /* Buttons side by side → stacked */
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-gold-solid, .btn-gold-outline { width: 100%; text-align: center; }
}