/*=========================================
GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

/*=========================================
ROOT VARIABLES
=========================================*/

:root{

    --primary:#9A7348;
    --primary-light:#C4A062;
    --secondary:#D4B896;
    --accent:#4A3228;
    --accent-hover:#6B4A3A;

    --bg:#FBF8F4;
    --bg-warm:#F3EBE0;
    --bg-card:#FFFFFF;
    --white:#ffffff;
    --text:#2A221C;
    --text-muted:#7A6B5E;

    --border:#E8DDD0;
    --border-hover:#D4C4B0;

    --gradient-brand:linear-gradient(135deg,#9A7348 0%,#4A3228 100%);
    --gradient-warm:linear-gradient(160deg,#FBF8F4 0%,#F3EBE0 50%,#EBE0D2 100%);
    --gradient-cta:linear-gradient(135deg,#9A7348 0%,#6B4A3A 50%,#4A3228 100%);
    --gradient-gold:linear-gradient(135deg,#C4A062 0%,#9A7348 100%);

    --shadow-sm:0 8px 30px rgba(74,50,40,.07);
    --shadow-md:0 18px 50px rgba(74,50,40,.10);
    --shadow-lg:0 28px 70px rgba(74,50,40,.13);
    --shadow-glow:0 12px 35px rgba(154,115,72,.28);

    --radius-sm:14px;
    --radius-md:22px;
    --radius-lg:32px;
    --radius-full:50px;

    --heading:'Cormorant Garamond',serif;
    --body:'Manrope',sans-serif;

    --transition:.35s cubic-bezier(.4,0,.2,1);

}

/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--body);
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,90%);
    margin:auto;

}

section{

    padding:100px 0;

}

/*=========================================
HEADINGS
=========================================*/

h1,h2,h3,h4{

    font-family:var(--heading);
    color:var(--text);

}

h1{

    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;

}

h2{

    font-size:50px;
    margin-bottom:20px;

}

h3{

    font-size:28px;

}

p{

    font-size:17px;
    color:var(--text-muted);
    margin-bottom:25px;

}

/*=========================================
BUTTONS
=========================================*/

.btn{

    display:inline-block;
    padding:16px 36px;
    border-radius:var(--radius-full);

    background:var(--gradient-brand);
    color:#fff;

    transition:var(--transition);
    font-weight:600;
    box-shadow:var(--shadow-glow);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(154,115,72,.35);

    filter:brightness(1.05);

}

.btn-outline{

    display:inline-block;

    padding:16px 36px;

    border-radius:var(--radius-full);

    border:2px solid var(--accent);
    color:var(--accent);

    margin-left:15px;

    transition:var(--transition);
    font-weight:600;

}

.btn-outline:hover{

    background:var(--gradient-brand);
    border-color:transparent;

    color:#fff;

    box-shadow:var(--shadow-glow);

}

.btn-white{

    display:inline-block;

    margin-top:30px;

    background:var(--white);

    color:var(--accent);

    padding:16px 40px;

    border-radius:var(--radius-full);

    font-weight:600;

    transition:var(--transition);
    box-shadow:var(--shadow-sm);

}

.btn-white:hover{

    transform:translateY(-4px);
    box-shadow:var(--shadow-md);

}

/*=========================================
HEADER
=========================================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:rgba(251,248,244,.92);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);

    box-shadow:0 4px 30px rgba(74,50,40,.04);

}

.nav{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;
    align-items:center;
    flex-shrink:0;

}

.logo img{

    height:68px;
    width:auto;
    display:block;
    object-fit:contain;

}

nav ul{

    display:flex;

    gap:40px;

}

nav a{

    position:relative;

    font-weight:500;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

.nav-btn{

    background:var(--accent);

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    transition:.4s;

}

.nav-btn:hover{

    background:var(--primary);

}

/*=========================================
HERO SECTION
=========================================*/

.hero{

    padding-top:170px;

    padding-bottom:120px;

    background:var(--gradient-warm);

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-content span{

    color:var(--primary);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:700;

}

.hero-content p{

    max-width:520px;

}

.hero-buttons{

    margin-top:35px;

}

.hero-image{

    position:relative;
    border-radius: 50px;


}

.hero-image img{

    width:100%;

    max-width:560px;

    margin:auto;

     border-radius: 50px;

    animation:float 5s ease-in-out infinite;

}

/* Background Circle */

.hero-image::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    background:var(--secondary);

    border-radius:50%;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    z-index:-1;

}

/* Floating Animation */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================================
SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    margin-bottom:15px;

    position:relative;

}

.section-title h2::after{

    content:"";

    display:block;

    width:60px;

    height:3px;

    background:var(--gradient-gold);

    margin:18px auto 0;

    border-radius:3px;

}

.section-title p{

    max-width:650px;

    margin:auto;

}

/*=========================================
CATEGORIES
=========================================*/

.categories{
    background:var(--white);
}

.category-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.category-card{

    background:var(--bg-card);
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);
    border-color:var(--border-hover);

}

.category-card img{

    height:320px;
    object-fit:cover;

    transition:.6s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-card h3{

    margin:25px 30px 10px;

}

.category-card a{

    display:inline-block;

    margin:0 30px 30px;

    color:var(--accent);

    font-weight:600;

    position:relative;

}

.category-card a::after{

    content:"→";

    margin-left:8px;

    transition:.3s;

}

.category-card:hover a::after{

    margin-left:15px;

}

/*=========================================
FEATURED PRODUCT
=========================================*/

.featured{

    background:var(--bg);

}

.featured-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.featured-content span{

    color:var(--primary);

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

}

.featured-content h2{

    margin:18px 0 25px;

}

.featured-content ul{

    margin:30px 0;

}

.featured-content ul li{

    margin-bottom:15px;

    position:relative;

    padding-left:28px;

}

.featured-content ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:700;

}

.featured-image{

    position:relative;

}

.featured-image img{

    width:100%;
    max-width:520px;

    margin:auto;

    border-radius:var(--radius-lg);

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

}

/*=========================================
WHY CHOOSE US
=========================================*/

.why{

    background:var(--white);

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-box{

    background:var(--bg);
    border:1px solid var(--border);

    text-align:center;

    padding:45px 30px;

    border-radius:var(--radius-lg);

    transition:var(--transition);

}

.why-box:hover{

    transform:translateY(-8px);

    background:var(--white);

    box-shadow:var(--shadow-md);
    border-color:var(--secondary);

}

.why-box i{

    font-size:50px;

    background:var(--gradient-gold);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    margin-bottom:25px;

}

.why-box h3{

    margin-bottom:15px;

}

.why-box p{

    margin-bottom:0;

}

/*=========================================
PRODUCT SECTION
=========================================*/

.products{

    background:var(--bg);

}

.product-grid{

    display:grid;

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

    gap:35px;

}

.product-card{

    background:var(--bg-card);

    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);
    border-color:var(--border-hover);

}

.product-card img{

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card h3{

    margin:25px 25px 8px;

}

.product-card span{

    display:block;

    margin:0 25px 30px;

    color:var(--primary);

    font-weight:600;

}

/*=========================================
CARD IMAGE ZOOM
=========================================*/

.category-card,
.product-card{

    position:relative;

}

.category-card img,
.product-card img{

    overflow:hidden;

}

/*=========================================
COMMON HOVER EFFECT
=========================================*/

.category-card::before,
.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:var(--radius-lg);

    border:1px solid transparent;

    transition:.4s;

    pointer-events:none;

}

.category-card:hover::before,
.product-card:hover::before{

    border-color:rgba(139,94,60,.20);

}

/*=========================================
SECTION SPACING
=========================================*/

.categories,
.products,
.featured,
.why{

    position:relative;

}

.categories::after,
.products::after{

    content:"";

    position:absolute;

    width:150px;

    height:150px;

    background:rgba(199,154,106,.08);

    border-radius:50%;

    top:60px;

    right:40px;

    z-index:0;

}

.category-grid,
.product-grid,
.featured-grid,
.why-grid{

    position:relative;

    z-index:2;

}

/*=========================================
ABOUT SECTION
=========================================*/

.about{

    background:var(--white);

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.about-image{

    overflow:hidden;
    border-radius:var(--radius-lg);
    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.about-image img{

    transition:.6s;
    height:100%;
    object-fit:cover;

}

.about-image:hover img{

    transform:scale(1.08);

}

.about-content span{

    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:700;

}

.about-content h2{

    margin:18px 0 25px;

}

.about-content p{

    margin-bottom:35px;
    max-width:520px;

}

/*=========================================
CTA
=========================================*/

.cta{

    background:var(--gradient-cta);
    color:#fff;
    text-align:center;
    padding:110px 0;
    position:relative;
    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-100px;

    right:-100px;

}

.cta h2{

    color:#fff;
    font-size:56px;
    margin-bottom:20px;
    position:relative;

}

.cta p{

    color:rgba(255,255,255,.88);
    max-width:700px;
    margin:0 auto 35px;
    position:relative;

}

/*=========================================
FOOTER
=========================================*/

footer{

    background:linear-gradient(180deg,#2A221C 0%,#1A1410 100%);
    color:#ddd;
    padding:80px 0 20px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    margin-bottom:60px;

}

.footer-logos{

    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:22px;

}

.footer-logos img{

    height:120px;
    width:120px;
    display:block;
    object-fit:contain;
    background:#fff;
    border-radius:50%;
    padding:6px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);

}

footer h3,
footer h4{

    color:#fff;
    margin-bottom:20px;

}

footer p{

    color:#cfcfcf;
    margin-bottom:12px;

}

footer a{

    display:block;
    color:#cfcfcf;
    margin-bottom:14px;
    transition:.3s;

}

footer a:hover{

    color:var(--secondary);
    padding-left:8px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    text-align:center;
    color:#aaa;
    font-size:15px;

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--bg);

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--accent);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.hero-grid,
.featured-grid,
.about-grid{

grid-template-columns:1fr;
text-align:center;

}

.hero-content p,
.about-content p{

margin:auto auto 30px;

}

.hero-image,
.featured-image{

margin-top:40px;

}

.category-grid{

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

}

.product-grid{

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

}

.why-grid{

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

}

.footer-grid{

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

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

.nav{

height:75px;

}

nav{

display:none;

}

.nav-btn{

display:none;

}

.logo img{

height:56px;

}

h1{

font-size:46px;

}

h2{

font-size:36px;

}

.hero{

padding-top:120px;
padding-bottom:70px;

}

.hero-content p{

max-width:100%;
padding:0 8px;

}

.hero-buttons{

display:flex;
flex-direction:row;
flex-wrap:nowrap;
gap:12px;
justify-content:center;
max-width:100%;
margin-top:28px;

}

.hero-buttons .btn,
.hero-buttons .btn-outline{

flex:1;
width:auto;
max-width:none;
padding:14px 10px;
font-size:13px;
text-align:center;

}

.hero-image{

margin-top:30px;

}

.hero-image img{

max-width:100%;

}

.btn-outline{

margin-left:0;

}

.why-grid,
.footer-grid{

grid-template-columns:1fr;

}

.category-grid,
.product-grid{

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

}

.category-card img{

height:200px;

}

.category-card h3{

margin:18px 16px 8px;
font-size:18px;

}

.category-card a{

margin:0 16px 20px;
font-size:14px;

}

.product-card img{

height:200px;

}

.product-card h3{

margin:18px 16px 6px;
font-size:18px;

}

.product-card span{

margin:0 16px 20px;
font-size:14px;

}

.cta{

padding:80px 20px;

}

.cta h2{

font-size:38px;

}

}

@media(max-width:480px){

.container{

width:92%;

}

h1{

font-size:38px;

}

h2{

font-size:30px;

}

p{

font-size:15px;

}

.hero-image::before{

width:280px;
height:280px;

}

.btn,
.btn-outline,
.btn-white{

width:100%;
text-align:center;

}

.hero-buttons .btn,
.hero-buttons .btn-outline{

padding:12px 8px;
font-size:12px;
width:auto;
flex:1;

}

.category-card,
.product-card,
.about-image{

border-radius:25px;

}

.category-grid,
.product-grid{

gap:15px;

}

.category-card img{

height:160px;

}

.category-card h3{

margin:14px 12px 6px;
font-size:16px;

}

.category-card a{

margin:0 12px 16px;
font-size:13px;

}

.product-card img{

height:160px;

}

.product-card h3{

margin:14px 12px 4px;
font-size:16px;

}

.product-card span{

margin:0 12px 16px;
font-size:13px;

}

.btn,
.btn-outline,
.btn-white{

width:100%;
text-align:center;

}

}

/* ==========================
   DROPDOWN MENU
========================== */

.dropdown {
    position: relative;
}

/* Collection Link */

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
    text-decoration: none;
}

/* Remove underline effect */

.dropdown > a::after {
    display: none !important;
}

/* Dropdown Box */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 300px;

    background: #fff;

    border-radius: 12px;

    padding: 2px 0;

    list-style: none;

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

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.3s ease;

    z-index: 999;
}

/* Show on Hover */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu Items */

.dropdown-menu li {
    width: 100%;
}

/* Links */

.dropdown-menu li a {
    display: block;

    padding: 4px 12px;

    color: var(--text);

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;

    transition: 0.3s;
}

/* Hover Effect */

.dropdown-menu li a:hover {
    background:var(--bg);
    color: var(--primary);
}

/* Remove Last Border */

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Dropdown links */
.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--text);
    text-decoration: none;
    background: transparent;
    transition: 0.3s ease;
    border-radius: 0;
}

/* Hover */
.dropdown-menu li a:hover {
    background:var(--bg);
    color: var(--primary);
}

/* Remove click/focus effects */
.dropdown-menu li a:focus,
.dropdown-menu li a:active,
.dropdown-menu li a:visited {
    background: transparent;
    color: var(--text);
    outline: none;
    box-shadow: none;
}

/* Keep hover after click */
.dropdown-menu li a:focus:hover,
.dropdown-menu li a:active:hover {
    background:var(--bg);
    color: var(--primary);
}

.dropdown-menu {
    overflow: hidden;
    border-radius: 12px;
}

/*=========================================
ABOUT HERO
=========================================*/

.about-hero{

    padding:180px 0 110px;

    background:var(--gradient-warm);

    text-align:center;

}

.about-hero-content{

    max-width:900px;

    margin:auto;

}

.about-hero span{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

}

.about-hero h1{

    margin:20px 0;

}

.about-hero p{

    max-width:700px;

    margin:0 auto 35px;

}

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    font-size:15px;

}

.breadcrumb a{

    color:var(--accent);

    font-weight:600;

}

.breadcrumb span{

    color:#666;

}

/*=========================================
MISSION & VISION
=========================================*/

.mission{

    background:var(--white);

}

.mission-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.mission-card{

    background:var(--bg);

    padding:50px 40px;

    border-radius:30px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.mission-card:hover{

    transform:translateY(-10px);

    background:var(--white);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.mission-card i{

    font-size:55px;

    color:var(--accent);

    margin-bottom:20px;

}

.mission-card h3{

    margin-bottom:15px;

}

/*=========================================
ABOUT WHY
=========================================*/

.about-why{

    background:var(--bg);

}

/*=========================================
COMPANY STATS
=========================================*/

.stats{

    background:var(--gradient-cta);

    color:#fff;

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-box{

    text-align:center;

}

.stat-box h2{

    color:#fff;

    font-size:60px;

    margin-bottom:10px;

}

.stat-box p{

    color:#f3f3f3;

    margin:0;

    font-size:18px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.mission-grid{

grid-template-columns:1fr;

}

.stats-grid{

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

}

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

.stat-box h2{

font-size:46px;

}

}

/*=========================================
PROCESS SECTION
=========================================*/

.process{

    background:var(--white);

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.process-card{

    background:var(--bg);

    border-radius:30px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    background:var(--white);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.number{

    width:70px;
    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--accent);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

}

.process-card h3{

    margin-bottom:15px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.process-grid{

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

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

.number{

width:60px;
height:60px;

font-size:18px;

}

}

/*=========================================
PRODUCT HERO
=========================================*/

.product-hero{

padding:180px 0 100px;

background:var(--gradient-warm);

text-align:center;

}

.product-hero-content{

max-width:850px;

margin:auto;

}

.product-hero span{

text-transform:uppercase;

letter-spacing:3px;

font-size:14px;

font-weight:700;

color:var(--primary);

}

.product-hero h1{

margin:20px 0;

}

.product-hero p{

max-width:700px;

margin:0 auto 35px;

}

/*=========================================
FILTER
=========================================*/

.filter-section{

padding:0 0 60px;

background:transparent;

margin-top:-40px;

position:relative;

z-index:20;

}

.filter-bar{

max-width:920px;

margin:0 auto;

background:#fff;

border-radius:24px;

padding:32px 36px;

box-shadow:0 25px 70px rgba(107,68,35,.1);

border:1px solid var(--border);

}

.filter-bar-header{

display:flex;

align-items:center;

justify-content:center;

gap:10px;

margin-bottom:22px;

color:var(--accent);

font-weight:700;

font-size:13px;

text-transform:uppercase;

letter-spacing:2.5px;

}

.filter-bar-header i{

font-size:18px;

}

.filter-tabs{

display:flex;

gap:8px;

background:var(--bg);

padding:7px;

border-radius:50px;

border:1px solid var(--border);

}

.filter-btn{

flex:1;

display:inline-flex;

align-items:center;

justify-content:center;

gap:8px;

padding:15px 22px;

border:none;

background:transparent;

border-radius:50px;

font-size:15px;

font-weight:600;

color:var(--text);

cursor:pointer;

transition:all .35s ease;

font-family:var(--body);

white-space:nowrap;

}

.filter-btn i{

font-size:18px;

transition:transform .35s ease;

}

.filter-btn.active{

background:var(--gradient-brand);

color:#fff;

box-shadow:var(--shadow-glow);

}

.filter-btn:not(.active):hover{

background:rgba(154,115,72,.1);

color:var(--primary);

}

.filter-btn.active i{

transform:scale(1.1);

}

.products-page.hidden{

display:none;

}

.products-page + .products-page{

padding-top:0;

margin-top:-20px;

}

/*=========================================
PRODUCT PAGE
=========================================*/

.products-page{

background:var(--bg);

padding:80px 0;

}

.products-page:first-of-type{

padding-top:40px;

}

.products-page .product-grid{

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

gap:30px;

}

.products-page .product-card{

text-align:center;

display:flex;

flex-direction:column;

border-radius:20px;

overflow:hidden;

}

.products-page .product-card img{

width:100%;

height:260px;

object-fit:cover;

object-position:center;

display:block;

border-radius:0;

}

.products-page .product-card:hover img{

transform:scale(1.05);

}

.products-page .product-card h3{

margin:18px 16px 6px;

font-size:20px;

}

.products-page .product-card p{

margin:6px 16px 16px;

font-size:14px;

flex-grow:1;

}

.products-page .btn{

margin:0 auto 20px;

padding:12px 24px;

font-size:14px;

width:auto;

display:inline-block;

}

/*=========================================
FEATURED COLLECTION
=========================================*/

.featured-banner{

    padding:100px 0;

    background:var(--white);

}

.featured-banner-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.featured-banner-content span{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

}

.featured-banner-content h2{

    margin:20px 0;

}

.featured-banner-image{

    overflow:hidden;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-md);
    border:1px solid var(--border);

}

.featured-banner-image img{

    width:100%;

    transition:.6s;

}

.featured-banner-image:hover img{

    transform:scale(1.08);

}

/*=========================================
WHY PRODUCTS
=========================================*/

.why-products{

    background:var(--bg);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.featured-banner-grid{

grid-template-columns:1fr;

text-align:center;

}

.featured-banner-content{

order:2;

}

.featured-banner-image{

order:1;

}

.products-page .product-grid{

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

gap:20px;

}

.products-page .product-card img{

height:220px;

}

}

@media(max-width:768px){

.product-hero{

padding:140px 0 70px;

}

.filter-section{

padding:0 0 40px;

margin-top:-25px;

position:sticky;

top:75px;

z-index:50;

}

.filter-bar{

padding:20px 18px;

border-radius:18px;

box-shadow:0 12px 40px rgba(107,68,35,.1);

}

.filter-bar-header{

margin-bottom:16px;

font-size:12px;

letter-spacing:2px;

}

.filter-tabs{

overflow-x:auto;

flex-wrap:nowrap;

-webkit-overflow-scrolling:touch;

scrollbar-width:none;

padding:5px;

}

.filter-tabs::-webkit-scrollbar{

display:none;

}

.filter-btn{

flex:0 0 auto;

padding:12px 18px;

font-size:13px;

gap:6px;

}

.filter-btn i{

font-size:16px;

}

.products-page{

padding:60px 0;

}

.products-page:first-of-type{

padding-top:30px;

}

.products-page .product-grid{

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

gap:15px;

}

.products-page .product-card{

border-radius:16px;

}

.products-page .product-card img{

height:170px;

}

.products-page .product-card h3{

margin:14px 10px 4px;

font-size:15px;

}

.products-page .product-card p{

margin:4px 10px 12px;

font-size:12px;

line-height:1.5;

}

.products-page .btn{

padding:10px 14px;

font-size:12px;

margin-bottom:14px;

width:calc(100% - 20px);

}

}

@media(max-width:480px){

.filter-bar{

padding:16px 14px;

border-radius:16px;

}

.filter-btn{

padding:10px 14px;

font-size:12px;

}

.products-page .product-grid{

gap:12px;

}

.products-page .product-card img{

height:140px;

}

.products-page .product-card h3{

font-size:14px;

}

.products-page .btn{

padding:8px 10px;

font-size:11px;

}

}

/*=========================================
FOOTER
=========================================*/

.footer{

    background:linear-gradient(180deg,#2A221C 0%,#1A1410 100%);

    color:#fff;

    padding:80px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

    padding-bottom:50px;

}

.footer-col h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    margin-bottom:20px;

    color:#fff;

}

.footer-col h4{

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    margin-bottom:22px;

    color:#fff;

}

.footer-col p{

    color:#bdbdbd;

    line-height:1.9;

    font-size:15px;

}

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col ul li{

    margin-bottom:15px;

    color:#bdbdbd;

    display:flex;

    align-items:flex-start;

    gap:10px;

}

.footer-col ul li i{

    color:var(--primary);

    margin-top:4px;

}

.footer-col ul li a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:var(--primary);

    padding-left:6px;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:18px;

    transition:.35s;

    text-decoration:none;

}

.social-links a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    text-align:center;

}

.footer-bottom p{

    color:#bdbdbd;

    margin:0;

    font-size:15px;

}

/*=========================================
TABLET RESPONSIVE
=========================================*/

@media(max-width:992px){

    .contact-hero{

        min-height:380px;

    }

    .contact-hero-content h1{

        font-size:46px;

    }

    .contact-info-grid{

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

    }

    .contact-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .hours-grid{

        grid-template-columns:1fr;

    }

    .faq-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

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

    }

}

/*=========================================
MOBILE RESPONSIVE
=========================================*/

@media(max-width:768px){

    .contact-hero{

        min-height:320px;

        text-align:center;

    }

    .contact-hero-content h1{

        font-size:34px;

    }

    .contact-hero-content p{

        font-size:15px;

    }

    .breadcrumb{

        justify-content:center;

        flex-wrap:wrap;

    }

    .contact-info{

        padding:0;

    }

    .contact-info-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .contact-card{

        padding:35px 25px;

    }

    .contact-form-section{

        padding:70px 0;

    }

    .contact-form{

        padding:30px 20px;

    }

    .contact-form-content h2{

        font-size:38px;

    }

    .form-row{

        grid-template-columns:1fr;

        gap:0;

    }

    .map-section,

    .business-hours,

    .faq-section,

    .contact-cta{

        padding:70px 0;

    }

    .map-box iframe{

        height:320px;

    }

    .contact-cta h2{

        font-size:38px;

    }

    .footer{

        padding-top:60px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    .footer-col h3{

        font-size:36px;

    }

    .footer-col h4{

        font-size:24px;

    }

    .social-links{

        justify-content:flex-start;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

    .contact-hero-content h1{

        font-size:30px;

    }

    .contact-form-content h2{

        font-size:32px;

    }

    .faq-box{

        padding:25px;

    }

    .faq-box h3{

        font-size:24px;

    }

    .hour-item{

        padding:30px 20px;

    }

    .hour-item h4{

        font-size:24px;

    }

    .contact-card h3{

        font-size:26px;

    }

    .contact-cta h2{

        font-size:32px;

    }

}

/*==============================
CONTACT PAGE
==============================*/

.page-hero{
    padding:120px 0 80px;
    background:var(--gradient-warm);
    text-align:center;
}

.page-hero span{
    display:inline-block;
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.page-hero h1{
    font-size:56px;
    font-family:var(--heading);
    color:var(--text);
    margin-bottom:20px;
}

.page-hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*==============================
CONTACT
==============================*/

.contact-page{
    padding:90px 0;
    background:var(--bg);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-info span{
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:2.5px;
    font-weight:700;
    font-size:13px;
}

.contact-info h2{
    font-size:42px;
    margin:15px 0 20px;
    font-family:var(--heading);
    color:var(--text);
}

.contact-info>p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.contact-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.contact-box{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:22px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    transition:all .35s ease;
}

.contact-box-wide{
    grid-column:1 / -1;
}

.contact-box:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(107,68,35,.1);
    border-color:var(--secondary);
}

.contact-icon{
    flex-shrink:0;
    width:52px;
    height:52px;
    min-width:52px;
    background:linear-gradient(135deg,var(--accent),var(--primary));
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 22px rgba(107,68,35,.22);
}

.contact-icon i{
    font-size:22px;
    color:#fff;
    line-height:1;
}

.contact-text{
    flex:1;
    min-width:0;
}

.contact-box h4{
    margin-bottom:6px;
    color:var(--text);
    font-size:17px;
    font-family:var(--heading);
    font-weight:600;
}

.contact-box p{
    color:#666;
    line-height:1.75;
    font-size:14px;
    word-break:break-word;
}

.contact-box a{
    color:var(--accent);
    text-decoration:none;
    font-weight:600;
    transition:color .3s;
}

.contact-box a:hover{
    color:var(--primary);
}

/*==============================
FORM
==============================*/

.contact-form{
    background:var(--white);
    padding:42px;
    border-radius:24px;
    border:1px solid var(--border);
    box-shadow:0 25px 65px rgba(107,68,35,.08);
}

.contact-form h2{
    margin-bottom:28px;
    font-size:36px;
    font-family:var(--heading);
    color:var(--text);
}

.form-group{
    margin-bottom:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid var(--border);
    border-radius:12px;
    font-family:var(--body);
    font-size:15px;
    transition:all .3s;
    outline:none;
    background:#fafafa;
}

.contact-form textarea{
    resize:vertical;
    min-height:140px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
    background:var(--white);
    box-shadow:0 0 0 4px rgba(139,94,60,.12);
}

.contact-form .btn{
    width:100%;
    border:none;
    cursor:pointer;
    font-size:16px;
    margin-top:8px;
}

/*==============================
MAP
==============================*/

.map-section{
    padding:90px 0;
    background:var(--bg);
}

.map{
    margin-top:40px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(107,68,35,.1);
    border:1px solid var(--border);
}

.map iframe{
    display:block;
    width:100%;
}

/*==============================
FAQ
==============================*/

.faq{
    padding:90px 0;
    background:var(--white);
}

.faq-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.faq-box{
    padding:28px;
    border-radius:18px;
    background:var(--white);
    border:1px solid var(--border);
    transition:all .35s ease;
}

.faq-box:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(107,68,35,.1);
    border-color:var(--secondary);
}

.faq-box h3{
    margin-bottom:15px;
    font-size:22px;
    color:var(--dark);
}

.faq-box p{
    color:#666;
    line-height:1.8;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.contact-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.contact-cards{
    grid-template-columns:1fr 1fr;
}

.faq-grid{
    grid-template-columns:1fr;
}

.page-hero h1{
    font-size:42px;
}

.contact-info h2,
.contact-form h2{
    font-size:34px;
}

}

@media(max-width:768px){

.page-hero{
    padding:130px 0 60px;
}

.page-hero h1{
    font-size:34px;
}

.page-hero p{
    font-size:15px;
    padding:0 10px;
}

.contact-page,
.map-section,
.faq{
    padding:60px 0;
}

.contact-info{
    padding:0;
}

.contact-cards{
    grid-template-columns:1fr;
    gap:14px;
}

.contact-box{
    padding:18px;
    gap:14px;
}

.contact-box-wide{
    grid-column:auto;
}

.contact-icon{
    width:48px;
    height:48px;
    min-width:48px;
}

.contact-icon i{
    font-size:20px;
}

.contact-box h4{
    font-size:16px;
}

.contact-box p{
    font-size:13px;
    line-height:1.65;
}

.contact-form{
    padding:28px 22px;
    border-radius:20px;
}

.contact-info h2,
.contact-form h2{
    font-size:28px;
}

.contact-info>p{
    margin-bottom:28px;
    font-size:15px;
}

.faq-box{
    padding:22px;
}

.map iframe{
    height:320px;
}

}

@media(max-width:480px){

.page-hero h1{
    font-size:30px;
}

.contact-form{
    padding:22px 18px;
}

.contact-icon{
    width:44px;
    height:44px;
    min-width:44px;
}

.contact-icon i{
    font-size:18px;
}

.contact-box{
    padding:16px;
}

}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    padding:0;
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    background:var(--white);
    cursor:pointer;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    flex-shrink:0;
    font-family:inherit;
    outline:none;
    -webkit-tap-highlight-color:transparent;
}

.menu-toggle .bar{
    display:block;
    width:20px;
    height:2.5px;
    background:var(--accent);
    border-radius:3px;
    transition:all .35s cubic-bezier(.4,0,.2,1);
}

.menu-toggle:hover{
    border-color:var(--secondary);
    box-shadow:var(--shadow-md);
}

.menu-toggle.active{
    background:var(--gradient-brand);
    border-color:transparent;
    box-shadow:var(--shadow-glow);
}

.menu-toggle.active .bar{
    background:#fff;
}

.menu-toggle.active .bar:nth-child(1){
    transform:translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2){
    opacity:0;
    transform:scaleX(0);
}

.menu-toggle.active .bar:nth-child(3){
    transform:translateY(-7.5px) rotate(-45deg);
}

@media(max-width:768px){

    .menu-toggle{
        display:flex;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--white);
        display:none;
        box-shadow:var(--shadow-md);
        border-top:1px solid var(--border);
        border-bottom:1px solid var(--border);
        z-index:999;
        animation:navSlide .3s ease;
    }

    @keyframes navSlide{
        from{
            opacity:0;
            transform:translateY(-8px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        padding:24px;
        gap:6px;
    }

    nav ul li{
        width:100%;
    }

    nav ul li a{
        display:block;
        padding:14px 16px;
        border-radius:var(--radius-sm);
        font-weight:600;
        transition:var(--transition);
    }

    nav ul li a:hover,
    nav ul li a:active{
        background:var(--bg);
        color:var(--primary);
    }

    nav ul li a::after{
        display:none;
    }

    .section-title{
        margin-bottom:45px;
    }

    .section-title h2::after{
        width:50px;
        margin-top:14px;
    }

    .featured-image img,
    .about-image{
        border-radius:var(--radius-lg);
        box-shadow:var(--shadow-md);
    }

    .hero-image img{
        border-radius:var(--radius-lg);
    }

    .footer-logos img{
        height:100px;
        width:100px;
    }

    .footer-logos{
        gap:14px;
    }

}

/*=========================================
GLOBAL THEME POLISH
=========================================*/

::selection{
    background:var(--secondary);
    color:var(--text);
}

nav a:hover{
    color:var(--primary);
}

.product-cta{
    background:var(--gradient-cta);
    padding:100px 0;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.product-cta .cta-content{
    position:relative;
    max-width:750px;
    margin:0 auto;
}

.product-cta span{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:2.5px;
    font-size:13px;
    font-weight:700;
}

.product-cta h2{
    color:#fff;
    margin:18px 0;
    font-size:48px;
}

.product-cta p{
    color:rgba(255,255,255,.88);
    margin-bottom:35px;
}

.product-cta .cta-buttons{
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
}

.product-cta .btn-outline{
    border-color:#fff;
    color:#fff;
    margin-left:0;
}

.product-cta .btn-outline:hover{
    background:#fff;
    color:var(--accent);
    border-color:#fff;
}

.featured-image img{
    box-shadow:var(--shadow-md);
    border:1px solid var(--border);
}

.about-image{
    border:1px solid var(--border);
}

.category-card a{
    color:var(--primary);
}

.product-card span{
    color:var(--primary);
}

.filter-bar{
    border-color:var(--border);
    box-shadow:var(--shadow-md);
}

.contact-icon{
    background:var(--gradient-brand);
    box-shadow:var(--shadow-glow);
}

@media(max-width:768px){

.product-cta{
    padding:70px 0;
}

.product-cta h2{
    font-size:32px;
}

.product-cta .cta-buttons{
    flex-direction:column;
    align-items:center;
}

.product-cta .btn,
.product-cta .btn-outline{
    width:100%;
    max-width:320px;
}

}