/* AI Life Hub - Modern CSS Styles */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Scheme */
    --primary-color: #A7FF83;
    --secondary-color: #1A1A2E;
    --accent-color: #16213E;
    --text-primary: #1A1A2E;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-light: #FFFFFF;
    --background-dark: #1A1A2E;
    --border-color: #E5E5E5;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 900;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-extra-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--secondary-color);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.highlight {
    color: var(--primary-color);
    font-weight: var(--font-weight-extra-bold);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-sm);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-medium);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #8FE66D);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(167, 255, 131, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(167, 255, 131, 0.4);
    color: var(--secondary-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
    color: white;
}

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

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-light);
    transition: var(--transition-medium);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--secondary-color);
    margin: 0;
}

.nav-logo a {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
}

.nav-link {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(167, 255, 131, 0.1);
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.cart-icon:hover {
    background: rgba(167, 255, 131, 0.1);
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xxl);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: var(--transition-slow);
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px var(--shadow-heavy);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

/* ===== PRODUCTS SECTION ===== */
.products-preview {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.product-info {
    padding: var(--spacing-lg);
}

.product-info h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.product-brand {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.product-rating {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.product-description {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.price-current {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
}

.discount {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: var(--spacing-xxl) 0;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: var(--spacing-lg);
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* ===== SHOP PAGE STYLES ===== */
.shop-header {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.shop-header h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.shop-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.shop-filters {
    padding: var(--spacing-lg) 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.filter-bar {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.filter-group label {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.filter-group select {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: white;
    font-size: 0.95rem;
}

.shop-products {
    padding: var(--spacing-xl) 0;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px var(--shadow-medium);
    z-index: 1002;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.cart-items {
    flex: 1;
    padding: var(--spacing-lg);
    overflow-y: auto;
}

.cart-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.cart-total {
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1003;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    z-index: 1;
}

.modal-body {
    padding: var(--spacing-xl);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xxl);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.about-hero h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.mission {
    padding: var(--spacing-xxl) 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.mission-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.timeline {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
    width: calc(50% - 30px);
    margin-top: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.stats {
    padding: var(--spacing-xxl) 0;
    background: var(--secondary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-xs);
}

.team {
    padding: var(--spacing-xxl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.team-member {
    text-align: center;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.member-image {
    margin-bottom: var(--spacing-md);
}

.placeholder-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.member-role {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.member-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.values {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.value-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.cta {
    padding: var(--spacing-xxl) 0;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.contact-hero h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.contact-content {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
}

.contact-form-section {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(167, 255, 131, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
}

.success-message {
    background: rgba(167, 255, 131, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto var(--spacing-md);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.contact-info-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.map-section {
    padding: var(--spacing-xl) 0;
    background: #f8f9fa;
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.map-marker {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.faq-section {
    padding: var(--spacing-xxl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.faq-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

/* ===== BUSINESS MODEL PAGE STYLES ===== */
.business-hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.business-hero h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.business-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.business-overview {
    padding: var(--spacing-xxl) 0;
}

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

.revenue-streams {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.revenue-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    position: relative;
    transition: var(--transition-medium);
}

.revenue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.revenue-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.revenue-percentage {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
}

.value-proposition {
    padding: var(--spacing-xxl) 0;
}

.value-slides {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.value-slide {
    display: none;
}

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

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.slide-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.slide-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.slide-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--border-color);
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: var(--font-weight-medium);
}

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

.market-strategy {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.strategy-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 15px var(--shadow-light);
    overflow: hidden;
}

.accordion-header {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(167, 255, 131, 0.05);
}

.accordion-toggle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.financial-projections {
    padding: var(--spacing-xxl) 0;
}

.projections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.projection-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: var(--transition-medium);
}

.projection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.projection-value {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extra-bold);
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
}

.projection-label {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.projection-growth {
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    background: rgba(167, 255, 131, 0.1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.sustainability {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.sustainability-goals {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.goal-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.goal-icon {
    font-size: 1.5rem;
}

.sustainability-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

/* ===== POLICY PAGES STYLES ===== */
.policy-header,
.terms-header,
.privacy-header {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.policy-header h1,
.terms-header h1,
.privacy-header h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.policy-header p,
.terms-header p,
.privacy-header p {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-settings {
    padding: var(--spacing-xl) 0;
    background: #f8f9fa;
}

.settings-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-light);
    max-width: 800px;
    margin: 0 auto;
}

.cookie-categories {
    margin: var(--spacing-xl) 0;
}

.cookie-category {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.toggle-slider {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-fast);
}

input:checked + .toggle-label {
    background: var(--primary-color);
}

input:checked + .toggle-label .toggle-slider {
    transform: translateX(30px);
}

input:disabled + .toggle-label {
    background: var(--text-light);
    cursor: not-allowed;
}

.cookie-details {
    background: #f8f9fa;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

.settings-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.policy-content,
.terms-content,
.privacy-content {
    padding: var(--spacing-xl) 0;
}

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

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.cookie-table th,
.cookie-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--secondary-color);
    color: white;
    font-weight: var(--font-weight-bold);
}

.terms-layout,
.privacy-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-xl);
}

.terms-sidebar,
.privacy-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.terms-nav,
.privacy-nav {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.terms-nav h3,
.privacy-nav h3 {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.terms-nav ul,
.privacy-nav ul {
    list-style: none;
}

.terms-nav .nav-item,
.privacy-nav .nav-item {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    margin-bottom: var(--spacing-xs);
}

.terms-nav .nav-item:hover,
.terms-nav .nav-item.active,
.privacy-nav .nav-item:hover,
.privacy-nav .nav-item.active {
    background: rgba(167, 255, 131, 0.1);
    color: var(--primary-color);
}

.terms-main,
.privacy-main {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.terms-tabs {
    display: flex;
    margin-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    background: none;
    cursor: pointer;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.terms-section,
.privacy-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child,
.privacy-section:last-child {
    border-bottom: none;
}

.highlight-box {
    background: rgba(167, 255, 131, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.contact-info {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
}

.purpose-grid,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.purpose-card,
.right-card {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.legal-basis-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.basis-item {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.retention-table table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.retention-table th,
.retention-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.retention-table th {
    background: var(--secondary-color);
    color: white;
    font-weight: var(--font-weight-bold);
}

.complaint-info {
    background: rgba(167, 255, 131, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.security-measures {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.measure-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.measure-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.contact-method {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content,
    .mission-content,
    .slide-content,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-layout,
    .privacy-layout {
        grid-template-columns: 1fr;
    }
    
    .terms-sidebar,
    .privacy-nav {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition-medium);
        box-shadow: 0 10px 27px var(--shadow-medium);
        padding: var(--spacing-lg) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-year {
        left: 20px;
        transform: none;
    }

    .timeline-content {
        width: 100%;
        margin-top: var(--spacing-lg);
        margin-left: 0;
    }

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

    .settings-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero,
    .about-hero,
    .contact-hero,
    .business-hero,
    .shop-header {
        padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg);
    }

    .product-card,
    .feature-card,
    .team-member,
    .value-card {
        margin-bottom: var(--spacing-md);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cart-sidebar,
    .modal,
    .btn,
    .nav-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .hero,
    .about-hero,
    .contact-hero,
    .business-hero,
    .shop-header {
        padding: var(--spacing-lg) 0;
        background: white !important;
        color: black !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --shadow-heavy: rgba(0, 0, 0, 0.7);
    }
}

