/* ===== RESET AND BASE STYLES ===== */
:root {
    /* Color Palette - New Retro Style */
    --primary-color: #FF6B35; /* Bright Orange */
    --primary-color-light: #FF8C5A;
    --primary-color-dark: #E15025;
    
    --secondary-color: #2E86AB; /* Teal Blue */
    --secondary-color-light: #5AAFDA;
    --secondary-color-dark: #1A5973;
    
    --tertiary-color: #F9C80E; /* Golden Yellow */
    --tertiary-color-light: #FFDA5A;
    --tertiary-color-dark: #E0B400;
    
    --background-light: #F3F4F6; /* Off White */
    --background-dark: #20232A; /* Dark Gray */
    
    --text-light: #F3F4F6;
    --text-dark: #2D3748;
    --text-muted: #718096;
    
    --error-color: #E53E3E;
    --success-color: #38A169;
    
    /* Retro Gradients */
    --retro-gradient-1: linear-gradient(to right, var(--primary-color), var(--tertiary-color));
    --retro-gradient-2: linear-gradient(to right, var(--secondary-color), var(--primary-color-light));
    
    /* Typography */
    --font-heading: 'Space Grotesk', 'Helvetica Neue', sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
    
    /* Sizes */
    --header-height: 80px;
    --container-max-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Load Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=DM+Sans:wght@400;500;700&display=swap');

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

html {
    font-size: 62.5%; /* 10px if browser default is 16px */
    scroll-behavior: smooth;
}

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

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-color-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.6rem;
}

h4 {
    font-size: 2.2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 1.6rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--secondary-color-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-tertiary:hover {
    background-color: var(--primary-color-light);
    color: var(--text-light);
    border-color: var(--primary-color-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.4rem;
    background: var(--primary-color);
    border-radius: 2rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 60rem;
    margin: 0 auto;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 2rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    display: none;
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-content h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-settings-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    display: none;
}

.cookie-settings-content {
    background-color: var(--background-light);
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.cookie-settings-content h3 {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 2rem;
}

.cookie-option p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 5rem;
    height: 5rem;
    margin-right: 1.5rem;
}

.logo-container h1 {
    font-size: 2.4rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2.4rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 8rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color-light) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 1;
}

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

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    background: var(--retro-gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 50rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.products-grid.hidden {
    display: none;
}

.product-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f5f9;
    padding: 2rem;
}

.product-icon {
    max-height: 100%;
    width: auto;
    transition: transform var(--transition-normal);
}

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

.product-details {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-details p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-details .btn {
    align-self: flex-start;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(46, 134, 171, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
}

.service-feather {
    width: 4rem;
    height: 4rem;
    stroke: var(--secondary-color);
}

.service-img {
    width: 4rem;
    height: 4rem;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

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

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

.about-img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    margin-bottom: 2.5rem;
    position: relative;
}

.about-content h2::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 6rem;
    height: 0.4rem;
    background: var(--primary-color);
    border-radius: 2rem;
}

.about-content p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-content::before {
    content: """;
    font-size: 12rem;
    position: absolute;
    top: -2rem;
    left: 2rem;
    color: rgba(255, 107, 53, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.testimonial-author p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.testimonial-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2.4rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    color: var(--primary-color-dark);
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
    margin: 0 2rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f5f9;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.blog-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    margin-bottom: 2.5rem;
    position: relative;
}

.contact-info h2::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 6rem;
    height: 0.4rem;
    background: var(--primary-color);
    border-radius: 2rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--primary-color-dark);
    color: var(--text-light);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.subscription-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input {
    padding: 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.form-group.checkbox input {
    width: auto;
}

.subscription-form .btn {
    margin-top: 1rem;
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding-top: 6rem;
}

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

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 5rem;
    margin-bottom: 1.5rem;
}

.footer-about h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-about p {
    color: #a0aec0;
    margin-bottom: 0;
}

.footer-links h4, .footer-legal h4, .footer-newsletter h4 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-links ul li, .footer-legal ul li {
    margin-bottom: 1rem;
}

.footer-links a, .footer-legal a {
    color: #a0aec0;
    transition: color var(--transition-fast);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary-color);
}

.footer-newsletter p {
    color: #a0aec0;
    margin-bottom: 2rem;
}

.footer-form {
    display: flex;
    gap: 1rem;
}

.footer-form input {
    flex-grow: 1;
    padding: 1.2rem;
    border: 1px solid #4a5568;
    border-radius: var(--border-radius-md);
    background-color: #2d3748;
    color: var(--text-light);
}

.footer-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer-form .btn {
    padding: 0 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #a0aec0;
    font-size: 1.4rem;
}

.footer .social-links {
    gap: 1rem;
}

.footer .social-link {
    width: 3.6rem;
    height: 3.6rem;
    background-color: #2d3748;
}

.footer .social-link:hover {
    background-color: var(--primary-color);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    padding: 10rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    font-size: 8rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thank-you-content h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.thank-you-content p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.related-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.related-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 6rem 0;
}

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

.legal-content h2 {
    margin-bottom: 1rem;
    font-size: 3.6rem;
}

.legal-date {
    color: var(--text-muted);
    font-size: 1.4rem;
    margin-bottom: 4rem;
    display: block;
}

.legal-text h3 {
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
}

.legal-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-text ul li, .legal-text ol li {
    margin-bottom: 1rem;
    list-style-type: disc;
}

.legal-text ol li {
    list-style-type: decimal;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--primary-color-dark);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-light);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        padding: 2rem 0;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1.5rem 2rem;
        text-align: center;
    }
    
    .related-products {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    .hero-content h2 {
        font-size: 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .products-grid, .services-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
