/* Ever Galeco — Main Stylesheet */
:root {
    --teal-900: #0f2a35;
    --teal-800: #1a3a4a;
    --teal-700: #234d61;
    --teal-600: #2d6178;
    --gold-500: #c9a227;
    --gold-400: #d4b84a;
    --gold-300: #e0cc7a;

    --bg-primary: #f8f9fb;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eef1f5;
    --text-primary: #1a2332;
    --text-secondary: #5a6578;
    --text-muted: #8892a4;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15, 42, 53, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 42, 53, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 42, 53, 0.12);
    --header-bg: rgba(255, 255, 255, 0.92);
    --hero-gradient: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 50%, var(--teal-600) 100%);
    --card-hover: translateY(-4px);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --text-primary: #e6edf3;
    --text-secondary: #9ba3b4;
    --text-muted: #6e7681;
    --border-color: #30363d;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --header-bg: rgba(22, 27, 34, 0.92);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
}

.logo img { height: 44px; width: auto; }

.main-nav {
    display: flex;
    gap: 0.25rem;
}

.main-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--teal-800);
    background: var(--bg-tertiary);
}

[data-theme="dark"] .main-nav a:hover,
[data-theme="dark"] .main-nav a.active {
    color: var(--gold-400);
}

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

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.theme-toggle:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
}

.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--teal-800);
    color: #fff;
    border-color: var(--teal-800);
}

.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    border-color: var(--teal-800);
    color: var(--teal-800);
}

[data-theme="dark"] .btn-outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.btn-accent {
    background: var(--gold-500);
    color: var(--teal-900);
    border-color: var(--gold-500);
}

.btn-accent:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    z-index: 0;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.7;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.2) 1.5px, transparent 1.5px);
    background-size: 48px 48px, 48px 48px, 24px 24px;
    animation: heroPatternDrift 90s linear infinite;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 42%, #000 15%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 42%, #000 15%, transparent 78%);
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    will-change: transform;
}

.hero-orb-1 {
    width: 320px;
    height: 320px;
    top: 10%;
    right: -8%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35) 0%, transparent 70%);
    animation: heroOrbFloat1 18s ease-in-out infinite;
}

.hero-orb-2 {
    width: 280px;
    height: 280px;
    bottom: 15%;
    left: -6%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: heroOrbFloat2 22s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    top: 45%;
    left: 55%;
    background: radial-gradient(circle, rgba(45, 97, 120, 0.5) 0%, transparent 70%);
    animation: heroOrbFloat3 14s ease-in-out infinite;
}

@keyframes heroPatternDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-48px, -48px); }
}

@keyframes heroOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-24px, 18px) scale(1.06); }
    66% { transform: translate(16px, -12px) scale(0.94); }
}

@keyframes heroOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(28px, -20px) scale(1.08); }
}

@keyframes heroOrbFloat3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.35; }
    50% { transform: translate(-18px, 14px); opacity: 0.55; }
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    animation: heroGlowPulse 12s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGlowPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-pattern,
    .hero-orb,
    .hero-bg::before {
        animation: none;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--gold-300);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-400);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Sections */
.section { padding: 5rem 0; }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-500);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* Page Hero */
.page-hero {
    padding: 8rem 0 3rem;
    background: var(--hero-gradient);
    text-align: center;
}

.page-hero .section-label { color: var(--gold-300); }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255, 255, 255, 0.75); font-size: 1.125rem; }

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: var(--card-hover);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-500);
}

.category-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
    color: var(--gold-400);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.category-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1rem;
}

.category-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-800);
}

[data-theme="dark"] .category-link { color: var(--gold-400); }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

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

.product-image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.product-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    background: var(--teal-800);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }
.product-body p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

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

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--gold-500);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-card h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.375rem; }
.feature-card p { font-size: 0.8125rem; color: var(--text-secondary); }

/* CTA Section */
.cta-section { padding: 3rem 0 5rem; }

.cta-box {
    background: var(--hero-gradient);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.2), transparent 60%);
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn { position: relative; }

/* Products Page Layout */
.products-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.products-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 96px;
}

.products-sidebar h3 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.category-filter { list-style: none; }

.category-filter a {
    display: block;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all var(--transition);
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--bg-tertiary);
    color: var(--teal-800);
    font-weight: 600;
}

[data-theme="dark"] .category-filter a.active { color: var(--gold-400); }

.category-header {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.category-header-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
    color: var(--gold-400);
    border-radius: 14px;
    flex-shrink: 0;
}

.category-header h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.category-header p { color: var(--text-secondary); font-size: 0.9375rem; }

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
}

.empty-icon { color: var(--text-muted); margin-bottom: 1rem; }
.empty-icon svg { width: 56px; height: 56px; margin: 0 auto; opacity: 0.4; }
.empty-state h3 { margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* About Page */
.about-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.about-highlights { display: flex; flex-direction: column; gap: 1.25rem; }

.highlight-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}

.highlight-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }

.highlight-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 0.1em;
}

.highlight-card h3 { font-size: 1.0625rem; margin: 0.5rem 0; }
.highlight-card p { font-size: 0.875rem; color: var(--text-secondary); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    transform: var(--card-hover);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-500);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
    color: var(--gold-400);
    border-radius: 14px;
    margin: 0 auto 1.25rem;
}

.value-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

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

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--gold-500);
    flex-shrink: 0;
}

.contact-item h4 { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-item a { color: var(--teal-800); font-weight: 500; }
[data-theme="dark"] .contact-item a { color: var(--gold-400); }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrap {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

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

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal-800);
    box-shadow: 0 0 0 3px rgba(26, 58, 74, 0.1);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.alert {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    padding: 1rem;
}

.alert-success svg { flex-shrink: 0; }
.alert-success p { font-size: 0.875rem; margin-top: 0.25rem; opacity: 0.85; }

/* Footer */
.site-footer {
    background: var(--teal-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img { margin-bottom: 0.75rem; }
.footer-tagline {
    color: var(--gold-400);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-desc { font-size: 0.875rem; line-height: 1.7; }

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-400); }

.footer-contact p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255, 255, 255, 0.7); }
.footer-contact a:hover { color: var(--gold-400); }

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .about-page-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .products-sidebar { position: static; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav a { padding: 0.75rem 1rem; }

    .mobile-toggle { display: flex; }
    .header-cta { display: none; }

    .hero { min-height: auto; padding: 7rem 0 3rem; }
    .hero-stats { gap: 1.5rem; }
    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .categories-grid { grid-template-columns: 1fr; }
}
