:root{
    --accent: #b78f59;
    --accent-2: #111012;
    --muted: #6b625a;
    --bg: #fbf7f4;
    --card: #ffffff;
    --shadow: 0 12px 34px rgba(17,16,18,0.08);
    --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body{
    margin:0;
    background:var(--bg);
    font-family:Inter, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color:var(--accent-2);
    line-height:1.45;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img{display:block; width:100%; height:auto; border-radius:0;}

section{padding:40px 24px;}

.container{max-width:1200px; margin:0 auto;}

.card{
    min-width: 300px;
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.card .btn {
    margin-top: auto !important;
}


.faq-wrapper{
    overflow: hidden;
}

h2{margin:0 0 16px 0; font-family:"Playfair Display", serif;}
h3{margin:0 0 12px 0; font-family:"Playfair Display", serif;}

.muted{color:var(--muted);}

/* Generic grid */
.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* changed from grid to horizontal scroll */
.grid-3.faq-scroll{
    display: flex;
    gap: 20px;
    width: max-content;
    animation: faq-scroll-left 35s linear infinite;
}
/* Animation */
@keyframes faq-scroll-left{
    from{
    transform: translateX(0);
    }
    to{
    transform: translateX(-50%);
    }
}

/* Pause on hover (optional) */
.faq-wrapper:hover .faq-scroll{
    animation-play-state: paused;
}


.product-img{
    height:200px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:12px;
}

.btn{
    padding:12px 16px;
    border-radius:10px;
    background:linear-gradient(180deg,var(--accent),#95744f);
    color:white;
    border:none;
    cursor:pointer;
    font-weight:700;
    font-family:inherit;
}

/* Collections */
.collections{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.collection{position:relative; overflow:hidden; border-radius:12px;}
.collection img{height:220px; object-fit:cover;}
.collection .meta{
    position:absolute;
    left:14px;
    bottom:14px;
    background:rgba(255,255,255,0.92);
    padding:8px 12px;
    border-radius:10px;
    font-size:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

/* Clients */
.clients{display:flex; gap:20px; flex-wrap:wrap;}
.client{
    background:linear-gradient(180deg,#fff,#fbf8f6);
    padding:14px;
    border-radius:10px;
    min-width:140px;
    text-align:center;
    box-shadow:0 8px 22px rgba(0,0,0,0.04);
}
.client img{height:40px; object-fit:contain;}

/* Pills */
.pill{
    background:rgba(255,255,255,0.08);
    padding:6px 14px;
    border-radius:999px;
    font-size:14px;
    color:white;
    font-weight:600;
}

/* Testimonials */
.testimonials{position:relative;}
.slides{display:flex; gap:20px; overflow:hidden; transition:transform .5s ease;}
.testimonial{
    min-width:100%;
    background:linear-gradient(180deg,#fff,#fbf8f6);
    border-radius:12px;
    padding:26px;
    box-shadow:var(--shadow);
}
.testimonial p{color:var(--muted); margin:0 0 12px 0;}
.by{font-weight:700;}

.dots{display:flex; gap:8px; justify-content:center; margin-top:14px;}
.dot{
    width:10px; height:10px; border-radius:999px;
    background:rgba(0,0,0,0.2);
    cursor:pointer;
}
.dot.active{background:var(--accent);}

/* Contact */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:20px;
}
.form input,.form textarea{
    width:100%; padding:12px; border-radius:10px;
    border:1px solid #ddd; margin-bottom:12px; font-family:inherit;
}

/* Responsive */
@media (max-width:960px){
    .grid-3,
    .collections {grid-template-columns:repeat(2,1fr);}
    .contact-grid{grid-template-columns:1fr;}
}

@media (max-width:600px){
    .grid-3,
    .collections {grid-template-columns:1fr;}
    .product-img{height:180px;}
}

/* ================= IMAGE CAROUSEL (FIXED & STABLE) ================= */

/* ================= PERFECT CAROUSEL ================= */

.product-carousel{
    width:100%;
    height:200px;
    overflow:hidden;
    border-radius:10px;
    margin-bottom:12px;
    background:#fff;
    position:relative;
}

.product-track{
    display:flex;
    height:100%;
    animation: slideImages 15s infinite ease-in-out;
}

.product-track img{
    flex:0 0 100%;          /* ✅ EACH IMAGE = 1 FULL SLIDE */
    width:100%;
    height:100%;
    object-fit:cover;      /* ✅ NO WHITE SCREEN */
}

/* Pause on hover (desktop only) */
.product-carousel:hover .product-track{
    animation-play-state: paused;
}

/* Animation */
@keyframes slideImages{
    0%,30%   { transform: translateX(0); }
    35%,65%  { transform: translateX(-100%); }
    70%,100% { transform: translateX(-200%); }
}


@media(max-width:960px){
    .grid-3{grid-template-columns:repeat(2,1fr)}
}


@media(max-width:600px){
    .grid-3{grid-template-columns:1fr}
}

   
