/* CSS Variables */
:root {
    --primary-dark: #2d3e36;
    --primary-light: #e8f0e8;
    --accent-green: #c8e6c9;
    --accent-lime: #c5e1a5;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-cream: #f5f2ed;
    --bg-white: #ffffff;
    --border-light: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-lime);
    color: var(--text-dark);
    border-color: var(--accent-lime);
}

.btn-primary:hover {
    background-color: #b5d494;
    border-color: #b5d494;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.btn-light {
    background-color: var(--accent-lime);
    color: var(--text-dark);
}

.btn-light:hover {
    background-color: #b5d494;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header */
.header {
    background-color: var(--primary-light);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-box {
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    padding: 8px 16px;
    text-align: center;
}

.logo-text {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
}

.logo-subtext {
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--primary-dark);
}

.header-tagline {
    font-size: 14px;
    color: var(--text-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a:not(.btn) {
    font-size: 14px;
    color: var(--text-dark);
}

.nav a:not(.btn):hover {
    color: var(--primary-dark);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 200px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

.dropdown-menu a:hover {
    background-color: var(--primary-light);
}

.dropdown-menu a.active {
    color: var(--primary-dark);
    font-weight: 500;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    background: var(--bg-white);
    padding: 4px;
    border-radius: 20px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text-dark);
}

.lang-btn.active {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background-color: var(--primary-dark);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 450px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 100px 40px;
    background-color: var(--primary-light);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.features h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.feature-highlight {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.features-right p {
    color: var(--text-muted);
}

/* Categories Section */
.categories {
    padding: 60px 40px;
    background-color: var(--primary-light);
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: transparent;
    display: block;
}

.category-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.02);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background-color: var(--primary-dark);
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 500px;
}

.services-content {
    padding: 50px 50px;
    color: var(--text-light);
}

.services-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.services-content ul {
    margin-bottom: 15px;
}

.services-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.services-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
}

.services-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 14px;
}

.services-image {
    max-height: 500px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Overview Section */
.product-overview {
    padding: 60px 40px;
    background-color: var(--bg-cream);
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.overview-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
}

.overview-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.overview-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 40px;
    background-color: var(--bg-cream);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.contact-method.whatsapp {
    background-color: #25d366;
    color: white;
}

.contact-method.whatsapp:hover {
    background-color: #1fb855;
}

.contact-method.email {
    background-color: var(--primary-dark);
    color: white;
}

.contact-method.email:hover {
    background-color: #1e2d25;
}

.contact-method i {
    font-size: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    color: var(--text-dark);
}

.contact-address p {
    color: var(--text-dark);
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: var(--text-dark);
}

.form-group label span {
    color: var(--text-muted);
    font-size: 12px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    padding: 40px;
    text-align: center;
    margin: 20px;
    border-radius: 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--text-light);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* ==================== */
/* CATEGORY PAGE STYLES */
/* ==================== */

/* Page Hero */
.page-hero {
    background-color: var(--primary-dark);
    padding: 60px 40px;
    margin: 20px;
    border-radius: 20px;
}

.page-hero-content {
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--text-light);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Products Page Layout */
.products-page {
    padding: 40px;
    background-color: var(--bg-cream);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.filter-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.reset-filters {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Color Filter */
.filter-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    cursor: pointer;
}

.color-option input {
    display: none;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    transition: var(--transition);
}

.color-option input:checked + .color-swatch {
    box-shadow: 0 0 0 3px var(--primary-dark);
}

/* Products Main */
.products-main {
    min-height: 500px;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.products-count {
    font-size: 14px;
    color: var(--text-muted);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-size: 14px;
    color: var(--text-muted);
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.product-spec {
    background-color: var(--primary-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-dark);
}

/* No Products */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

.no-products h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
    background-color: var(--primary-light);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    height: 100%;
    min-height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.modal-details {
    padding: 40px;
}

.modal-details h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-category {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.modal-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.spec-label {
    color: var(--text-muted);
    font-size: 14px;
}

.spec-value {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.modal-cta {
    width: 100%;
    text-align: center;
}

/* Quote Modal */
.quote-modal {
    max-width: 500px;
}

.quote-modal .modal-body {
    display: block;
    padding: 40px;
}

.quote-modal h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.quote-product-name {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.quote-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.quote-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.quote-option.whatsapp {
    background-color: #25d366;
    color: white;
}

.quote-option.whatsapp:hover {
    background-color: #1fb855;
}

.quote-option.email {
    background-color: var(--primary-dark);
    color: white;
}

.quote-option.email:hover {
    background-color: #1e2d25;
}

.quote-option i {
    font-size: 24px;
}

.quote-form-section {
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .services-image {
        height: 400px;
    }
    
    .overview-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: relative;
        top: 0;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 300px;
    }
    
    .modal-image img {
        border-radius: 20px 20px 0 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-tagline {
        display: none;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        margin: 10px;
    }
    
    .hero-content {
        padding: 40px 30px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .services {
        margin: 10px;
    }
    
    .services-content {
        padding: 40px 30px;
    }
    
    .services-content h2 {
        font-size: 32px;
    }
    
    .page-hero {
        margin: 10px;
        padding: 40px 25px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .products-page {
        padding: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 40px 20px;
    }
    
    .contact-container {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .footer {
        margin: 10px;
        padding: 30px 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }

/* ==================== */
/* COOKIE CONSENT STYLES */
/* ==================== */

#cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: bottom 0.4s ease;
}

#cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-settings {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}

.cookie-settings:hover {
    border-color: var(--primary-dark);
    color: var(--text-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--text-muted);
}

.cookie-reject:hover {
    color: var(--text-dark);
}

.cookie-accept {
    background: var(--primary-dark);
    color: var(--text-light);
}

.cookie-accept:hover {
    background: #1e2d25;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

#cookie-settings-modal.show .cookie-modal-content {
    transform: translateY(0);
}

.cookie-modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--primary-light);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

.cookie-modal-body {
    padding: 20px 30px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cookie-option-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--primary-dark);
}

.cookie-toggle input:disabled + .toggle-slider {
    background-color: var(--accent-green);
    cursor: not-allowed;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cookie-text p {
        max-width: 100%;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-dark);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification i {
    color: var(--accent-green);
    font-size: 18px;
}

/* Product Actions */
.product-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.btn-add-to-quote {
    width: 100%;
    padding: 10px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-add-to-quote:hover {
    background: var(--primary-dark);
    color: white;
}

/* Quick Add Button on Image */
.quick-add-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 10;
}

.product-card:hover .quick-add-btn {
    opacity: 1;
    transform: scale(1);
}

.quick-add-btn:hover {
    background: var(--primary-dark);
    color: white;
}

.quick-add-btn.in-cart {
    background: var(--accent-green);
    color: var(--primary-dark);
    opacity: 1;
    transform: scale(1);
}

/* In Cart State for Modal Button */
.modal-cta.in-cart {
    background: var(--accent-green);
    color: var(--primary-dark);
    border-color: var(--accent-green);
}

.modal-cta.in-cart:hover {
    background: var(--primary-dark);
    color: white;
}
