/* CSS RESET & VARIABLES */
:root {
    --primary-green: #2d7a4d;
    --secondary-blue: #0f2c59;
    --accent-orange: #f4a261;
    --bg-light: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary-blue);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e5233;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: var(--secondary-blue);
}

.btn-accent:hover {
    background-color: #e28f4f;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* 1. HEADER & NAVIGATION */
header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary-blue);
}

.logo i {
    color: var(--primary-green);
}

/* Desktop Navigation Wrapper */
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    margin-left: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-blue);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 600;
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 3-Line Hamburger Styling */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--secondary-blue);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-green);
}

/* 2. HERO SECTION */
.hero {
    position: relative;
    background: linear-gradient(rgba(15, 44, 89, 0.75), rgba(45, 122, 77, 0.45)), 
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    padding: 150px 0;
    color: #ffffff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 3. ABOUT TEASER */
.about-teaser {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    margin-top: 10px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* 4. CORE PRODUCTS SECTION */
.products-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 14px;
}

/* 5. WHY CHOOSE US SECTION */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.prop-card {
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.prop-card:hover {
    border-bottom-color: var(--primary-green);
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.prop-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.prop-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.prop-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* 6. FOOTER */
footer {
    background-color: var(--secondary-blue);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background-color: var(--primary-green);
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--accent-orange);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    align-items: flex-start;
}

.contact-info-list i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    font-size: 18px;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    transform: scale(1.1);
}

.bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* RESPONSIVE DESIGN & MOBILE INTERACTIVE NAVBAR OVERRIDES */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger button */
    }

    .navbar {
        position: relative;
        padding: 15px 0;
    }

    /* Transform menu container into a drop-down overlay drawer */
    .nav-menu {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        padding: 25px 20px;
        margin-left: 0;
        gap: 25px;
        z-index: 999;
        border-top: 2px solid var(--primary-green);
    }

    /* JS toggles this class to open/close menu options */
    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        padding: 5px 0;
    }

    .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    .nav-right .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}



/* ======================================================
   ABOUT US PAGE SPECIFIC STYLING
   ====================================================== */

.page-header {
    background: linear-gradient(rgba(15, 44, 89, 0.85), rgba(45, 122, 77, 0.75)), 
                url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Vision & Mission Grid */
.vision-mission-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.vm-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    border-top: 5px solid var(--primary-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vm-card h3 i {
    color: var(--primary-green);
    font-size: 28px;
}

.vm-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Supply Chain / Process Section */
.process-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Core Values */
.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--secondary-blue);
}

.values-list i {
    color: var(--primary-green);
    font-size: 18px;
}






/* ======================================================
   CONTACT US PAGE SPECIFIC STYLING
   ====================================================== */

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Contact Information Column */
.contact-info-panel {
    background-color: var(--secondary-blue);
    color: #ffffff;
    padding: 50px 40px;
}

.contact-info-panel h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info-panel p {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 15px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-orange);
    margin-top: 5px;
}

.info-item h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 15px;
    opacity: 0.9;
}

/* Contact Form Column */
.contact-form-panel {
    padding: 50px 40px;
}

.contact-form-panel h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-green);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-blue);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 77, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 15px;
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}











/* ======================================================
   WHY US PAGE SPECIFIC STYLING
   ====================================================== */

.why-hero-stats {
    background-color: #ffffff;
    padding: 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 20px;
}

.stat-card .stat-number {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--secondary-blue);
    font-weight: 500;
    font-size: 15px;
}

/* Detailed Pillar Cards */
.pillars-section {
    padding: 20px 0 80px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 20px;
    color: var(--secondary-blue);
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Key Differentiators / Comparison */
.diff-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diff-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.diff-box h4 {
    font-size: 18px;
    color: var(--secondary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.diff-box h4 i {
    color: var(--primary-green);
}

.diff-box p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(rgba(15, 44, 89, 0.9), rgba(15, 44, 89, 0.9)), 
                url('https://images.unsplash.com/photo-1574325131876-a7999788c1f5?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    padding: 70px 0;
    color: #ffffff;
    text-align: center;
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}




/* ======================================================
   PRODUCT CATALOG PAGE SPECIFIC STYLING
   ====================================================== */

.product-controls {
    background-color: #ffffff;
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 70px;
    z-index: 90;
    border-bottom: 1px solid #eee;
}

.controls-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Search Bar */
.search-box {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 77, 0.1);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #ffffff;
    color: var(--secondary-blue);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

/* Product Catalog Grid */
.catalog-section {
    padding: 60px 0 80px 0;
    background-color: var(--bg-light);
}

.category-group {
    margin-bottom: 50px;
}

.category-title {
    font-size: 24px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 10px;
}

.category-title span {
    font-size: 13px;
    background: var(--accent-orange);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.product-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

/* Product Chip Component */
.product-chip {
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #eef0f2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-green);
}

.chip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.chip-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(45, 122, 77, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.chip-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-blue);
    margin: 0;
}

.chip-forms {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.chip-action {
    background: transparent;
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chip-action:hover {
    color: var(--secondary-blue);
}

/* Quick Quote Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 44, 89, 0.7);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}







/* ======================================================
   3-CATEGORY HOME PAGE PRODUCT CARDS STYLING
   ====================================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.premium-badge {
    background-color: var(--accent-orange);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 20px;
    color: var(--secondary-blue);
    margin-bottom: 12px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-tags span {
    background-color: var(--bg-light);
    color: var(--secondary-blue);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.product-btn {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}