/* ================================= */
/* ========= GLOBAL RESET =========== */
/* ================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    height:100%;
}

body{
    font-family:"Segoe UI", Arial, sans-serif;
    color:#333;
    background:#fff;
    display:flex;
    flex-direction:column;
}

/* Push footer to bottom */
main{
    flex:1;
}

h1,h2,h3{
    letter-spacing:0.4px;
}

p{
    line-height:1.7;
}


/* ================================= */
/* ========= HEADER ================= */
/* ================================= */

.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    border-bottom:1px solid #eee;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.brand-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    width:65px;
    height:65px;
    object-fit:contain;
}

.brand-area h1{
    font-size:21px;
    color:#8b0000;
}

.tagline{
    font-size:13px;
    color:#777;
}

/* NAV */

nav{
    display:flex;
}

nav a{
    text-decoration:none;
    margin-left:25px;
    color:#333;
    font-weight:500;
    transition:0.25s;
}

nav a:hover{
    color:#8b0000;
}

/* Hamburger */

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* ================================= */
/* ========= SECTION BG ============= */
/* ================================= */

.soft-bg{
    background:linear-gradient(to right,#fdf5f5,#ffffff);
}


/* ================================= */
/* ========= CARDS ================== */
/* ================================= */

.card{
    background:white;
    padding:28px;
    border-radius:20px;
    border:1px solid #f1f1f1;
    box-shadow:0 10px 28px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}


/* Premium curved images inside cards */

.card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:22px;
    display:block;
    margin-bottom:18px;
}

.card h3{
    margin-top:8px;
    margin-bottom:10px;
}

.card p{
    margin-top:6px;
}


/* ================================= */
/* ===== IMAGE SAFETY (GLOBAL) ====== */
/* ================================= */

img{
    max-width:100%;
    height:auto;
    display:block;
}


/* ================================= */
/* ========= PRODUCTS GRID ========= */
/* ================================= */

.products-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* PRODUCT CARD */

.product-card{
    background:white;
    border-radius:18px;
    padding:22px;
    border:1px solid #eee;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* PRODUCTS ONLY IMAGE CONTROL */

.products-grid .product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:18px;
}

.product-card h3{
    color:#8b0000;
    margin-bottom:12px;
    margin-top:6px;
}

.product-card p{
    margin-bottom:10px;
}


/* ================================= */
/* ========= PREMIUM SECTION FIX ==== */
/* ================================= */

/* This targets ONLY your "Crafted with Tradition" section
   without requiring HTML changes */

section div[style*="grid-template-columns:1fr 1fr"]{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:70px;
    align-items:center;
}


/* ================================= */
/* ========= BUTTONS =============== */
/* ================================= */

.primary-btn{
    background:white;
    color:#8b0000;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    display:inline-block;
    transition:0.3s;
    box-shadow:0 8px 22px rgba(0,0,0,0.15);
}

.primary-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(0,0,0,0.22);
}

.whatsapp-main{
    background:#25D366;
    color:white;
    padding:14px 26px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.whatsapp-main:hover{
    background:#1ebe5b;
}


/* ================================= */
/* ========= FOOTER ================= */
/* ================================= */

footer{
    background:#111;
    color:#ddd;
    text-align:center;
    padding:18px;
    font-size:14px;
    margin-top:auto;
}


/* ================================= */
/* ========= FLOATING BUTTONS ======= */
/* ================================= */

.call-button{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#8b0000;
    color:white;
    padding:14px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-button{
    position:fixed;
    bottom:90px;
    right:20px;
    background:#25D366;
    color:white;
    padding:14px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}


/* ================================= */
/* ========= MOBILE ================= */
/* ================================= */

@media(max-width:768px){

.top{
    flex-direction:column;
    align-items:flex-start;
    padding:18px;
}

.hamburger{
    display:block;
    position:absolute;
    right:20px;
    top:22px;
}

nav{
    width:100%;
    display:none;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

nav.active{
    display:flex;
}

nav a{
    background:#f5f5f5;
    padding:12px;
    border-radius:8px;
    margin-left:0;
}

/* Products -> single column */

.products-grid{
    grid-template-columns:1fr;
    gap:28px;
}

.products-grid .product-card img{
    height:220px;
}

/* ⭐⭐⭐ PREMIUM SECTION MOBILE FIX ⭐⭐⭐ */

section div[style*="grid-template-columns:1fr 1fr"]{
    grid-template-columns:1fr !important;
    gap:40px !important;
}

section div[style*="grid-template-columns:1fr 1fr"] img{
    margin-bottom:10px;
}

/* Floating buttons */

.call-button{
    bottom:15px;
    right:15px;
}

.whatsapp-button{
    bottom:80px;
    right:15px;
}

}
