/*
Theme Name: Silco Fabricator
Theme URI: https://silcofabricator.com
Author: Silco Fabricator
Author URI: https://silcofabricator.com
Description: A custom WordPress theme for Real Crown by Silco Fabricator - a premium shirt manufacturer. Converted from static HTML template.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: silcofabricator
*/

/* ==========================================
   REAL CROWN - SILCO FABRICATOR
   Premium Website
   Author: Iqura 
========================================== */

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

/* ---------- Reset ---------- */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111;
    overflow-x:hidden;

}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ---------- Colors ---------- */

:root{

    --gold:#c8a45d;
    --black:#111111;
    --light:#f8f8f8;
    --white:#ffffff;
    --gray:#777;
    --transition:.35s;

}

/* ---------- Container ---------- */

.container{

    width:90%;
    max-width:1250px;
    margin:auto;

}

/* ---------- Top Bar ---------- */

.top-bar{

    background:#111;
    color:#fff;
    text-align:center;
    padding:10px;
    font-size:14px;
    letter-spacing:1px;

}

/* ---------- Header ---------- */

header{

    width:100%;
    position:sticky;
    top:0;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    z-index:1000;
    box-shadow:0 3px 15px rgba(0,0,0,.05);

}

.navbar{

    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;

}

/* ---------- Logo ---------- */

.logo{

    font-size:34px;
    font-family:'Cormorant Garamond',serif;
    color:#111;
    font-weight:bold;
    letter-spacing:2px;

}

.logo span{

    color:var(--gold);

}

/* ---------- Navigation ---------- */

.nav-links{

    display:flex;
    gap:35px;

}

.nav-links a{

    color:#111;
    font-weight:500;
    transition:var(--transition);
    position:relative;

}

.nav-links a::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.4s;

}

.nav-links a:hover{

    color:var(--gold);

}

.nav-links a:hover::after{

    width:100%;

}

/* ---------- Button ---------- */

.quote-btn{

    background:var(--gold);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    transition:.4s;
    font-weight:600;

}

.quote-btn:hover{

    background:#111;
    transform:translateY(-3px);

}

/* ---------- Mobile Icon ---------- */

.menu-btn{

    display:none;
    font-size:28px;
    cursor:pointer;

}

/* ---------- Hero ---------- */

.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(to right,#fafafa,#f1f1f1);

}

.hero-content{

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

}

.tag{

    display:inline-block;
    padding:10px 22px;
    background:#111;
    color:#fff;
    border-radius:40px;
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:1px;

}

.hero h1{

    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-family:'Cormorant Garamond',serif;

}

.hero h1 span{

    color:var(--gold);

}

.hero p{

    color:#555;
    line-height:1.9;
    margin-bottom:35px;
    font-size:17px;

}

/* ---------- Hero Buttons ---------- */

.hero-buttons{

    display:flex;
    gap:20px;

}

.primary-btn{

    background:var(--gold);
    color:#fff;
    padding:16px 38px;
    border-radius:50px;
    transition:.4s;
    font-weight:600;

}

.primary-btn:hover{

    background:#111;
    transform:translateY(-5px);

}

.secondary-btn{

    border:2px solid #111;
    color:#111;
    padding:16px 38px;
    border-radius:50px;
    transition:.4s;
    font-weight:600;

}

.secondary-btn:hover{

    background:#111;
    color:#fff;

}

/* ---------- Hero Image ---------- */

.hero-image img{

    width:100%;
    max-width:540px;
    margin:auto;
    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ---------- Responsive ---------- */

@media(max-width:991px){

.hero-content{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.nav-links{

display:none;

}

.nav-links.active{

display:flex;

flex-direction:column;

position:absolute;

top:100%;

left:0;

width:100%;

background:#fff;

padding:20px 30px;

gap:20px;

box-shadow:0 15px 25px rgba(0,0,0,0.08);

z-index:999;

}

.quote-btn{

display:none;

}

.menu-btn{

display:block;

z-index:1001;

}

header{

position:relative;

}

.hero h1{

font-size:50px;

}

}

@media(max-width:600px){

.hero{

padding:70px 0;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:15px;

}

.primary-btn,
.secondary-btn{

padding:14px 25px;

font-size:14px;

}

.hero-buttons{

flex-direction:column;

}

}

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

.about{

    padding:120px 0;
    background:#ffffff;

}

.about-container{

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

}

.about-image{

    overflow:hidden;
    border-radius:20px;

}

.about-image img{

    width:100%;
    border-radius:20px;
    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.section-subtitle{

    color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;

}

.about-content h2{

    font-size:48px;
    margin:18px 0;
    font-family:'Cormorant Garamond',serif;
    line-height:1.2;

}

.about-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:18px;

}

.about-features{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:35px 0;

}

.feature{

    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;

}

.feature i{

    color:var(--gold);
    font-size:18px;

}

/* Responsive */

@media(max-width:991px){

.about-container{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

.feature{

justify-content:center;

}

}

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

.categories{

    padding:120px 0;
    background:#fafafa;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:var(--gold);
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;

}

.section-title h2{

    font-size:50px;
    margin:15px 0;
    font-family:'Cormorant Garamond',serif;

}

.section-title p{

    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

.category-grid{

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

}

.category-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.category-card:hover{

    transform:translateY(-10px);

}

.category-card img{

    height:320px;
    object-fit:cover;
    transition:.5s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-content{

    padding:30px;

}

.category-content h3{

    margin-bottom:15px;
    font-size:24px;

}

.category-content a{

    color:var(--gold);
    font-weight:600;

}

@media(max-width:992px){

.category-grid{

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

}

}

@media(max-width:768px){

.category-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:38px;

}

}

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

.why-us{

    padding:120px 0;
    background:#ffffff;

}

.why-grid{

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

}

.why-card{

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

}

.icon{

    width:80px;
    height:80px;
    background:var(--gold);
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:28px;
    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;
    font-size:24px;

}

.why-card p{

    color:#666;
    line-height:1.8;

}

@media(max-width:992px){

.why-grid{

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

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}

/*=========================================
LUXURY BANNER
=========================================*/

.luxury-banner{

    position:relative;
    height:650px;

    background:url("../images/banner.jpg") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

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

}

.banner-content{

    position:relative;

    text-align:center;

    color:#fff;

    max-width:750px;

}

.banner-content span{

    color:var(--gold);

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}

.banner-content h2{

    font-size:72px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

    line-height:1.1;

}

.banner-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

@media(max-width:768px){

.banner-content h2{

font-size:45px;

}

.banner-content p{

font-size:16px;

}

.luxury-banner{

height:500px;

}

}

/*=========================================
FEATURED PRODUCTS
=========================================*/

.featured-products{

    padding:120px 0;

    background:#fff;

}

.product-grid{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

.product-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-12px);

}

.badge{

    position:absolute;

    top:20px;

    left:20px;

    background:var(--gold);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    z-index:2;

}

.product-image{

    overflow:hidden;

}

.product-image img{

    height:420px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    padding:30px;

    text-align:center;

}

.product-info h3{

    font-size:24px;

    margin-bottom:15px;

}

.rating{

    color:gold;

    font-size:18px;

    margin-bottom:15px;

}

.product-info h4{

    color:var(--gold);

    font-size:24px;

    margin-bottom:25px;

}

.product-btn{

    display:inline-block;

    padding:14px 35px;

    background:#111;

    color:#fff;

    border-radius:40px;

    transition:.4s;

}

.product-btn:hover{

    background:var(--gold);

}

@media(max-width:992px){

.product-grid{

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

}

}

@media(max-width:768px){

.product-grid{

grid-template-columns:1fr;

}

}

/*=========================================
MANUFACTURING PROCESS
=========================================*/

.manufacturing{

    padding:120px 0;
    background:#f8f8f8;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;

}

.process-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;

}

.process-card:hover{

    transform:translateY(-10px);

}

.process-image{

    overflow:hidden;

}

.process-image img{

    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;

}

.process-card:hover img{

    transform:scale(1.08);

}

.process-content{

    padding:30px;

}

.process-content span{

    color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
    font-size:13px;

}

.process-content h3{

    margin:15px 0;
    font-size:28px;

}

.process-content p{

    color:#666;
    line-height:1.8;

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}

/*=========================================
STATISTICS
=========================================*/

.statistics{

    background:#111;
    padding:100px 0;

}

.stats-grid{

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

}

.stat-card{

    text-align:center;
    color:#fff;

}

.stat-card h2{

    font-size:60px;
    color:var(--gold);
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;

}

.stat-card p{

    letter-spacing:1px;
    color:#ddd;
    font-size:18px;

}

@media(max-width:900px){

.stats-grid{

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

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}

/*=========================================
FACTORY GALLERY
=========================================*/

.gallery{

    padding:120px 0;

    background:#ffffff;

}

.gallery-grid{

    display:grid;

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

    gap:20px;

    margin-top:60px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    position:relative;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item.large img{

    height:660px;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

@media(max-width:992px){

.gallery-grid{

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

}

.gallery-item.large img{

height:320px;

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{

    padding:120px 0;

    background:#f8f8f8;

}

.testimonial-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#FFD700;

    font-size:20px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

    font-style:italic;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    margin-bottom:5px;

}

.client span{

    color:#888;

    font-size:14px;

}

@media(max-width:992px){

.testimonial-grid{

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

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

}

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

.faq{

    padding:120px 0;
    background:#ffffff;

}

.faq-container{

    max-width:900px;
    margin:60px auto 0;

}

.faq-item{

    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;

}

.faq-question{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 30px;
    cursor:pointer;

}

.faq-question h3{

    font-size:20px;

}

.faq-question span{

    font-size:30px;
    color:var(--gold);
    font-weight:bold;

}

.faq-answer{

    max-height:0;
    overflow:hidden;
    transition:.4s ease;

}

.faq-answer p{

    padding:0 30px 25px;
    color:#666;
    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:200px;

}

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

.cta{

    padding:120px 0;

    background:linear-gradient(rgba(17,17,17,.88),rgba(17,17,17,.88)),
    url("../images/cta-bg.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

.cta-content{

    max-width:800px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.cta-content span{

    color:var(--gold);

    font-weight:600;

    letter-spacing:3px;

}

.cta-content h2{

    font-size:58px;

    margin:25px 0;

    font-family:'Cormorant Garamond',serif;

    line-height:1.2;

}

.cta-content p{

    color:#ddd;

    line-height:1.9;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

@media(max-width:768px){

.cta-content h2{

font-size:40px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

}

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

footer{

    background:#111;

    color:#fff;

    padding:90px 0 20px;

}

.footer-grid{

    display:grid;

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

    gap:40px;

}

.footer-logo{

    font-size:40px;

    font-family:'Cormorant Garamond',serif;

}

.footer-logo span{

    color:var(--gold);

}

.footer-box p{

    color:#bbb;

    margin-top:20px;

    line-height:1.9;

}

.footer-box h3{

    margin-bottom:25px;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    color:#bbb;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:var(--gold);

    padding-left:8px;

}

.footer-box i{

    color:var(--gold);

    margin-right:10px;

}

.social-links{

    margin-top:30px;

}

.social-links a{

    width:45px;

    height:45px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#222;

    border-radius:50%;

    margin-right:10px;

    color:#fff;

    transition:.3s;

}

.social-links a:hover{

    background:var(--gold);

    transform:translateY(-5px);

}

.footer-bottom{

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

    margin-top:60px;

    padding-top:25px;

    text-align:center;

    color:#999;

}

@media(max-width:992px){

.footer-grid{

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

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

}

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

.about-hero{

height:70vh;

background:url("../images/about-banner.jpg") center center/cover;

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

.about-hero-content{

position:relative;

z-index:2;

text-align:center;

color:#fff;

}

.about-hero-content span{

color:var(--gold);

letter-spacing:3px;

font-weight:600;

}

.about-hero-content h1{

font-size:70px;

margin:25px 0;

font-family:'Cormorant Garamond',serif;

}

.about-hero-content p{

max-width:650px;

margin:auto;

line-height:1.8;

}

/*=========================================
WHO WE ARE
=========================================*/

.about-company{

    padding:120px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

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

}

.about-text span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.about-text h2{

    font-size:48px;

    margin:20px 0;

    font-family:'Cormorant Garamond', serif;

}

.about-text p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

@media(max-width:768px){

.about-grid{

grid-template-columns:1fr;

}

.about-text{

text-align:center;

}

}

/*=========================================
OUR STORY
=========================================*/

.our-story{

    padding:120px 0;

    background:#f8f8f8;

}

.story-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    margin-top:60px;

}

.story-left h3{

    font-size:40px;

    margin-bottom:25px;

    font-family:'Cormorant Garamond',serif;

}

.story-left p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.story-right img{

    width:100%;

    border-radius:20px;

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

}

@media(max-width:768px){

.story-content{

grid-template-columns:1fr;

}

.story-left{

text-align:center;

}

}

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

.mission-vision{

    padding:120px 0;

    background:#ffffff;

}

.mission-grid{

    display:grid;

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

    gap:40px;

    margin-top:60px;

}

.mission-card{

    background:#fff;

    padding:50px 40px;

    border-radius:20px;

    text-align:center;

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

    transition:.4s;

}

.mission-card:hover{

    transform:translateY(-10px);

}

.mission-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.mission-card h3{

    font-size:32px;

    margin-bottom:20px;

    font-family:'Cormorant Garamond', serif;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}

@media(max-width:768px){

.mission-grid{

grid-template-columns:1fr;

}

}

/*=========================================
WHY REAL CROWN
=========================================*/

.why-realcrown{

padding:120px 0;

background:#f8f8f8;

}

.why-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.why-box{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

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

transition:.4s;

}

.why-box:hover{

transform:translateY(-10px);

}

.why-box i{

font-size:45px;

color:var(--gold);

margin-bottom:25px;

}

.why-box h3{

margin-bottom:15px;

font-size:24px;

}

.why-box p{

color:#666;

line-height:1.8;

}

@media(max-width:992px){

.why-grid{

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

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}

/*=========================================
FACTORY SECTION
=========================================*/

.factory-section{

    padding:120px 0;

    background:#fff;

}

.factory-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.factory-content span{

    color:var(--gold);

    font-weight:600;

    letter-spacing:2px;

}

.factory-content h2{

    font-size:48px;

    margin:20px 0;

    font-family:'Cormorant Garamond', serif;

}

.factory-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.factory-list{

    list-style:none;

    padding:0;

}

.factory-list li{

    margin-bottom:18px;

    font-size:17px;

}

.factory-list i{

    color:var(--gold);

    margin-right:10px;

}

.factory-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

@media(max-width:768px){

.factory-grid{

grid-template-columns:1fr;

}

}

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

.product-hero{

    height:65vh;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/product-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.product-hero-content{

    color:#fff;

}

.product-hero-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.product-hero-content h1{

    font-size:65px;

    margin:20px 0;

    font-family:'Cormorant Garamond',serif;

}

.product-hero-content p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

}

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

.product-filter{

    padding:60px 0;

    background:#fff;

}

.filter-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.filter-buttons button{

    padding:14px 28px;

    border:1px solid #ddd;

    background:#fff;

    border-radius:40px;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

}

.filter-buttons button:hover,

.filter-buttons button.active{

    background:var(--gold);

    color:#fff;

    border-color:var(--gold);

}

/*=========================================
PRODUCT GRID
=========================================*/

.products{

    padding:80px 0 120px;

}

.products-grid{

    display:grid;

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

    gap:30px;

}

.product-item{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.3s;

}

.product-item:hover{

    transform:translateY(-8px);

}

.product-item img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.product-info{

    padding:25px;

    text-align:center;

}

.product-info h3{

    margin-bottom:12px;

}

.product-info p{

    color:var(--gold);

    font-size:20px;

    margin-bottom:20px;

    font-weight:600;

}

@media(max-width:992px){

.products-grid{

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

}

}

@media(max-width:768px){

.products-grid{

grid-template-columns:1fr;

}

}

/*=========================================
WHY BUY
=========================================*/

.why-buy{

    padding:100px 0;

    background:#f8f8f8;

}

.why-buy-grid{

    display:grid;

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

    gap:25px;

    margin-top:50px;

}

.why-buy-item{

    text-align:center;

    padding:30px 20px;

}

.why-buy-item i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:20px;

}

.why-buy-item h3{

    margin-bottom:12px;

}

.why-buy-item p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.why-buy-grid{

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

}

}

@media(max-width:768px){

.why-buy-grid{

grid-template-columns:1fr;

}

}

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

.product-cta{

    padding:120px 0;

    background:#111;

    color:#fff;

    text-align:center;

}

.product-cta-content{

    max-width:750px;

    margin:auto;

}

.product-cta-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.product-cta-content h2{

    font-size:50px;

    margin:25px 0;

    font-family:'Cormorant Garamond', serif;

}

.product-cta-content p{

    color:#ddd;

    line-height:1.9;

    margin-bottom:35px;

}

/*=========================================
MANUFACTURING HERO
=========================================*/

.manufacturing-hero{

    height:65vh;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/manufacturing-banner.jpg") center/cover;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.manufacturing-hero-content{

    color:#fff;

}

.manufacturing-hero-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.manufacturing-hero-content h1{

    font-size:60px;

    margin:20px 0;

    font-family:'Cormorant Garamond',serif;

}

.manufacturing-hero-content p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

}
/*=========================================
PROCESS
=========================================*/

.manufacturing-process{

    padding:120px 0;

}

.process-grid{

    display:grid;

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

    gap:20px;

    margin-top:60px;

}

.process-box{

    text-align:center;

    padding:30px 20px;

}

.process-box span{

    display:inline-flex;

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

}

.process-box h3{

    margin-bottom:15px;

}

.process-box p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.process-grid{

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

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}

/*=========================================
INFRASTRUCTURE
=========================================*/

.infrastructure{

    padding:120px 0;

    background:#f8f8f8;

}

.infrastructure-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.infrastructure-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.infrastructure-content span{

    color:var(--gold);

    font-weight:600;

    letter-spacing:2px;

}

.infrastructure-content h2{

    font-size:48px;

    margin:20px 0;

    font-family:'Cormorant Garamond',serif;

}

.infrastructure-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.infra-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.infra-item i{

    color:var(--gold);

}

@media(max-width:768px){

.infrastructure-grid{

grid-template-columns:1fr;

}

}

/*=========================================
QUALITY CONTROL
=========================================*/

.quality-control{

    padding:120px 0;

    background:#fff;

}

.quality-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    margin-top:60px;

}

.quality-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.quality-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.quality-item i{

    color:var(--gold);

    font-size:20px;

}

.quality-item span{

    font-size:17px;

    color:#444;

}

@media(max-width:768px){

.quality-grid{

grid-template-columns:1fr;

}

}

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

.bulk-cta{

    padding:120px 0;

    background:#2b2a2a;

    color:#fff;

    text-align:center;

}

.bulk-cta-content{

    max-width:800px;

    margin:auto;

}

.bulk-cta-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.bulk-cta-content h2{

    font-size:50px;

    margin:20px 0;

    font-family:'Cormorant Garamond',serif;

}

.bulk-cta-content p{

    color:#ddd;

    line-height:1.9;

    margin-bottom:35px;

}

.bulk-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.secondary-btn{

    display:inline-block;

    padding:15px 35px;

    border:2px solid var(--gold);

    color:#fff;

    border-radius:40px;

    transition:.3s;

}

.secondary-btn:hover{

    background:var(--gold);

}

/*=========================================
GALLERY HERO
=========================================*/

.gallery-hero{

    height:65vh;

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/gallery-banner.jpg") center/cover;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.gallery-hero-content{

    color:#fff;

}

.gallery-hero-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.gallery-hero-content h1{

    font-size:60px;

    margin:20px 0;

    font-family:'Cormorant Garamond',serif;

}

.gallery-hero-content p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

}

/*=========================================
FACTORY GALLERY
=========================================*/


.factory-gallery{

    padding:100px 0;

    background:#fff;

}



.section-title{

    text-align:center;

    margin-bottom:60px;

}


.section-title span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}


.section-title h2{

    font-size:45px;

    margin:15px 0;

    font-family:'Cormorant Garamond',serif;

}


.section-title p{

    max-width:650px;

    margin:auto;

    color:#777;

    line-height:1.8;

}



.gallery-grid{

    display:grid;

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

    gap:30px;

}



.gallery-card{

    overflow:hidden;

    background:#fff;

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

    transition:.4s;

}



.gallery-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s;

}



.gallery-card:hover img{

    transform:scale(1.08);

}



.gallery-info{

    padding:25px;

}



.gallery-info h3{

    font-size:25px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}



.gallery-info p{

    color:#666;

    line-height:1.7;

}



.gallery-card:hover{

    transform:translateY(-10px);

}

/*=========================================
PRODUCT GALLERY
=========================================*/


.product-gallery{

padding:100px 0;

background:#f8f7f4;

}



.product-grid{

display:grid;

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

gap:25px;

}



.product-card{

background:#fff;

overflow:hidden;

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

transition:.4s;

}



.product-card img{

width:100%;

height:350px;

object-fit:cover;

transition:.5s;

}



.product-card:hover img{

transform:scale(1.1);

}



.product-content{

padding:25px;

text-align:center;

}



.product-content h3{

font-size:26px;

margin-bottom:10px;

font-family:'Cormorant Garamond',serif;

}



.product-content p{

color:#666;

line-height:1.7;

}



.product-card:hover{

transform:translateY(-12px);

}

/*=========================================
PACKAGING GALLERY
=========================================*/


.packaging-gallery{

padding:100px 0;

background:#fff;

}



.packaging-grid{

display:grid;

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

gap:25px;

}



.packaging-card{

overflow:hidden;

background:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.12);

transition:.4s;

}



.packaging-card img{

width:100%;

height:300px;

object-fit:cover;

transition:.5s;

}



.packaging-card:hover img{

transform:scale(1.08);

}



.packaging-info{

padding:25px;

}



.packaging-info h3{

font-size:25px;

margin-bottom:10px;

font-family:'Cormorant Garamond',serif;

}



.packaging-info p{

color:#666;

line-height:1.7;

}



.packaging-card:hover{

transform:translateY(-10px);

}

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


.gallery-cta{

padding:100px 0;

background:

linear-gradient(rgba(0,0,0,.65),
rgba(0,0,0,.65)),

url("../images/cta-banner.jpg")

center/cover;

text-align:center;

}



.cta-content{

color:white;

}



.cta-content span{

color:var(--gold);

letter-spacing:4px;

font-weight:600;

}



.cta-content h2{

font-size:50px;

margin:20px 0;

font-family:'Cormorant Garamond',serif;

}



.cta-content p{

max-width:600px;

margin:auto;

line-height:1.8;

color:#ddd;

}



.cta-btn{

display:inline-block;

margin-top:35px;

padding:15px 40px;

background:var(--gold);

color:#000;

text-decoration:none;

font-weight:600;

transition:.3s;

}



.cta-btn:hover{

background:white;

}

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


.contact-hero{

height:65vh;

background:

linear-gradient(rgba(0,0,0,.55),
rgba(0,0,0,.55)),

url("../images/contact-banner.jpg")

center/cover;


display:flex;

align-items:center;

justify-content:center;

text-align:center;

}



.contact-hero-content{

color:white;

}



.contact-hero-content span{

color:var(--gold);

letter-spacing:3px;

font-weight:600;

}



.contact-hero-content h1{

font-size:60px;

margin:20px 0;

font-family:'Cormorant Garamond',serif;

}



.contact-hero-content p{

max-width:700px;

margin:auto;

line-height:1.8;

font-size:18px;

}

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


.contact-info{

padding:100px 0;

background:#f8f7f4;

}



.info-grid{

display:grid;

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

gap:25px;

}



.info-card{

background:white;

padding:40px 25px;

text-align:center;

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

transition:.4s;

}



.info-icon{

font-size:40px;

margin-bottom:20px;

}



.info-card h3{

font-size:26px;

margin-bottom:15px;

font-family:'Cormorant Garamond',serif;

}



.info-card p{

color:#666;

line-height:1.8;

}



.info-card:hover{

transform:translateY(-10px);

}

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


.contact-form-section{

padding:100px 0;

background:#fff;

}



.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}



.contact-message span{

color:var(--gold);

letter-spacing:3px;

font-weight:600;

}



.contact-message h2{

font-size:45px;

margin:20px 0;

font-family:'Cormorant Garamond',serif;

}



.contact-message p{

color:#666;

line-height:1.9;

margin-bottom:20px;

}





.contact-form{

background:#f8f7f4;

padding:40px;

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

}




.contact-form input,

.contact-form textarea{


width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

outline:none;

font-size:15px;


}




.contact-form textarea{

height:140px;

resize:none;

}




.contact-form button{

padding:15px 35px;

background:var(--gold);

border:none;

cursor:pointer;

font-weight:600;

transition:.3s;

}



.contact-form button:hover{

background:#000;

color:#fff;

}/*=========================================
MAP SECTION
=========================================*/


.map-section{

padding:100px 0;

background:#f8f7f4;

}



.map-box{

width:100%;

height:450px;

overflow:hidden;

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

}



.map-box iframe{

width:100%;

height:100%;

border:0;

}

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


.whatsapp-cta{

padding:90px 0;

background:

linear-gradient(rgba(0,0,0,.7),
rgba(0,0,0,.7)),

url("../images/whatsapp-banner.jpg")

center/cover;

text-align:center;

}



.whatsapp-content{

color:white;

}



.whatsapp-content span{

color:var(--gold);

letter-spacing:3px;

font-weight:600;

}



.whatsapp-content h2{

font-size:50px;

margin:20px 0;

font-family:'Cormorant Garamond',serif;

}



.whatsapp-content p{

max-width:650px;

margin:auto;

line-height:1.8;

color:#ddd;

}



.whatsapp-btn{

display:inline-block;

margin-top:35px;

padding:16px 45px;

background:#25D366;

color:white;

text-decoration:none;

font-weight:600;

transition:.3s;

}



.whatsapp-btn:hover{

transform:translateY(-5px);

background:#1da851;

}

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


@media(max-width:992px){


.gallery-grid{

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

}



.product-grid{

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

}



.packaging-grid{

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

}



.info-grid{

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

}



.contact-wrapper{

grid-template-columns:1fr;

}



.footer-grid{

grid-template-columns:1fr 1fr;

}



.gallery-hero-content h1,
.contact-hero-content h1{

font-size:45px;

}



.cta-content h2,
.whatsapp-content h2{

font-size:40px;

}



}





@media(max-width:600px){



.container{

width:90%;

}



.gallery-grid,
.product-grid,
.packaging-grid,
.info-grid,
.footer-grid{

grid-template-columns:1fr;

}



.gallery-hero,
.contact-hero{

height:55vh;

}



.gallery-hero-content h1,
.contact-hero-content h1{

font-size:35px;

}



.gallery-hero-content p,
.contact-hero-content p{

font-size:15px;

}



.section-title h2{

font-size:35px;

}



.contact-form{

padding:25px;

}



.map-box{

height:300px;

}



.footer{

text-align:center;

}



}

/*=========================================
LEGAL PAGES
=========================================*/

.legal-hero{

    height:45vh;

    background:linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url("../images/legal-banner.jpg") center/cover;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.legal-hero-content{

    color:#fff;

}

.legal-hero-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.legal-hero-content h1{

    font-size:55px;

    margin:20px 0;

    font-family:'Cormorant Garamond', serif;

}

.legal-content{

    padding:100px 0;

    background:#f8f8f8;

}

.legal-box{

    background:#fff;

    padding:50px;

    border-radius:20px;

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

}

.legal-box h2{

    margin-top:35px;

    margin-bottom:15px;

    color:#222;

}

.legal-box h2:first-child{

    margin-top:0;

}

.legal-box p{

    color:#666;

    line-height:1.9;

}

@media(max-width:768px){

.legal-box{

padding:30px 20px;

}

.legal-hero-content h1{

font-size:40px;

}

}
@media(max-width:768px){
...
}

/*=========================================
LAST UPDATE
=========================================*/

.last-update{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid #ddd;

}

.last-update p{

    color:#888;

    font-size:15px;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.4s;

}

header.sticky{

    background:#fff;

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

}

header.sticky .nav-links a{

    color:#222;

}

header.sticky .logo{

    color:#222;

}

/*=========================================
BACK TO TOP
=========================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    font-size:18px;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

#backToTop:hover{

    transform:translateY(-5px);

}