
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root{
    --primary:#C62828;
    --primary-dark:#A91E1E;
    --secondary:#F4B400;
    --green:#2E7D32;
    --white:#ffffff;
    --cream:#FFF8F1;
    --light:#FFFDFB;
    --text:#4E342E;
    --text-light:#6D4C41;
    --border:#ECECEC;
    --shadow:
    0 10px 30px rgba(0,0,0,.08);
    --shadow-hover:
    0 20px 40px rgba(0,0,0,.15);
    --radius:18px;
    --transition:.35s ease;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
}

body{
    background:var(--cream);
    color:var(--text);
    font-family:'Open Sans',sans-serif;
    overflow-x:hidden;
}
img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{

    list-style:none;
}

button{
    border:none;
    cursor:pointer;
    font-family:inherit;
}

input,
textarea{

    font-family:inherit;
}

.container{

    width:min(1200px,92%);
    margin:auto;
}

section{

    padding:90px 0;
}
h1,
h2,
h3,
h4{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    line-height:1.2;
}

h1{

    font-size:62px;
    font-weight:700;
}
h2{

    font-size:42px;
    margin-bottom:15px;
}
h3{

    font-size:26px;
}
p{

    color:var(--text-light);
    line-height:1.8;
    font-size:16px;
}
.section-title{

    text-align:center;
    margin-bottom:10px;
    color:var(--text);
}

.section-subtitle{

    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}
.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 34px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-family:'Poppins';
    font-weight:600;
    transition:var(--transition);
    box-shadow:var(--shadow);
}

.btn:hover{

    background:var(--primary-dark);
    transform:translateY(-4px);
    box-shadow:var(--shadow-hover);
}

.btn.secondary{

    background:white;
    color:var(--primary);
    border:2px solid var(--primary);
}

.btn.secondary:hover{

    color:#fff;
    background:var(--primary);
}

.card{

    background:white;
    border-radius:18px;
    overflow:hidden;
    transition:var(--transition);
    box-shadow:var(--shadow);
}

.card:hover{

    transform:translateY(-10px);
    box-shadow:var(--shadow-hover);
}

.card img{

    width:100%;
    height:260px;
    object-fit:cover;
}

.card-body{

    padding:25px;
}
.feature-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.badge{

    display:inline-block;
    padding:10px 20px;
    background:#FFE8D6;
    color:var(--primary);
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-track{

    background:#F5F5F5;
}
.hero{
    background:linear-gradient(to right,#FFF8F1,#FFF5EC);
    min-height:100vh;
    padding-bottom:80px;
}
.topbar{

    width:100%;
    height:90px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 5%;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 18px rgba(0,0,0,.08);
}
.brand{

    display:flex;
    align-items:center;
}

.brand-logo{

    display:flex;
    align-items:center;
    gap:18px;
}

.brand-logo img{

    height:60px;
    width:auto;
    object-fit:contain;
    transition:.35s;
}

.brand-logo img:hover{

    transform:scale(1.08);
}

.brand-text{

    font-family:'Poppins',sans-serif;
    font-size:28px;
    font-weight:700;
    color:var(--primary);
    line-height:1;
}

.brand-text span{

    display:block;
    font-size:14px;
    color:#777;
    letter-spacing:2px;
}
.nav-links{

    display:flex;
    align-items:center;
    gap:12px;
}
.nav-links a{
    position:relative;
    padding:12px 20px;
    border-radius:30px;
    font-family:'Poppins';
    font-size:15px;
    font-weight:600;
    color:var(--text);
    transition:.35s;
}
.nav-links a:hover{

    color:var(--primary);
    background:#FFF2F2;
}
.nav-links a.active{

    background:var(--primary);
    color:white;
}
.nav-links a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:8px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.35s;
    transform:translateX(-50%);
}
.nav-links a:hover::after{
    width:60%;
}
.nav-links .contact-btn{
    background:var(--primary);
    color:#fff;
    padding:12px 28px;
    border-radius:35px;
    box-shadow:0 10px 20px rgba(198,40,40,.25);
}
.nav-links .contact-btn:hover{

    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-3px);
}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:var(--primary);
}
@media(max-width:992px){

.nav-links{
position:fixed;
top:90px;
right:-100%;
width:280px;
height:100vh;
background:#fff;
display:flex;
flex-direction:column;
justify-content:flex-start;
padding-top:40px;
gap:10px;
transition:.4s;
box-shadow:-5px 0 25px rgba(0,0,0,.08);
}
.nav-links.active{
right:0;
}

.nav-links a{
width:90%;
text-align:center;
}
.menu-toggle{
display:block;
}
}
/* --- Hero Section --- */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: auto;
}

.hero-content > div:first-child {
    flex: 1;
}

.hero-content h1 {
    font-size: 54px;
    margin: 20px 0;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-card {
    flex: 1;
    max-width: 500px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    height: 400px;
    object-fit: cover; /* Keeps the image from stretching */
}
/* --- Products --- */
.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}
/* --- Story / About Section --- */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat strong {
    font-size: 36px;
    color: var(--primary);
    display: block;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat span {
    color: var(--text-light);
    font-size: 15px;
}
/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- Testimonials --- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quote {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quote:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.quote strong {
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}
/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- Testimonials --- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quote {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quote:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.quote strong {
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}
/* =========================================
   FOOTER STYLES
   ========================================= */

.main-footer {
    background-color: var(--text); /* Rich dark brown background */
    color: var(--light);
    padding-top: 80px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 60px; /* Space between content and footer */
}

.footer-container {
    width: min(1200px, 92%);
    margin: auto;
    display: grid;
    /* Brand gets slightly more space than the others */
    grid-template-columns: 2fr 1fr 1.5fr; 
    gap: 50px;
    padding-bottom: 60px;
}

/* --- Brand Column --- */
.footer-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-bio {
    color: rgba(255, 255, 255, 0.7); /* Slightly faded text for readability */
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--text); /* Dark text on yellow background */
    transform: translateY(-4px);
}

/* --- Headings for Links & Contact --- */
.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

/* Adds a nice yellow underline accent to the headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

/* --- Lists and Links --- */
.footer-links li, 
.footer-contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-links a, 
.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover, 
.footer-contact-info a:hover {
    color: var(--secondary);
    transform: translateX(5px); /* Gentle slide right on hover */
}

/* Contact Icons */
.footer-contact-info i {
    color: var(--secondary);
    margin-top: 4px;
    width: 18px;
    text-align: center;
}

.footer-contact-info span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 15px;
}

/* --- Footer Bottom (Copyright) --- */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2); /* Slightly darker than the main footer */
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    width: min(1200px, 92%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary);
}

.footer-legal .separator {
    margin: 0 10px;
}

/* --- Responsive Design for Footer --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
/* The hero banner for inner pages */
.page-banner {
    background: linear-gradient(rgba(78, 52, 46, 0.85), rgba(78, 52, 46, 0.95)), url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1400&q=80') center/cover;
    padding: 100px 5%;
    text-align: center;
    color: var(--white);
}

.page-banner .badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary); /* Uses your yellow accent */
}

.page-banner h1 {
    color: var(--white);
    font-size: 54px;
    margin: 20px 0;
}

.page-banner p {
    color: var(--cream);
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

/* --- About Us Content Layout --- */
.about-container {
    width: min(1200px, 92%);
    margin: auto;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
}

/* Reverses the order for the middle row */
.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 18px;
}

.about-image-card {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-card img {
    width: 100%;
    height: 450px;
    object-fit: cover; /* Prevents stretching */
    transition: var(--transition);
}

.about-image-card:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .about-row, 
    .about-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 60px;
    }

    .page-banner {
        padding: 60px 5%;
    }
    
    .page-banner h1 {
        font-size: 42px;
    }
}
/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-wrap {
    width: min(1200px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 400px; /* Form on left, Info on right */
    gap: 40px;
    align-items: start;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

/* --- Form Styles --- */
form .field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

form label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

form input, 
form textarea {
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 15px 18px;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

form input:focus, 
form textarea:focus {
    outline: none;
    border-color: var(--secondary); /* Yellow accent on focus */
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.15); 
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

/* --- Contact Info Sidebar --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.info-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-row i {
    color: var(--secondary);
    font-size: 22px;
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.info-row strong {
    display: block;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-row .note,
.info-row a {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    transition: var(--transition);
}

.info-row a:hover {
    color: var(--primary);
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 20px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-wrap {
        grid-template-columns: 1fr; /* Stacks the cards on tablets/mobile */
    }
    .contact-card {
        padding: 30px;
    }
    .contact-info {
        margin-top: 20px;
    }
    .form-actions {
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .page-banner {
        padding: 60px 5%;
    }
    .page-banner h1 {
        font-size: 34px;
    }
    .page-banner p {
        font-size: 16px;
        max-width: 100%;
    }
    .contact-card {
        padding: 28px;
    }
    .info-row {
        gap: 14px;
    }
    .info-row strong {
        font-size: 16px;
    }
    .info-row .note,
    .info-row a {
        font-size: 14px;
    }
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .form-actions .btn {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .contact-card {
        padding: 22px;
    }
    .page-banner {
        padding: 45px 5%;
    }
    .page-banner h1 {
        font-size: 28px;
    }
    .page-banner p {
        font-size: 15px;
    }
    .contact-wrap {
        gap: 25px;
    }
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .form-actions .btn {
        width: 100%;
    }
    .map-embed iframe {
        min-height: 220px;
    }
}
/* --- Full Screen Hero & Image Fit --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Allows hero to scale with viewport height */
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.swiper-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    min-height: 100%;
}

.hero-text-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 80px 20px 40px;
}

.hero-text-wrapper h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.1;
}

.hero-text-wrapper p {
    font-size: clamp(1rem, 2vw, 1.15rem);
}

/* --- The "Back Shadow" Overlay (Vignette) --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creates a shadow around the edges while keeping the center brighter */
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

/* --- Perfectly Centered Text --- */
.hero-text-wrapper {
    text-align: center;
    max-width: 850px;
    margin: 0 auto; /* Ensures the box itself is centered */
    color: var(--white);
    padding-top: 50px; /* Prevents overlap with the top navigation */
}

.hero-text-wrapper h1 {
    font-size: 64px;
    color: var(--white);
    margin: 20px 0;
    line-height: 1.15;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.6); /* Adds a shadow directly behind the text */
}

.hero-text-wrapper p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-text-wrapper .hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center; /* Centers the buttons */
}

/* Adjust Pagination Dots */
.swiper-pagination {
    bottom: 30px !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .hero-slider {
        min-height: 420px;
        height: auto;
    }
    .hero-text-wrapper {
        padding: 60px 18px 30px;
    }
    .hero-text-wrapper h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    .hero-text-wrapper p {
        font-size: 15px;
    }
    .hero-text-wrapper .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    .hero-text-wrapper .hero-actions .btn {
        width: 100%;
    }
}
/* =========================================
   CREATIVE PRODUCT CARDS (Used on Home & Products Page)
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.prod-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 40, 40, 0.12); /* Subtle primary color shadow */
}
.prod-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    overflow: hidden;
    background: var(--light);
}

.prod-img-wrapper img {
    width: 100%;
    height: 100%; /* Forces the image to fill the 250px container */
    object-fit: cover; /* This crops the image perfectly to fill the area without stretching */
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.prod-card:hover .prod-img-wrapper img {
    transform: scale(1.1);
}

/* Floating Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--text);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.4);
    z-index: 2;
}

.prod-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.prod-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    margin-top: auto;
}

.feature-pill {
    background: #FFF2F2;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.prod-action {
    margin-top: auto;
    width: 100%;
}

.prod-action .btn {
    width: 100%;
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px;
}

.prod-card:hover .prod-action .btn {
    background: var(--primary);
    color: var(--white);
}

.toast{
    position:fixed;
    top:30px;
    left:50%;
    transform:translateX(-50%) translateY(-100px);
    min-width:320px;
    max-width:450px;
    padding:16px 28px;
    border-radius:12px;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;
    text-align:center;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:all .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}
.toast.show{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}
.toast.success{

    background:#2E7D32;
}
.toast.error{

    background:#C62828;
}
/* =========================================
   BROCHURE NAV BUTTON 
   ========================================= */
.brochure-btn {
    margin-left: 45px; /* Creates the big gap between Contact Us and Brochure */
    background: var(--primary); /* Uses your brand red */
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(198, 40, 40, 0.2);
    display: inline-flex;
    align-items: center;
}

.brochure-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(198, 40, 40, 0.3);
    color: var(--white) !important;
}

/* Mobile Menu Fix for the Brochure Button */
@media (max-width: 768px) {
    .brochure-btn {
        margin-left: 0; /* Removes the gap on mobile so it centers nicely */
        margin-top: 15px; /* Adds space above it instead */
        justify-content: center;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
}
