/* Notificare pentru selecție olfactivă */
.olfactive-notification {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    padding: 1.1rem 2.2rem 1.1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    z-index: 99999;
    text-align: left;
    white-space: pre-line;
    animation: fadeInOlf 0.2s;
}
@keyframes fadeInOlf {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Centrare colecție de sezon */
.sezon-center {
    text-align: center;
}
.sezon-center .product-order-btn {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Colțuri drepte pentru popup-uri */
.popup-container, .popup-header, .popup-content, .popup-close, .popup-overlay {
    border-radius: 0 !important;
}
/* Elimină rotunjirea pentru toate butoanele și chenarele FAQ */
button, .cta-button, .cart-button, .about-faq-item, input, select, textarea {
    border-radius: 0 !important;
}
:root {
    --primary: #1a1a1a;
    --accent: #CD853F;
    --light: #f5f5f5;
    --text: #2d2d2d;
    --text-light: #666;
    --navbar-height: 100px;
}

/* Eliminate blue tap highlight on mobile (e.g., Samsung browsers) while keeping focus-visible outlines */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

/* Contact submit spinner */
.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: none;
    animation: btnSpin 0.7s linear infinite;
}

.btn-spinner.visible {
    display: inline-block;
}

#submitBtn.loading {
    opacity: 0.9;
}

@keyframes btnSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Menține linkurile WhatsApp fără efect de hover */
a[href*="wa.me"]:hover {
    color: inherit;
    background: none;
    text-decoration: none;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 9999;
    transition: width 0.1s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 0;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
}

@media (min-width: 1281px) {
    nav .container {
        justify-content: flex-start;
    }

    .nav-menu {
        margin-left: auto;
    }
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo:hover,
.logo:focus {
    color: var(--primary);
}

.logo::after {
    content: none;
}

/* NaturaFlame Logo Responsive */
.naturaflame-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .naturaflame-logo {
        max-width: 100%;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .naturaflame-logo {
        max-width: 100%;
        width: 85%;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

/* Dropdown nav */
nav li {
    position: relative;
}


.nav-item.dropdown {
    display: inline-flex;
    align-items: center;
}

.nav-item.dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
}

.nav-item.dropdown > a::after {
    content: none;
}

.submenu {
    list-style: none;
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
    padding: 0;
    gap: 0;
    display: none;
    flex-direction: column;
    z-index: 1005;
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 0.5rem 1.25rem;
    line-height: 1.2;
    display: block;
    color: var(--text);
    white-space: nowrap;
}

.submenu a:hover,
.submenu a.active {
    color: var(--accent);
    background: var(--light);
}

@media (min-width: 1281px) {
    .nav-item.dropdown:hover > .submenu {
        display: flex;
    }
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

nav a:hover,
nav a.active {
    color: var(--accent);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 1000;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: background 0.2s ease;
    border-radius: 3px;
}

.hamburger:hover span,
.hamburger:focus span,
.hamburger.active span {
    background: var(--accent);
}

/* Navigation display handled responsively further below */

/* Consent rows shared by contact/checkout */
.consent-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    text-align: left;
}

.consent-row input[type="checkbox"] {
    margin: 0 0.25rem 0 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.consent-row label {
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-align: left;
    white-space: nowrap;
    line-height: 1.3;
}

@media (max-width: 520px) {
    .consent-row {
        align-items: flex-start;
    }

    .consent-row label {
        white-space: normal;
        line-height: 1.35;
    }

    .consent-row input[type="checkbox"] {
        margin-right: 0.2rem;
        margin-top: 0.2rem;
    }
}

@media (max-width: 360px) {
    .consent-row label {
        font-size: 0.8rem;
    }

    .consent-row input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 0.18rem;
    }
}

/* Responsive nav-menu - now triggers when all menu items wrap to second line */
@media (max-width: 1280px) {
    nav {
        padding: 1rem 0;
    }

    nav .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.6rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        flex: 1;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Afișare hamburger - acum apare mai devreme */
    .hamburger {
        display: flex;
        margin-top: 0;
        order: 2;
    }

    /* Cart button centered below logo+hamburger row */
    .cart-container {
        order: 3;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    /* Meniu - ascuns implicit */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, box-shadow 0.3s ease;
        box-shadow: none;
        list-style: none;
        z-index: 998;
        order: 4;
    }

    /* Meniu - deschis */
    .nav-menu.active {
        max-height: 400px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        color: var(--text);
        text-align: center;
        font-size: 1rem;
        transition: all 0.3s ease;
        width: 100%;
    }

    .nav-menu a:hover {
        background: rgba(205, 133, 63, 0.12);
        color: var(--accent);
    }

    .nav-menu a:active,
    .nav-menu a.active {
        background: var(--accent);
        color: #fff;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .nav-item.dropdown > a {
        justify-content: center;
        width: 100%;
    }

    .submenu {
        position: static;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-item.dropdown.open > .submenu {
        display: flex;
        max-height: 400px;
    }

    .submenu a {
        padding: 0.5rem 2.7rem;
        line-height: 1.2;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: center;
        align-items: stretch;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(205, 133, 63, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 10vw, 4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.2rem, 3vw, 2.5rem);
    font-size: clamp(0.85rem, 2vw, 1rem);
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 133, 63, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-visual img,
.about-visual div {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.feature-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.6rem;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(205, 133, 63, 0.12);
    border-color: #CD853F;
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.8rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.footer-brand h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-center {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: white;
    transition: fill 0.3s;
}

.social-links a:hover .social-icon {
    fill: var(--accent);
}

/* Footer text styling */
.footer-section .footer-text,
.footer-section .footer-text-inline,
footer .footer-link {
    color: white !important;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none !important;
}

.footer-section .footer-text:hover,
.footer-section .footer-text-inline:hover,
footer .footer-link:hover {
    color: var(--accent) !important;
    text-decoration: none;
}

/* Why Section */
.why-section {
    background: var(--light);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.benefit-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Collection Headers */
.collection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.collection-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.product-image {
    position: relative;
    height: 220px;
    background: #f5f5f5;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-badge.premium-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.product-info {
    padding: 1.2rem;
}

.order-code {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.product-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.product-price-old {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Responsive */
/* Process Vertical Layout */
.process-vertical {
    position: relative;
    padding: 2rem;
}

.process-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number-vertical {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.process-content p {
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Email Links - Orange Color */
a[href^="/cdn-cgi/l/email-protection"],
a[href^="mailto:"],
.__cf_email__ {
    color: var(--accent) !important;
    text-decoration: none;
}

a[href^="/cdn-cgi/l/email-protection"]:hover,
a[href^="mailto:"]:hover {
    color: #D4985B;
    text-decoration: underline;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-left,
.contact-right {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-right {
    background: #f0ede7;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    flex: 1;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-left,
    .contact-right {
        padding: 1.5rem;
    }
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #D4985B;
    text-decoration: underline;
}

/* Social Grid Contact */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card-contact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-card-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 120px;
    }

    body {
        padding-top: var(--navbar-height);
    }

    .hero {
        height: auto;
        min-height: 65vh;
        padding: 3.5rem 0 3rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .footer-left {
        text-align: center;
    }

    .footer-center {
        justify-content: center;
    }

    /* Mobile: tighter footer spacing */
    footer {
        padding: 1.4rem 0 0.6rem;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 1rem;
        margin-bottom: 0.9rem;
    }

    .footer-bottom {
        padding: 0.75rem 1rem 0.4rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .process-item {
        grid-template-columns: 60px 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-left,
    .contact-right {
        padding: 1.2rem;
    }

    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-height: 110px;
    }

    body {
        padding-top: var(--navbar-height);
    }

    nav {
        padding: 0.75rem 0;
    }

    nav .container {
        flex-wrap: wrap;
        gap: 0.4rem;
        align-items: center;
    }

    .logo {
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        width: 100%;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hamburger {
        order: 2;
    }

    .cart-container {
        order: 3;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .container {
        padding: 0 1rem;
    }

    .contact-wrapper {
        gap: 1.5rem;
    }

    .contact-left,
    .contact-right {
        padding: 1rem;
    }

    .section-title {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }
}

/* ============ SHOPPING CART STYLES ============ */

/* Cart Container */
.cart-container {
    position: relative;
    margin-left: auto;
    order: 4;
}

/* Cart Button */
.cart-button {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.6rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
}

.cart-button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cart-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.25s ease, transform 0.25s ease;
}

.cart-button:hover .cart-icon,
.cart-button:focus-visible .cart-icon {
    color: var(--accent);
    transform: translateY(-1px);
}

.cart-item-details {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.25rem 0 0.35rem;
    line-height: 1.4;
}

/* Cart Badge */
.cart-badge {
    position: static;
    background: var(--accent);
    color: white;
    width: 26px;
    min-width: 26px;
    height: 26px;
    padding: 0;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 26px;
    box-shadow: 0 2px 8px rgba(205, 133, 63, 0.4);
}

/* Cart Panel (Sliding drawer) */
.cart-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.cart-panel.open {
    right: 0;
}

/* Cart Header Simple */
.cart-header-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.cart-header-simple h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.cart-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s;
}

.cart-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

/* Cart Empty State */
.cart-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    margin-top: 20px;
}

.cart-empty p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Cart Items Container */
.cart-items {
    flex: 1;
    overflow: visible;
    padding: 0.5rem 1rem 0.75rem;
    margin-top: 0;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #D4985B;
}

/* Cart Item */
.cart-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 0.6rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cart-item:hover {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 2px 10px rgba(205, 133, 63, 0.1);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.4rem 0;
}

.cart-item-code {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0.2rem 0;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary);
    margin: 0.4rem 0 0 0;
}

.cart-quantity-input {
    width: 40px;
    padding: 0.3rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

.cart-quantity-input:focus {
    outline: none;
    border-color: var(--accent);
}

.cart-item-remove {
    background: #ffebee;
    color: #d32f2f;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #d32f2f;
    color: white;
}

/* Cart Summary */
.cart-summary {
    padding: 1rem 1rem;
    border-top: 1px solid #e0e0e0;
    background: #f9f9f9;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
}

.cart-row strong {
    font-weight: 600;
}

.cart-total {
    border-top: 1px solid #e0e0e0;
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-total strong {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Cart Actions */
.cart-actions {
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
    position: sticky;
    bottom: 0;
    background: white;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
}

.cart-clear-btn,
.cart-checkout-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.cart-clear-btn {
    background: #f0f0f0;
    color: var(--primary);
    border: 1px solid #e0e0e0;
}

.cart-clear-btn:hover {
    background: #e0e0e0;
}

.cart-checkout-btn {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(205, 133, 63, 0.3);
}

.cart-checkout-btn:hover {
    background: #D4985B;
    box-shadow: 0 6px 16px rgba(205, 133, 63, 0.4);
    transform: translateY(-2px);
}

/* Add to Cart Notification */
.addtocart-notification {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    padding: 1.1rem 2.2rem 1.1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    z-index: 99999;
    text-align: left;
    white-space: pre-line;
    animation: fadeInOlf 0.2s;
    max-width: 300px;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, calc(100% - 2rem));
    background: #0f0f0f;
    color: #f7f7f7;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    padding: 1.1rem 1.2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 11000;
}

.cookie-banner.show {
    display: flex;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f1f1f1;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-accept-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.8rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 18px rgba(205, 133, 63, 0.35);
    flex-shrink: 0;
}

.cookie-accept-btn:hover {
    background: #d4985b;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1rem 1.1rem;
        width: calc(100% - 1.5rem);
        bottom: 0.75rem;
    }

    .cookie-accept-btn {
        width: 100%;
        text-align: center;
    }
}

@keyframes slideInNotification {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        right: -100%;
        max-height: 100dvh;
    }

    .cart-header {
        width: 100%;
        right: 0;
    }

    .cart-items {
        padding: 0.85rem 1rem 1rem;
    }

    .cart-summary,
    .cart-actions {
        padding: 1rem;
    }

    .addtocart-notification {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: calc(100% - 2rem);
        width: max-content;
        top: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
        right: -100%;
        padding-top: 0;
        max-height: 100dvh;
    }

    .cart-header {
        top: 88px;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .cart-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cart-item-remove {
        align-self: flex-start;
    }

    .addtocart-notification {
        top: 1rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: calc(100% - 2rem);
        width: max-content;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        text-align: center;
    }
}


