*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f8f8f8;
    color:#333;
}

.container{
    width:100%;
}

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

.top-box{
    background:linear-gradient(135deg,#b30000,#d62828);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    color:white;
}

.header-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 20px;
    gap:12px;
}

.logo img{
    width:260px;
    height:70px;
    object-fit:contain;
    display:block;
}

.header-buttons{
    display:flex;
    align-items:center;
    /* gap:8px; */
    gap:8px;
}

.home-btn,
.contact-btn{
    background:#fff;
    color:#b30000;
    /* padding:12px 18px; */
    padding:12px 12px;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    transition:.2s;
    white-space:nowrap;
}

.home-btn:hover,
.contact-btn:hover{
    transform:translateY(-2px);
}

/* ================= HERO IMAGE ================= */

.hero-image{
    width:100%;
    height:auto;
    max-height:calc(100vh - 80px);
    object-fit:cover;
    display:block;
    margin:auto;
}

/* ================= SITE CONTENT ================= */

.site-content-box{
    background:#fff;
    padding:35px 40px;
    border-radius:18px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    margin:25px auto;
    max-width:1150px;
    width:100%;
    text-align:center;
    line-height:1.8;
}

.site-content-box h2{
    color:#b30000;
    margin-bottom:12px;
    font-size:30px;
}

.site-content-box p{
    max-width:800px;
    margin:auto;
    font-size:17px;
}

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

.products{
    padding:20px 0 40px;
}

.products h2{
    text-align:center;
    color:#C1121F;
    margin-bottom:25px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding:20px 40px;
}

.card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.card h3,
.card p{
    padding:0 16px;
}

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

.about-section{
    padding:80px 8%;
    background:#fff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.about-content{
    flex:1;
    min-width:320px;
}

.about-content h2{
    font-size:2rem;
    line-height:1.3;
    color:#111;
    margin-bottom:20px;
    font-weight:600;
}

.about-content p{
    font-size:1.05rem;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

.about-image{
    flex:1;
    min-width:320px;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:500px;
    height:450px;
    object-fit:contain;
    border-radius:20px;
}

/* ================= TESTIMONIAL ================= */

.customer-section{
    padding:70px 20px;
    text-align:center;
}

.section-title{
    font-size:2.2rem;
    color:#b30000;
    margin-bottom:10px;
}

.section-subtitle{
    color:#555;
    font-size:1rem;
    margin-bottom:50px;
}

.testimonial-wrapper{
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
}

.testimonial-card{
    background:#fff;
    width:320px;
    padding:30px 25px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.customer-img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:4px solid #d4af37;
}

.testimonial-card h3{
    margin:10px 0 5px;
    color:#222;
}

.stars{
    color:#d4af37;
    font-size:1.2rem;
    margin-bottom:15px;
}

.quote{
    color:#555;
    font-size:0.95rem;
    line-height:1.7;
    font-style:italic;
}

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

footer{
    background:#C1121F;
    padding:40px 25px;
    margin-top:0px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    padding:10px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
}

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

@media(max-width:768px){

    .header-row{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        flex-wrap:nowrap;
        padding:8px 10px;
        gap:6px;
    }

    .logo img{
        width:110px;
        height:auto;
    }

    .header-buttons{
        gap:5px;
        flex-shrink:0;
    }

    .home-btn,
    .contact-btn{
        padding:6px 8px;
        font-size:11px;
        border-radius:6px;
    }

    .hero-image{
        width:100%;
        height:auto;
        max-height:none;
        object-fit:contain;
    }

    .grid{
        padding:20px;
        gap:25px;
    }

    .about-section{
        padding:50px 20px;
    }

    .about-content h2{
        font-size:1.6rem;
    }

    .about-image img{
        height:auto;
        max-height:350px;
    }

    .section-title{
        font-size:1.8rem;
    }

    .testimonial-card{
        width:100%;
        max-width:340px;
    }
}

/* ================= HERITAGE SECTION ================= */

.heritage-section{
    padding:100px 8%;
    background:#fafafa;
}

.heritage-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.heritage-image{
    flex:1;
    min-width:320px;
}

.heritage-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.heritage-content{
    flex:1;
    min-width:320px;
}

.section-tag{
    display:inline-block;
    background:#fff3e0;
    color:#b30000;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.heritage-content h2{
    font-size:3rem;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
}

.lead-text{
    font-size:1.2rem;
    color:#333;
    font-weight:500;
}

.heritage-content p{
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

.heritage-features{
    display:flex;
    gap:20px;
    margin:35px 0;
    flex-wrap:wrap;
}

.feature-box{
    background:#fff;
    padding:20px;
    min-width:160px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.feature-box h3{
    color:#b30000;
    font-size:28px;
    margin:0;
}

.feature-box span{
    color:#666;
    font-size:14px;
}

.heritage-btn{
    display:inline-block;
    background:#b30000;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

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

@media(max-width:768px){

    .heritage-section{
        padding:60px 20px;
    }

    .heritage-content h2{
        font-size:2rem;
    }

    .heritage-image img{
        height:400px;
    }

    .feature-box{
        width:100%;
    }
}

/* ================= TRUST SECTION ================= */

.trust-section{
    padding:80px 8%;
    background:linear-gradient(
        135deg,
        #fff8ee 0%,
        #f9ecd2 100%
    );
    position:relative;
    
}

.trust-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.trust-tag{
    display:inline-block;
    background:#fff3e0;
    color:#b30000;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.trust-header h2{
    font-size:3rem;
    color:#111;
    margin-bottom:15px;
}

.trust-header p{
    color:#666;
    line-height:1.8;
}

.trust-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:70px;
}

.stat-box{
    background:#fafafa;
    padding:30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.stat-box h3{
    color:#b30000;
    font-size:32px;
    margin-bottom:10px;
}

.stat-box span{
    color:#666;
}

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.premium-testimonial{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    position:relative;
}

.quote-icon{
    font-size:60px;
    color:#d4af37;
    line-height:1;
    margin-bottom:15px;
}

.premium-testimonial p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.premium-testimonial h4{
    margin:0;
    color:#111;
}

.premium-testimonial span{
    color:#888;
    font-size:14px;
}

/* Large Tablets */

@media (max-width: 1200px){

    .trust-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-slider{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Tablets */

@media (max-width: 992px){

    .trust-section{
        padding:60px 30px;
    }

    .trust-header h2{
        font-size:42px;
    }

    .trust-stats{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .testimonial-slider{
        grid-template-columns:1fr;
    }

}

/* Mobile */

@media (max-width: 768px){

    .trust-section{
        padding:50px 20px;
    }

    .trust-header{
        margin-bottom:40px;
    }

    .trust-header h2{
        font-size:32px;
        line-height:1.3;
    }

    .trust-header p{
        font-size:15px;
    }

    .trust-stats{
        grid-template-columns:1fr;
        gap:15px;
        margin-bottom:40px;
    }

    .stat-box{
        padding:20px;
    }

    .stat-box h3{
        font-size:26px;
    }

    .testimonial-slider{
        grid-template-columns:1fr;
        gap:20px;
    }

    .premium-testimonial{
        padding:25px;
    }

    .quote-icon{
        font-size:40px;
    }

}

/* Small Mobile */

@media (max-width: 480px){

    .trust-section{
        padding:40px 15px;
    }

    .trust-header h2{
        font-size:28px;
    }

    .trust-tag{
        font-size:13px;
        padding:8px 15px;
    }

    .premium-testimonial{
        padding:20px;
    }

}

/* ================= COLLECTIONS ================= */

.collections-section{
    padding:60px 8%;
    background:linear-gradient(
        180deg,
        #fffdf8 0%,
        #f8f1e6 100%
    );
    
}

.collections-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:40px;
}

.collection-tag{
    display:inline-block;
    background:#fff3e0;
    color:#b30000;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.collections-header h2{
    font-size:52px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
    letter-spacing:-1px;
}

.collections-header p{
    color:#666;
    line-height:1.8;
}

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

.collection-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.collection-card img{
    width:100%;
    height:450px;
    object-fit:cover;
    transition:.5s;
}

.collection-card:hover img{
    transform:scale(1.08);
}

.collection-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15),
        transparent
    );
    color:#fff;
}

.collection-overlay h3{
    margin-bottom:8px;
    font-size:24px;
}

.collection-overlay p{
    margin:0;
    color:#f0f0f0;
}

@media(max-width:992px){

    .collections-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .collections-section{
        padding:60px 20px;
    }

    .collections-header h2{
        font-size:2rem;
    }

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

    .collection-card img{
        height:380px;
    }
}

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

.main-header{
    background:#c40000;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.1);
}

.header-container{
    max-width:1300px;
    margin:auto;
    padding:12px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:70px;
    width:auto;
}

.header-nav{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-link{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    padding:10px 15px;
}

.login-btn{
    background:#fff;
    color:#c40000;
    padding:10px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* Mobile */

@media (max-width:768px){

    .logo img{
        height:50px;
    }

    .menu-toggle{
        display:block;
    }

    .header-nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#c40000;
        flex-direction:column;
        padding:20px;
        gap:15px;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
    }

    .header-nav.show{
        display:flex;
    }

    .nav-link,
    .login-btn{
        width:100%;
        text-align:center;
    }

    .login-btn{
        margin-top:5px;
    }
}

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

.site-footer{
    background:#0d0d0d;
    padding:70px 0 0;
    color:#fff;
    margin-top:0;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 30px 50px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:60px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-col h3{
    color:#d4af37;
    font-size:24px;
    font-weight:600;
    margin-bottom:25px;
}

.footer-col p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}
.footer-col a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-col a:hover{
    color:#d4af37;
    padding-left:5px;
}

.footer-col ul li:hover{
    color:#d4af37;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:20px;
    color:#aaa;
    font-size:14px;
}

@media (max-width:768px){

    .site-footer{
        padding:0;
    }

    .footer-container{
        padding:30px 20px;
        gap:15px;
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-col{
        margin:0;
        padding:0;
    }

    .footer-logo{
        width:180px;
        margin:0 auto 10px;
    }

    .footer-col h3{
        font-size:22px;
        margin:15px 0 10px;
    }

    .footer-col p{
        margin:5px 0;
        line-height:1.5;
    }

    .footer-col ul{
        margin:0;
        padding:0;
    }

    .footer-col ul li{
        margin:5px 0;
    }

    .footer-bottom{
        padding:12px;
        font-size:13px;
    }

}


