:root {
    --primary: #8B0000;
    --secondary: #F57C00;
    --accent: #FFD54F;
    --bg: #FFF8F2;
    --text: #222222;
    --muted: #6d625d;
    --white: #fff;
    --shadow: 0 18px 50px rgba(139, 0, 0, .12);
    --radius: 8px;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(92%, var(--max));
    margin: auto
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: grid;
    place-items: center;
    transition: opacity .4s ease, visibility .4s ease
}

.loader img {
    width: 160px;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.loader.hidden {
    opacity: 0;
    visibility: hidden
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .35s ease
}

.site-header.scrolled,
.site-header.solid {
    background: rgba(255, 248, 242, .94);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08)
}

.navbar {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--white)
}

.site-header.scrolled .brand,
.site-header.solid .brand {
    color: var(--primary)
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--white)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    position: relative
}

.site-header.scrolled .nav-link,
.site-header.solid .nav-link {
    color: var(--text)
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: .25s
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-cta {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px
}

.site-header.scrolled .nav-cta,
.site-header.solid .nav-cta {
    border-color: rgba(139, 0, 0, .25);
    color: var(--primary)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 8px
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--primary);
    margin: 7px 0
}

.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    isolation: isolate
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 12, 6, .82), rgba(139, 0, 0, .45), rgba(0, 0, 0, .16)), url("../images/hero.jpg") center/cover;
    z-index: -1
}

.hero-content {
    padding-top: 88px;
    color: var(--white);
    max-width: 780px;
    margin-left: 4%
}

.hero-logo {
    width: min(260px, 58vw);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    padding: 8px;
    margin-bottom: 20px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .25)
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 700
}

.hero .eyebrow {
    color: var(--accent)
}

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.12;
    margin: 0;
    color: inherit
}

h1 {
    font-size: clamp(42px, 7vw, 88px)
}

h2 {
    font-size: clamp(30px, 4vw, 54px)
}

h3 {
    font-size: 24px
}

.hero h2 {
    color: var(--accent);
    margin-top: 10px
}

.hero p:not(.eyebrow) {
    max-width: 660px;
    font-size: 18px;
    color: rgba(255, 255, 255, .88)
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .25s
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 14px 35px rgba(139, 0, 0, .22)
}

.btn-secondary {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
    backdrop-filter: blur(10px)
}

.btn:hover {
    transform: translateY(-3px)
}

.section {
    padding: 96px 0
}

.soft-band {
    background: var(--white)
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative
}

.image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover
}

.section-copy p {
    color: var(--muted)
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0
}

.feature-list span,
.value-card,
.why-card,
.product-card,
.contact-form,
.contact-info {
    background: var(--white);
    border: 1px solid rgba(139, 0, 0, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.feature-list span {
    padding: 14px 16px;
    font-weight: 600
}

.text-link {
    color: var(--primary);
    font-weight: 700
}

.section-heading {
    text-align: center;
    margin: 0 auto 42px;
    max-width: 720px
}

.section-heading p {
    justify-content: center
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.product-grid.compact {
    grid-template-columns: repeat(4, 1fr)
}

.product-card {
    overflow: hidden;
    transition: .3s
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(139, 0, 0, .18)
}

.product-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: .4s
}

.product-card:hover img {
    transform: scale(1.06)
}

/* .product-card div {
    padding: 22px;
} */
.product-content{
    padding:18px;
}

.product-footer{
    padding:0 18px 18px;
}

.product-card p {
    margin: 0 0 6px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800
}

.product-card span {
    color: var(--muted);
    font-size: 14px
}

.why-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.why-card,
.value-card {
    padding: 28px;
    transition: .3s
}

.why-card:hover,
.value-card:hover {
    transform: translateY(-6px)
}

.why-card span {
    color: var(--secondary);
    font-weight: 800
}

.why-card p,
.value-card p {
    color: var(--muted)
}

.stats-band {
    background: linear-gradient(135deg, var(--primary), #5c0000);
    color: var(--white)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center
}

.stat strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 52px;
    color: var(--accent)
}

.testimonial-slider {
    position: relative;
    max-width: 780px;
    margin: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
    min-height: 230px
}

.testimonial {
    display: none;
    text-align: center
}

.testimonial.active {
    display: block
}

.testimonial p {
    font-size: 20px;
    color: var(--muted)
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #e7c8b0;
    cursor: pointer
}

.slider-dots button.active {
    background: var(--primary)
}

.faq-wrap {
    max-width: 900px
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(139, 0, 0, .1);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--text);
    cursor: pointer
}

.faq-answer {
    display: none;
    background: #fff;
    padding: 0 20px 18px;
    color: var(--muted)
}

.faq-answer.open {
    display: block
}

.page-hero {
    padding: 160px 0 88px;
    background: linear-gradient(135deg, rgba(139, 0, 0, .92), rgba(245, 124, 0, .72)), url("../images/hero.jpg") center/cover;
    color: var(--white)
}

.page-hero .eyebrow {
    color: var(--accent)
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(38px, 5vw, 68px)
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.filter-btn {
    border: 1px solid rgba(139, 0, 0, .16);
    background: var(--white);
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.gallery-item {
    border: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow);
    background: var(--white)
}

.gallery-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: .4s
}

.gallery-item:hover img {
    transform: scale(1.08)
}

.gallery-item span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .88);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--primary)
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 24px
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-height: 86vh;
    border-radius: var(--radius)
}

.lightbox-close {
    position: absolute;
    right: 28px;
    top: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px
}

.contact-info,
.contact-form {
    padding: 34px
}

.contact-info a {
    display: block;
    color: var(--primary);
    font-weight: 700;
    margin: 10px 0;
    word-break: break-word
}

.map-placeholder {
    height: 240px;
    margin-top: 24px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fbe4c2, #fff);
    border: 1px dashed rgba(139, 0, 0, .25);
    color: var(--muted);
    font-weight: 700
}

.contact-form {
    display: grid;
    gap: 16px
}

.contact-form label {
    font-weight: 700
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    border-radius: var(--radius);
    border: 1px solid #e5d4c6;
    font: inherit;
    background: #fff
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(245, 124, 0, .28);
    border-color: var(--secondary)
}

.form-message {
    margin: 0;
    color: var(--primary);
    font-weight: 700
}

.footer {
    background: #250505;
    color: #f9eee8;
    padding-top: 64px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
    gap: 34px
}

.footer img {
    width: 100px;
    border-radius: var(--radius);
    background: #fff
}

.footer h3 {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 12px
}

.footer a,
.footer p {
    display: block;
    color: #ead5ca;
    margin: 8px 0
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    font-size: 12px;
    font-weight: 800
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px;
    margin: 44px 0 0
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    z-index: 900
}

.scroll-top.show {
    opacity: 1;
    visibility: visible
}

/* Floating Button */

.whatsapp-float{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

cursor:pointer;

box-shadow:0 10px 30px rgba(0,0,0,.3);

z-index:999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

}

.whatsapp-float img{

width:38px;

}


/* Popup */

.popup-overlay{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.6);

display:none;

justify-content:center;

align-items:center;

z-index:1000;

}

.popup{

width:420px;

max-width:95%;

background:#fff;

padding:35px;

border-radius:20px;

position:relative;

animation:popup .35s;

}

@keyframes popup{

from{

transform:translateY(40px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}

.popup h2{

text-align:center;

margin-bottom:25px;

color:#8B0000;

}

.popup input,

.popup textarea,

.popup select{

width:100%;

padding:14px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

outline:none;

}

.popup input:focus,

.popup textarea:focus,

.popup select:focus{

border-color:#F57C00;

}

.popup button{

width:100%;

padding:15px;

background:#25D366;

color:white;

border:none;

border-radius:10px;

font-size:17px;

cursor:pointer;

transition:.3s;

}

.popup button:hover{

background:#1EBE5D;

}

.close-btn{

position:absolute;

right:18px;

top:12px;

font-size:30px;

cursor:pointer;

}

.product-content{
    padding:22px;
}

.product-footer{
    padding:0 22px 22px;
}

.order-btn{
    width:100%;
    padding:12px 18px;
    background:#25D366;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

.order-btn:hover{
    background:#1EBE5D;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(37,211,102,.35);
}

/* .product-image{
    position:relative;
    width:100%;
    height:260px;
    background:#fff;
    overflow:hidden;
} */
 
.product-image{
    position:relative;
    width:100%;
    height:220px;
    background:#fff;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-image img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:contain;
    padding:15px;
    transition:opacity .5s ease;
}

.front-img{
    opacity:1;
}

.back-img{
    opacity:0;
}

.product-card:hover .front-img{
    opacity:0;
}

.product-card:hover .back-img{
    opacity:1;
}


/* Navbar */
@media (max-width:768px){

.navbar{

height:72px;
padding:0 10px;

}

.brand span{

font-size:16px;

}

.brand img{

width:48px;
height:48px;

}

.menu-toggle{

display:flex;
flex-direction:column;
justify-content:center;

}

.nav-menu{

position:fixed;
top:72px;
left:-100%;
width:85%;
height:100vh;
background:#fff;
flex-direction:column;
padding:40px 30px;
gap:22px;
transition:.4s;
box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.nav-menu.open{

left:0;

}

.nav-link{

font-size:18px;

}

}

/* Hero Section */
@media (max-width:768px){

.hero{

min-height:80vh;

}

.hero-content{

padding-top:100px;
text-align:center;
margin:auto;

}

.hero-logo{

width:150px;
margin:auto;
margin-bottom:20px;

}

.hero h1{

font-size:36px;

}

.hero h2{

font-size:24px;

}

.hero p{

font-size:15px;

}

.hero-actions{

justify-content:center;

}

.btn{

width:100%;

}

}
/* Product Cards */
/* @media (max-width:768px){

.product-grid{

grid-template-columns:1fr;

gap:18px;

}

.product-image{

height:220px;

}

.product-content{

padding:18px;

}

.product-content h3{

font-size:22px;

}

.order-btn{

font-size:15px;
padding:14px;

}

} */

/* About Section */

@media (max-width:768px){

.split-layout{

grid-template-columns:1fr;

gap:30px;

}

.image-frame img{

height:300px;

}

}

/* Why Choose */

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}

/* Stats */

@media(max-width:768px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.stat strong{

font-size:38px;

}

}

/* Footer */

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer img{

margin:auto;

}

.socials{

justify-content:center;

}

}

/* WhatsApp Button */

@media(max-width:768px){

.whatsapp-float{

width:58px;
height:58px;
right:15px;
bottom:18px;

}

.whatsapp-float img{

width:34px;

}

}

/* Popup */
@media(max-width:768px){

.popup{

width:95%;
padding:22px;

}

.popup h2{

font-size:22px;

}

}

/* Better Spacing */
@media(max-width:768px){

.section{

padding:60px 0;

}

.page-hero{

padding:120px 0 60px;

}

}

/* row or colunmn */
@media (max-width:768px){

    .product-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .product-card{
        border-radius:12px;
    }

    .product-image{
        height:150px;
    }

    .product-image img{
        padding:10px;
    }

    .product-content{
        padding:12px;
    }

    .product-content p{
        font-size:10px;
    }

    .product-content h3{
        font-size:16px;
        line-height:1.3;
        margin:6px 0;
    }

    .product-content span{
        font-size:12px;
        line-height:1.4;
    }

    .product-footer{
        padding:0 12px 12px;
    }

    .order-btn{
        font-size:13px;
        padding:10px;
    }

}

@media (max-width:480px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .product-image{
        height:130px;
    }

    .product-content h3{
        font-size:14px;
    }

    .product-content span{
        display:none; /* Description hide karke card compact ban jayega */
    }

    .order-btn{
        font-size:12px;
        padding:8px;
    }

}

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#5a1b1b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    text-decoration:none;
    transition:.3s;
}

.socials a:hover{
    background:#ffb703;
    color:#5a1b1b;
}