:root {
    --background: hsl(45, 20%, 97%);
    --foreground: hsl(25, 30%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(25, 30%, 15%);
    --primary: hsl(120, 56%, 35%);
    --primary-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(25, 50%, 55%);
    --secondary-foreground: hsl(0, 0%, 98%);
    --muted: hsl(45, 15%, 92%);
    --muted-foreground: hsl(25, 20%, 45%);
    --accent: hsl(30, 65%, 60%);
    --accent-foreground: hsl(0, 0%, 98%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(45, 15%, 85%);
    --input: hsl(45, 15%, 85%);
    --ring: hsl(120, 56%, 35%);
    --radius: 8px;
    --yellow-400: hsl(50, 100%, 50%);
}

.dark {
    --background: hsl(25, 15%, 8%);
    --foreground: hsl(45, 20%, 95%);
    --card: hsl(25, 15%, 12%);
    --card-foreground: hsl(45, 20%, 95%);
    --primary: hsl(120, 56%, 45%);
    --primary-foreground: hsl(25, 15%, 8%);
    --secondary: hsl(25, 50%, 45%);
    --secondary-foreground: hsl(45, 20%, 95%);
    --muted: hsl(25, 15%, 18%);
    --muted-foreground: hsl(45, 15%, 65%);
    --accent: hsl(30, 65%, 50%);
    --accent-foreground: hsl(25, 15%, 8%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(25, 15%, 18%);
    --input: hsl(25, 15%, 18%);
    --ring: hsl(120, 56%, 45%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

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

.hidden {
    display: none;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: hsl(120, 56%, 30%);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: hsl(25, 50%, 50%);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-accent:hover {
    background: hsl(30, 65%, 55%);
    transform: translateY(-1px);
}

.btn-muted {
    background: var(--muted);
    color: var(--foreground);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-muted:hover {
    background: hsl(45, 15%, 88%);
    transform: translateY(-1px);
}

button svg, .btn-primary svg, .btn-secondary svg, .btn-accent svg, .btn-muted svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-text p {
    font-size: 0.875rem;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
    }
}

/* Navigation Header */
.main-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 40;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.brand-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border: none;
    background: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
    background: var(--muted);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-nav {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, hsl(120, 56%, 35%, 0.05) 0%, hsl(30, 65%, 60%, 0.05) 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.hero .container {
    padding: 4rem 1rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    margin-bottom: 1.5rem;
}

.hero-label {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.text-primary {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.feature-item {
    text-align: center;
}

.feature-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.feature-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    filter: drop-shadow(0 10px 30px rgba(139, 69, 19, 0.2));
}

.ar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ar-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.ar-badge span {
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero .container {
        padding: 6rem 1rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: var(--card);
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 40rem;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    gap: 2rem;
}

.product-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.product-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.product-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.product-icon.accent {
    color: var(--accent);
}

.product-icon.secondary {
    color: var(--secondary);
}

.product-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.spec-row span:first-child {
    color: var(--muted-foreground);
}

.spec-row span:last-child {
    font-weight: 500;
}

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

.price.accent {
    color: var(--accent);
}

.price.secondary {
    color: var(--secondary);
}

.product-card button {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* AR Section */
.ar-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, hsl(120, 56%, 35%, 0.05) 0%, hsl(30, 65%, 60%, 0.05) 100%);
}

.ar-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.ar-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.ar-text p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.ar-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    color: var(--foreground);
}

.ar-mockup {
    position: relative;
}

.ar-interface {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ar-header h3 {
    font-weight: 600;
    color: var(--foreground);
}

.ar-header svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.ar-preview {
    background: var(--background);
    border: 2px dashed hsl(120, 56%, 35%, 0.3);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.cabin-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin: 0 auto 0.5rem;
}

.preview-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.preview-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.ar-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.control-btn {
    background: hsl(120, 56%, 35%, 0.1);
    color: var(--primary);
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.control-btn.accent {
    background: hsl(30, 65%, 60%, 0.1);
    color: var(--accent);
}

.control-btn.secondary {
    background: hsl(25, 50%, 55%, 0.1);
    color: var(--secondary);
}

.ar-badges {
    position: relative;
}

.ar-badge-top {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--foreground);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ar-badge-bottom {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--foreground);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .ar-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ar-text h2 {
        font-size: 2.5rem;
    }
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--card);
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.primary {
    background: hsl(120, 56%, 35%, 0.1);
}

.feature-icon.accent {
    background: hsl(30, 65%, 60%, 0.1);
}

.feature-icon.secondary {
    background: hsl(25, 50%, 55%, 0.1);
}

.feature-icon.muted {
    background: hsl(45, 15%, 92%, 0.5);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-icon.primary svg {
    color: var(--primary);
}

.feature-icon.accent svg {
    color: var(--accent);
}

.feature-icon.secondary svg {
    color: var(--secondary);
}

.feature-icon.muted svg {
    color: var(--muted-foreground);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.features-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--muted);
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(139, 69, 19, 0.1) 0px,
            rgba(139, 69, 19, 0.1) 2px,
            transparent 2px,
            transparent 8px
        );
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--yellow-400);
}

.testimonial-card blockquote {
    color: var(--foreground);
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-avatar.primary {
    background: hsl(120, 56%, 35%, 0.2);
    color: var(--primary);
}

.author-avatar.accent {
    background: hsl(30, 65%, 60%, 0.2);
    color: var(--accent);
}

.author-avatar.secondary {
    background: hsl(25, 50%, 55%, 0.2);
    color: var(--secondary);
}

.author-name {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonials-cta {
    text-align: center;
}

.link-primary {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.link-primary:hover {
    color: hsl(120, 56%, 30%);
}

.link-primary svg {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Preview Section */
.blog-preview {
    padding: 4rem 0;
    background: var(--card);
}

.blog-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-card img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

.blog-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-category.primary {
    color: var(--primary);
}

.blog-category.accent {
    color: var(--accent);
}

.blog-category.secondary {
    color: var(--secondary);
}

.blog-category.muted {
    color: var(--muted-foreground);
}

.blog-card h3 {
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.blog-link:hover {
    color: hsl(120, 56%, 30%);
}

.blog-link svg {
    width: 0.75rem;
    height: 0.75rem;
}

.blog-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Preview Section */
.contact-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, hsl(120, 56%, 35%, 0.05) 0%, hsl(30, 65%, 60%, 0.05) 100%);
}

.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 64rem;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px hsl(120, 56%, 35%, 0.2);
}

.form-group textarea {
    resize: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.125rem;
    border-radius: var(--radius);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.form-checkbox a:hover {
    color: hsl(120, 56%, 30%);
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.main-footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.footer-brand h3 {
    font-size: 1.125rem;
    font-weight: bold;
}

.footer-brand p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.footer-section p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--background);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--muted-foreground);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--background);
}

.footer-bottom {
    border-top: 1px solid hsl(var(--muted-foreground-h) var(--muted-foreground-s) var(--muted-foreground-l) / 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover effects */
@media (prefers-reduced-motion: no-preference) {
    .product-card,
    .blog-card {
        transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
