/*
Theme Name: Plantique
Theme URI: https://plantiquenaturals.in
Author: Krishna Regalla
Description: Premium Custom Theme for Plantique Naturals
Version: 1.0
Text Domain: plantique
*/

/* ===========================
   VARIABLES
=========================== */

:root{
    --primary:#234B35;
    --accent:#79B84A;
    --text:#111111;
    --muted:#666666;
    --light:#F8F9F7;
    --white:#ffffff;
    --border:#ECECEC;
    --radius:22px;
    --container:1320px;
    --transition:.4s ease;
    --shadow:0 25px 70px rgba(0,0,0,.08);
}

/* ===========================
RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',Arial,sans-serif;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

/* ===========================
HEADER
=========================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

    z-index:9999;

}

.nav-wrapper{

    height