<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Money Vortex - Main Stylesheet
 * Version: 1.0
 * Author: Money Vortex Team
 */

/* ===== BASE STYLES ===== */
:root {
    /* Primary Colors */
    --primary-color: #4a6fdc;
    --primary-dark: #3a5cb9;
    --primary-light: #6a8dea;
    
    /* Secondary Colors */
    --secondary-color: #34d399;
    --secondary-dark: #10b981;
    --secondary-light: #6ee7b7;
    
    /* Neutral Colors */
    --dark: #1e293b;
    --medium-dark: #334155;
    --medium: #64748b;
    --medium-light: #94a3b8;
    --light: #e2e8f0;
    --ultra-light: #f8fafc;
    
    /* Accent Colors */
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;
    --accent-purple: #8b5cf6;
    
    /* Functional Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Font Families */
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --font-special: 'Poppins', 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}

/* Reset &amp; Normalization */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--space-4);
}

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

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

ul, ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

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

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: var(--space-1);
}

.gap-2 {
    gap: var(--space-2);
}

.gap-4 {
    gap: var(--space-4);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.py-2 {
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.py-12 {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    line-height: 1.5;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

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

.secondary-btn {
    background-color: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    color: white;
}

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

.outline-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: var(--space-2) var(--space-3);
}

.text-btn:hover {
    background-color: rgba(74, 111, 220, 0.1);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.add-to-cart {
    background-color: var(--secondary-color);
    color: white;
    width: 100%;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.add-to-cart:hover {
    background-color: var(--secondary-dark);
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-4);
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--dark);
    font-weight: 700;
    font-size: var(--text-xl);
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: var(--space-2);
}

.logo span {
    font-family: var(--font-special);
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: var(--space-6);
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
}

.search-icon, .cart-icon {
    font-size: var(--text-xl);
    color: var(--dark);
    margin-left: var(--space-4);
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: var(--text-xs);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: var(--space-4);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: var(--space-12) 0;
    background-color: var(--ultra-light);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
    color: var(--dark);
}

.hero-content p {
    font-size: var(--text-xl);
    color: var(--medium);
    margin-bottom: var(--space-6);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
}

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

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

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

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: var(--space-12) 0;
    background-color: white;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

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

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ultra-light);
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    z-index: 1;
}

.product-tag.sale {
    background-color: var(--accent-red);
}

.product-tag.bestseller {
    background-color: var(--accent-yellow);
}

.product-tag.new {
    background-color: var(--secondary-color);
}

.product-info {
    padding: var(--space-4);
}

.product-info h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.product-info p {
    color: var(--medium);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.product-price {
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--dark);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
}

.original-price {
    text-decoration: line-through;
    color: var(--medium);
    font-size: var(--text-base);
    margin-right: var(--space-2);
}

.view-all {
    text-align: center;
    margin-top: var(--space-8);
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    padding: var(--space-12) 0;
    background-color: var(--ultra-light);
}

.categories h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.categories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-6);
}

.category-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-decoration: none;
    color: var(--dark);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ultra-light);
    padding: var(--space-4);
}

.category-image img {
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

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

.category-card h3 {
    padding: var(--space-4);
    font-size: var(--text-lg);
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--space-12) 0;
    background-color: white;
}

.about .container {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: var(--space-4);
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-content p {
    margin-bottom: var(--space-4);
    color: var(--medium-dark);
}

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

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--space-12) 0;
    background-color: var(--ultra-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.testimonial-slide {
    background-color: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    margin: var(--space-2);
}

.rating {
    color: var(--accent-yellow);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.testimonial-slide p {
    font-style: italic;
    color: var(--medium-dark);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.customer {
    margin-top: var(--space-4);
}

.customer-name {
    font-weight: 700;
    color: var(--dark);
}

.customer-location {
    font-size: var(--text-sm);
    color: var(--medium);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.prev-testimonial,
.next-testimonial {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview {
    padding: var(--space-12) 0;
    background-color: white;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.blog-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
}

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

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: var(--space-4);
}

.blog-date {
    font-size: var(--text-sm);
    color: var(--medium);
    margin-bottom: var(--space-2);
}

.blog-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.blog-content p {
    color: var(--medium-dark);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more i {
    margin-left: var(--space-1);
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe {
    padding: var(--space-12) 0;
    background-color: var(--primary-color);
    color: white;
}

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

.subscribe-content h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.subscribe-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark);
}

.form-group input:focus {
    outline: none;
    background-color: white;
}

.subscribe-content .btn {
    margin-top: var(--space-2);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: white;
    padding-top: var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 40px;
    margin-right: var(--space-2);
}

.footer-logo span {
    font-family: var(--font-special);
    color: white;
    font-weight: 700;
    font-size: var(--text-xl);
}

.footer-col p {
    color: var(--light);
    margin-bottom: var(--space-4);
}

.social-icons {
    display: flex;
    gap: var(--space-3);
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
    color: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: var(--space-2);
}

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-col address {
    font-style: normal;
    color: var(--light);
}

.footer-col address p {
    margin-bottom: var(--space-2);
    display: flex;
    align-items: flex-start;
}

.footer-col address p i {
    margin-right: var(--space-2);
    margin-top: 4px;
}

.footer-col address a {
    color: var(--light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col address a:hover {
    color: white;
    text-decoration: underline;
}

.store-hours {
    margin-top: var(--space-4);
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.copyright {
    color: var(--medium-light);
    font-size: var(--text-sm);
}

.legal-links {
    display: flex;
    gap: var(--space-4);
}

.legal-links a {
    color: var(--medium-light);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.cookie-content h3 {
    margin-bottom: var(--space-2);
}

.cookie-content p {
    margin-bottom: var(--space-4);
    color: var(--light);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

#accept-necessary {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

#accept-necessary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#accept-all {
    background-color: var(--primary-color);
    color: white;
}

#accept-all:hover {
    background-color: var(--primary-dark);
}

#cookie-settings {
    background-color: transparent;
    color: var(--light);
}

#cookie-settings:hover {
    color: white;
    text-decoration: underline;
}

.cookie-settings-panel {
    max-width: 800px;
    margin: var(--space-4) auto 0;
    background-color: var(--medium-dark);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    display: none;
}

.cookie-settings-panel h4 {
    margin-bottom: var(--space-4);
    color: white;
}

.cookie-option {
    margin-bottom: var(--space-4);
    display: flex;
    flex-direction: column;
}

.cookie-option input {
    margin-right: var(--space-2);
}

.cookie-option label {
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-option p {
    margin-top: var(--space-1);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    color: var(--medium-light);
    padding-left: 24px;
}

#save-preferences {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

#save-preferences:hover {
    background-color: var(--primary-dark);
}

/* ===== BLOG PAGE STYLES ===== */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-12) 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-2);
    color: white;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.blog-grid-section {
    padding: var(--space-12) 0;
    background-color: var(--ultra-light);
}

.blog-filter {
    margin-bottom: var(--space-8);
    text-align: center;
}

.blog-filter h3 {
    margin-bottom: var(--space-4);
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.filter-btn {
    background-color: white;
    border: 1px solid var(--light);
    color: var(--medium);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.full-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
}

.blog-category {
    background-color: var(--primary-light);
    color: white;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-8);
}

.current-page {
    color: var(--medium);
    font-size: var(--text-sm);
}

.blog-subscribe {
    background-color: var(--medium-dark);
}

/* ===== ARTICLE PAGE STYLES ===== */
.blog-article {
    padding: var(--space-8) 0;
    background-color: white;
}

.article-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-2);
    color: var(--medium);
    font-size: var(--text-sm);
}

.article-category {
    color: var(--primary-color);
    font-weight: 600;
}

.article-featured-image {
    margin-bottom: var(--space-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    font-size: var(--text-lg);
    color: var(--medium-dark);
    margin-bottom: var(--space-6);
}

.article-content h2 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--dark);
}

.article-content h3 {
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--medium-dark);
}

.article-content p {
    margin-bottom: var(--space-4);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-4);
}

.article-content li {
    margin-bottom: var(--space-2);
}

.article-image {
    margin: var(--space-6) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-image figcaption {
    padding: var(--space-2) var(--space-4);
    background-color: var(--ultra-light);
    color: var(--medium);
    font-size: var(--text-sm);
    text-align: center;
}

.info-box,
.tip-box {
    margin: var(--space-6) 0;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    background-color: var(--ultra-light);
    border-left: 4px solid var(--primary-color);
}

.info-box h3,
.tip-box h3 {
    margin-top: 0;
    color: var(--primary-dark);
}

.tip-box {
    border-left-color: var(--secondary-color);
}

.tip-box h3 {
    color: var(--secondary-dark);
}

.article-tags {
    margin-top: var(--space-8);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
}

.article-tags span {
    color: var(--medium);
    font-weight: 600;
}

.article-tags a {
    background-color: var(--ultra-light);
    color: var(--primary-color);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.article-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.article-share {
    margin-top: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.article-share span {
    color: var(--medium);
    font-weight: 600;
}

.share-icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ultra-light);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.share-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-articles {
    padding: var(--space-8) 0;
    background-color: var(--ultra-light);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: var(--space-6);
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
    padding: var(--space-8) 0;
    background-color: white;
}

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

.legal-content h1 {
    margin-bottom: var(--space-2);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--medium);
    margin-bottom: var(--space-8);
}

.legal-section {
    margin-bottom: var(--space-8);
}

.legal-section h2 {
    color: var(--dark);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--light);
}

.legal-section h3 {
    color: var(--medium-dark);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.legal-section p,
.legal-section ul,
.legal-section ol {
    margin-bottom: var(--space-4);
    color: var(--medium-dark);
}

.legal-section li {
    margin-bottom: var(--space-2);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-4) 0;
}

.cookie-table th,
.cookie-table td {
    padding: var(--space-3);
    text-align: left;
    border-bottom: 1px solid var(--light);
}

.cookie-table th {
    background-color: var(--ultra-light);
    font-weight: 600;
}

.cookie-settings-button {
    margin-top: var(--space-8);
    text-align: center;
}

/* ===== THANK YOU PAGE STYLES ===== */
.thank-you {
    padding: var(--space-12) 0;
    background-color: white;
}

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

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

.thank-you-content h1 {
    margin-bottom: var(--space-4);
}

.thank-you-content p {
    margin-bottom: var(--space-6);
    color: var(--medium-dark);
}

.subscriber-details {
    background-color: var(--ultra-light);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
    text-align: left;
}

.subscriber-details p {
    margin-bottom: var(--space-2);
}

.thank-you-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.maybe-like {
    padding: var(--space-12) 0;
    background-color: var(--ultra-light);
}

.maybe-like h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.maybe-like h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }
    
    .hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: var(--space-6);
    }
    
    .hero-content h1 {
        font-size: var(--text-3xl);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about .container {
        flex-direction: column-reverse;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image {
        margin-bottom: var(--space-6);
    }
    
    .product-grid,
    .category-grid,
    .blog-grid,
    .full-blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-1);
    }
    
    .article-meta {
        flex-direction: column;
        gap: var(--space-1);
    }
    
    .thank-you-cta {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: var(--space-4);
        z-index: 99;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: var(--space-4);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: var(--text-2xl);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .product-grid,
    .category-grid,
    .blog-grid,
    .full-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 0 var(--space-4);
    }
}
</pre></body></html>