/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    scroll-margin-top: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-yes {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-no {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #3498db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.6s ease-out;
}

.age-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: float 6s ease-in-out infinite;
}

.age-modal-content {
    background: rgba(44, 62, 80, 0.12);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(52, 152, 219, 0.25);
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 25px 80px rgba(44, 62, 80, 0.2),
        0 0 0 1px rgba(52, 152, 219, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    animation: modalSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 23px;
    background: linear-gradient(145deg, 
        rgba(52, 152, 219, 0.08) 0%, 
        rgba(44, 62, 80, 0.05) 100%);
    pointer-events: none;
}

.age-modal-header {
    margin-bottom: 35px;
    position: relative;
    z-index: 3;
}

.modal-logo {
    display: none;
}

.age-modal-header h1 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.age-modal-header h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.9;
}

.age-modal-body {
    position: relative;
    z-index: 3;
}

.age-modal-body p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: white;
    line-height: 1.6;
}

.age-modal-body .welcome-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.age-modal-body .info-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.age-modal-body .confirm-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.age-modal-body h3 {
    color: #ff6b6b;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 30px 0 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.age-warning {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    padding: 12px 20px;
    background: rgba(231, 76, 60, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    position: relative;
    z-index: 3;
}

.btn-yes {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 20px;
    border: 2px solid rgba(46, 204, 113, 0.3);
    box-shadow: 
        0 12px 35px rgba(39, 174, 96, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-yes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-yes:hover::before {
    left: 100%;
}

.btn-yes:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(39, 174, 96, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.btn-no {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 20px;
    border: 2px solid rgba(192, 57, 43, 0.3);
    box-shadow: 
        0 12px 35px rgba(231, 76, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-no::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-no:hover::before {
    left: 100%;
}

.btn-no:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(231, 76, 60, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.language-selector {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid rgba(44, 62, 80, 0.1);
    position: relative;
    z-index: 3;
}

.lang-btn {
    padding: 12px 25px;
    border: 2px solid #2c3e50;
    border-radius: 18px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 70px;
    text-align: center;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.5s;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn.active {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    border-color: #3498db;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.lang-btn:hover {
    background: linear-gradient(135deg, #34495e, #3498db);
    color: white;
    border-color: #3498db;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.3);
}

.cookie-notice-bottom {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(44, 62, 80, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.98), rgba(52, 152, 219, 0.95));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: pulse 2s ease-in-out infinite;
}

.brand-text {
    background: linear-gradient(45deg, #ffffff, #ecf0f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 3;
}

.nav-tools .language-selector {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.nav-tools .lang-btn {
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-tools .lang-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: left 0.5s;
}

.nav-tools .lang-btn:hover::before {
    left: 100%;
}

.nav-tools .lang-btn.active,
.nav-tools .lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mobile-toggle:hover span {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ff6b6b;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #ff6b6b;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product-badge {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    gap: 10px;
}

.feature-tag {
    background: #f8f9fa;
    color: #8B4513;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #8B4513;
    margin-bottom: 8px;
}

.contact-text p {
    color: #555;
    margin: 0;
}

.contact-text small {
    color: #999;
    font-size: 0.9rem;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    color: #8B4513;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-info h3 {
    font-size: 1.5rem;
    color: #D2691E;
    margin-bottom: 10px;
}

.brand-info p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D2691E;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: #D2691E;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D2691E;
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact .contact-info p {
    color: #bdc3c7;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #34495e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.admin-link {
    color: #D2691E;
    text-decoration: none;
    font-weight: 500;
}

.admin-link:hover {
    text-decoration: underline;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-top: 2px solid #3498db;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #bdc3c7;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    position: relative;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    text-decoration: none;
    transform: translateY(-3px);
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
}

.mobile-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover i,
.mobile-nav-item.active i {
    transform: scale(1.1);
}

/* Mobile Menu Toggle Enhancement */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(44, 62, 80, 0.1);
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-dropdown-menu {
    padding: 20px 0;
    max-height: 60vh;
    overflow-y: auto;
}

.mobile-dropdown-item {
    display: block;
    padding: 15px 25px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item.active {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding-left: 35px;
}

.mobile-dropdown-item i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

/* Mobile Language Selector */
.mobile-lang-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-lang-btn {
    padding: 10px 20px;
    border: 2px solid #3498db;
    border-radius: 25px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.mobile-lang-btn.active,
.mobile-lang-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Enhanced Mobile Features */
.mobile-search {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-search input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 25px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.mobile-search input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Mobile Contact Button */
.mobile-contact-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
}

.mobile-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
}

.mobile-contact-btn:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    50% {
        box-shadow: 0 12px 35px rgba(52, 152, 219, 0.3);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-section,
    .products-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-modal {
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .age-modal-content {
        padding: 35px 25px;
        margin: auto;
        background: rgba(44, 62, 80, 0.12);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(52, 152, 219, 0.25);
        box-shadow: 
            0 25px 80px rgba(44, 62, 80, 0.2),
            0 0 0 1px rgba(52, 152, 219, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: translateY(0);
        width: 100%;
        max-width: 400px;
    }
    
    .age-modal-content::before {
        background: linear-gradient(145deg, 
            rgba(52, 152, 219, 0.08) 0%, 
            rgba(44, 62, 80, 0.05) 100%);
    }
    
    .age-modal-header h1 {
        color: white !important;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .age-modal-header h2 {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .age-modal-body p {
        color: white !important;
    }
    
    .age-modal-body .welcome-text {
        color: white !important;
    }
    
    .age-modal-body .info-text {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .age-modal-body .confirm-text {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .age-modal-body h3 {
        color: #ff6b6b !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .age-warning {
        background: rgba(231, 76, 60, 0.15);
        border: 1px solid rgba(231, 76, 60, 0.3);
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .language-selector {
        border-top: 2px solid rgba(52, 152, 219, 0.15);
    }
    
    .lang-btn {
        border: 2px solid rgba(44, 62, 80, 0.3);
        color: rgba(44, 62, 80, 0.8);
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .lang-btn.active {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9));
        border-color: rgba(52, 152, 219, 0.5);
    }
    
    .lang-btn:hover {
        background: linear-gradient(135deg, rgba(52, 73, 94, 0.8), rgba(52, 152, 219, 0.8));
        border-color: rgba(52, 152, 219, 0.4);
    }
    
    .cookie-notice-bottom {
        background: rgba(44, 62, 80, 0.92);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .mobile-nav-item {
        font-size: 0.65rem;
        min-width: 50px;
    }
    
    .mobile-nav-item i {
        font-size: 1rem;
    }
    
    /* Age Modal Optimizations for Very Small Screens */
    .age-modal {
        padding: 10px;
    }
    
    .age-modal-content {
        padding: 25px 20px;
        max-width: 350px;
        margin: 10px auto;
        border-radius: 20px;
    }
    
    
    .age-modal-header h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .age-modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .age-modal-body p {
        font-size: 1rem;
        margin-bottom: 14px;
        line-height: 1.5;
    }
    
    .age-modal-body .welcome-text {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .age-modal-body .info-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .age-modal-body .confirm-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 18px;
    }
    
    .age-modal-body h3 {
        font-size: 1.4rem;
        margin: 20px 0 12px;
        line-height: 1.2;
    }
    
    .age-warning {
        font-size: 0.85rem;
        padding: 10px 15px;
        margin-bottom: 25px;
        line-height: 1.4;
        border-radius: 12px;
    }
    
    .age-buttons {
        gap: 12px;
        margin-top: 25px;
    }
    
    .btn-yes,
    .btn-no {
        padding: 16px 25px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 15px;
        line-height: 1.2;
    }
    
    .language-selector {
        gap: 8px;
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .lang-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        font-weight: 700;
        border-radius: 15px;
        min-width: 65px;
        line-height: 1;
    }
    
    .cookie-notice-bottom {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
        font-size: 0.8rem;
        line-height: 1.4;
        border-radius: 12px;
    }
}

/* Extra Small Screens - 360px and below */
@media (max-width: 360px) {
    .age-modal-content {
        padding: 20px 15px;
        max-width: 320px;
        margin: 5px auto;
    }
    
    .modal-logo {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .age-modal-header h1 {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .age-modal-header h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .age-modal-body p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .age-modal-body .welcome-text {
        font-size: 1.05rem;
    }
    
    .age-modal-body .info-text {
        font-size: 0.9rem;
    }
    
    .age-modal-body .confirm-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .age-modal-body h3 {
        font-size: 1.3rem;
        margin: 18px 0 10px;
    }
    
    .age-warning {
        font-size: 0.8rem;
        padding: 8px 12px;
        margin-bottom: 20px;
    }
    
    .age-buttons {
        gap: 10px;
        margin-top: 20px;
    }
    
    .btn-yes,
    .btn-no {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .language-selector {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .lang-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .cookie-notice-bottom {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px;
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-nav,
    .scroll-indicator {
        display: none;
    }
    
    .age-modal {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #000;
        color: #fff;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
