@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
    --bg:#f5f5f7;
    --card:#ffffff;
    --text:#111;
    --muted:#6e6e73;
    --line:rgba(0,0,0,.08);
    --black:#111;
    --stone:#d0c3ad;
    --stone-dark:#8f7a5f;
    --cream:#fafafc;
    --font-heading:"Cormorant Garamond",Georgia,serif;
    --font-body:"Inter","Segoe UI",Arial,sans-serif;
    --shadow:0 12px 30px rgba(0,0,0,.08);
}

*{
    box-sizing:border-box;
    -webkit-tap-highlight-color:transparent;
}

html{
    scroll-behavior:auto;
}

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

body{
    font-family:var(--font-body);
    background:#fafafc;
    color:var(--text);
    -webkit-font-smoothing:antialiased;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

button,
a{
    font-family:inherit;
}

.container{
    width:min(1240px,calc(100% - 32px));
    margin:0 auto;
}

/* TYPOGRAPHY */

h1,h2,h3,
.hero h1,
.pro-hero-content h1,
.section-head-row h2,
.category-content h3,
.offer-tile h3,
.logo-text strong,
.footer-logo strong{
    font-family:var(--font-heading);
    font-weight:600;
    letter-spacing:-.035em;
}

/* ============================================================
   NOTE: All HEADER, SEARCH, DESKTOP NAV, MOBILE NAV and the
   HERO OVERLAY styles now live in header.css.
   Do not re-add them here.
   ============================================================ */

/* MINI CART */

.mini-cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.38);
    z-index:9997;
    opacity:0;
    visibility:hidden;
    transition:.2s ease;
}

.mini-cart-panel{
    position:fixed;
    top:92px;
    right:18px;
    width:340px;
    max-width:calc(100% - 24px);
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 55px rgba(15,23,42,.18);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.2s ease;
}

body.mini-cart-open .mini-cart-overlay{
    opacity:1;
    visibility:visible;
}

body.mini-cart-open .mini-cart-panel{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mini-cart-head{
    padding:18px;
    border-bottom:1px solid rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.mini-cart-head strong{
    font-size:18px;
    font-weight:900;
}

.mini-cart-head button{
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

.mini-cart-body{
    padding:18px;
}

.mini-cart-body p{
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:#374151;
    font-weight:700;
}

.mini-cart-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:18px;
    border-top:1px solid rgba(0,0,0,.08);
}

.mini-cart-actions a{
    height:46px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:900;
}

.mini-cart-actions a:first-child{
    background:#f3f4f6;
    color:#111827;
}

.mini-cart-actions a:last-child{
    background:#111;
    color:#fff;
}

/* HERO */

.hero{
    background:#fafafc;
    padding:110px 0;
}

.hero h1{
    margin:0;
    max-width:780px;
    font-size:72px;
    line-height:.93;
    color:#111;
}

.hero p{
    margin:24px 0 0;
    max-width:560px;
    font-size:18px;
    line-height:1.7;
    color:#665f57;
}

.hero-actions,
.pro-hero-actions{
    margin-top:34px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 30px;
    border-radius:18px;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    border:1px solid rgba(0,0,0,.08);
    transition:opacity .18s ease;
}

.btn-dark{
    background:#111;
    color:#fff;
}

.btn-light{
    background:#fff;
    color:#111;
}

.btn-white{
    background:#fff;
    color:#111;
    border-color:#fff;
}

.btn-dark:hover,
.btn-light:hover,
.btn-white:hover{
    opacity:.9;
}

/* PREMIUM HERO */

.pro-hero{
    position:relative;
    min-height:650px;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.pro-hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:720px;
    min-height:520px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.pro-hero-content span{
    display:inline-block;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2.4px;
    color:rgba(255,255,255,.9);
}

.pro-hero-content h1{
    max-width:720px;
    margin:16px 0 18px;
    font-size:78px;
    line-height:.9;
    font-weight:600;
}

.pro-hero-content p{
    max-width:520px;
    margin:0;
    font-size:17px;
    line-height:1.7;
    color:#f3f4f6;
}

/* CATEGORY */

.category-section{
    padding:86px 0;
    background:#fafafc;
}

.section-head-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:28px;
}

.section-head-row span{
    display:block;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#8f7a5f;
    margin-bottom:8px;
}

.section-head-row h2{
    margin:0;
    font-size:48px;
    line-height:1;
    color:#111;
}

.section-head-row a{
    font-weight:900;
    font-size:14px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.category-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:box-shadow .18s ease;
}

.category-card:hover{
    box-shadow:0 14px 34px rgba(0,0,0,.1);
}

.category-img{
    position:relative;
    height:290px;
    overflow:hidden;
    background:#e8e1d8;
    border-bottom:1px solid rgba(0,0,0,.06);
}

.category-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .2s ease;
}

.category-card:hover .category-img img{
    transform:scale(1.03);
}

.category-content{
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.category-content h3{
    margin:0 0 6px;
    font-size:25px;
    line-height:1.05;
}

.category-content p{
    margin:0;
    font-size:14px;
    color:#77716a;
    line-height:1.6;
}

.category-content span{
    font-size:22px;
    font-weight:900;
}

/* SERVICE */

.service-strip{
    background:#111;
    color:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.service-grid div{
    padding:22px 26px;
    border-right:1px solid rgba(255,255,255,.16);
}

.service-grid div:last-child{
    border-right:0;
}

.service-grid strong{
    display:block;
    font-size:15px;
}

.service-grid span{
    display:block;
    margin-top:4px;
    color:#cbd5e1;
    font-size:13px;
}

/* FEATURES */

.feature-strip{
    background:#f5f5f7;
    border-top:1px solid rgba(0,0,0,.05);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    padding:26px 0;
}

.feature-grid div{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:20px;
    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.feature-grid strong{
    display:block;
    font-size:15px;
}

.feature-grid span{
    display:block;
    margin-top:4px;
    color:#6b7280;
    font-size:13px;
}

/* OFFERS */

.offer-zone{
    padding:86px 0;
    background:#fafafc;
}

.offer-zone-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.offer-tile{
    min-height:255px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:flex-end;
    padding:24px;
    color:#fff;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}

.offer-tile:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.72),rgba(0,0,0,.05));
}

.offer-tile div{
    position:relative;
    z-index:2;
}

.offer-tile h3{
    margin:0 0 6px;
    font-size:36px;
    line-height:1;
}

.offer-tile p{
    margin:0;
    font-weight:900;
}

/* FOOTER */

.site-footer{
    background:#111;
    color:#fff;
}

.footer-main{
    padding:72px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:44px;
    align-items:flex-start;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-logo .logo-mark{
    background:#fbfaf7;
    color:#111;
}

.footer-logo span:last-child{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.footer-logo strong{
    font-size:28px;
    line-height:.95;
}

.footer-logo small{
    margin-top:4px;
    font-size:11px;
    color:#9ca3af;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-weight:700;
}

.logo-mark{
    width:44px;
    height:44px;
    background:#111;
    color:#fff;
    display:grid;
    place-items:center;
    font-family:var(--font-heading);
    font-size:23px;
    font-weight:700;
    border-radius:14px;
}

.footer-brand p,
.footer-col p{
    color:#cbd5e1;
    line-height:1.7;
    font-size:14px;
}

.footer-col h4{
    margin:0 0 18px;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-col a{
    display:block;
    color:#cbd5e1;
    font-size:14px;
    margin-bottom:12px;
}

.footer-col a:hover{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:18px 0;
    color:#9ca3af;
    font-size:13px;
}

.footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* CHATBOT SAFE */

#dt-ai-chat{
    z-index:9999999;
}

body.menu-open #dt-ai-chat{
    opacity:0;
    pointer-events:none;
}

/* RESPONSIVE (body sections only — header lives in header.css) */

@media(max-width:980px){
    .service-grid,
    .category-grid,
    .feature-grid,
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .offer-zone-grid{
        grid-template-columns:1fr;
    }

    .pro-hero-content h1,
    .hero h1{
        font-size:52px;
    }
}

@media(max-width:620px){
    .container{
        width:min(100% - 24px,1240px);
    }

    .pro-hero{
        min-height:470px;
    }

    .pro-hero-content{
        min-height:390px;
        padding:34px 0;
    }

    .pro-hero-content span{
        font-size:11px;
        letter-spacing:1.5px;
    }

    .pro-hero-content h1,
    .hero h1{
        font-size:43px;
        line-height:.98;
    }

    .pro-hero-content p{
        font-size:16px;
        line-height:1.55;
        max-width:95%;
    }

    .pro-hero-actions{
        flex-direction:column;
        align-items:flex-start;
    }

    .section-head-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .section-head-row h2{
        font-size:36px;
    }

    .service-grid,
    .category-grid,
    .feature-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .service-grid div{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.14);
    }

    .service-grid div:last-child{
        border-bottom:0;
    }

    .category-img{
        height:245px;
    }

    .footer-bottom-inner{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:480px){
    .container{
        width:calc(100% - 18px);
    }

    .pro-hero-content h1,
    .hero h1{
        font-size:34px;
    }

    .section-head-row h2{
        font-size:30px;
    }

    .category-content{
        padding:18px;
    }

    .category-content h3{
        font-size:22px;
    }
}