@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@700;900&display=swap');

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

:root {
    --primary-color: #00f5b8;
    --secondary-color: #00d9ff;
    --bg-dark: #0f1419;
    --bg-medium: #1a1f2e;
    --card-bg: #1e2433;
    --card-hover: #252b3d;
    --text-light: #e8edf5;
    --text-gray: #9ca3af;
    --accent: #ff6b9d;
    --neon-glow: rgba(0, 245, 184, 0.5);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 16px 48px rgba(0, 245, 184, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 184, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float1 20s ease-in-out infinite;
    z-index: -1;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -250px;
    left: -250px;
    animation: float2 15s ease-in-out infinite;
    z-index: -1;
    filter: blur(80px);
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-150px, 150px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(150px, -150px); }
}

.turtle {
    position: fixed;
    font-size: 3rem;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
    animation: floatTurtle linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 245, 184, 0.4));
}

@keyframes floatTurtle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translate(var(--turtle-x, 0), -120vh) rotate(360deg);
        opacity: 0;
    }
}

.bg-shape {
    position: fixed;
    border-radius: 50%;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.bg-shape-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    top: 15%;
    left: 8%;
    animation: pulse 8s ease-in-out infinite;
}

.bg-shape-2 {
    width: 280px;
    height: 280px;
    background: var(--secondary-color);
    top: 55%;
    right: 12%;
    animation: pulse 10s ease-in-out infinite 2s;
}

.bg-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 15%;
    left: 35%;
    animation: pulse 12s ease-in-out infinite 4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.5); opacity: 0.12; }
}

.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation: snowfall linear infinite;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(100px);
        opacity: 0.3;
    }
}

.navbar {
    background: rgba(30, 36, 51, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid rgba(0, 245, 184, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    filter: drop-shadow(0 0 20px var(--neon-glow));
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px var(--neon-glow));
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--neon-glow));
}

.nav-links {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.65rem 1.2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 245, 184, 0.15), rgba(0, 217, 255, 0.15));
    border: 1.5px solid rgba(0, 245, 184, 0.4);
    box-shadow: 0 2px 10px rgba(0, 245, 184, 0.2);
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 184, 0.4), transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 245, 184, 0.25), rgba(0, 217, 255, 0.25));
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 245, 184, 0.4);
    transform: translateY(-2px);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 245, 184, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 245, 184, 0.6);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-glow);
}

.btn-more-info {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-edit {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.btn-edit:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.hero {
    text-align: center;
    padding: 5rem 2rem 4rem;
    background: radial-gradient(ellipse at top, rgba(0, 245, 184, 0.15) 0%, transparent 70%);
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 30px var(--neon-glow));
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-section {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.7rem 1.5rem;
    background: rgba(0, 245, 184, 0.1);
    border: 2px solid rgba(0, 245, 184, 0.3);
    color: var(--text-gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 245, 184, 0.4);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 245, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 245, 184, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.product-card:hover::before {
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background: linear-gradient(135deg, #d0f5f0 0%, #c5f5e8 100%);
    border-radius: 20px 20px 0 0;
    transition: transform 0.4s ease;
}

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

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 245, 184, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    border-radius: 20px 20px 0 0;
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

.product-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 245, 184, 0.3), 
                0 0 40px rgba(0, 245, 184, 0.2) inset;
    border-color: var(--primary-color);
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 245, 184, 0.2), rgba(0, 217, 255, 0.2));
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(0, 245, 184, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    margin-bottom: 1.2rem;
}

.product-features li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.product-features li::before {
    content: "⚡ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px var(--neon-glow));
}

.product-price {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-glow));
}

.product-actions {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}

/* Product Detail Page */
.product-detail-page {
    min-height: 70vh;
    padding: 3rem 2rem;
}

.product-detail-container {
    max-width: 1200px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--secondary-color);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    border: 2px solid rgba(0, 245, 184, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #d0f5f0 0%, #c5f5e8 100%);
    padding: 2rem;
    object-fit: contain;
}

.product-detail-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 245, 184, 0.2), rgba(0, 217, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 245, 184, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.product-detail-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-detail-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-detail-features {
    margin-bottom: 2rem;
}

.product-detail-features h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-detail-features ul {
    list-style: none;
}

.product-detail-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 1rem;
}

.product-detail-features li::before {
    content: "⚡ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.8rem;
    filter: drop-shadow(0 0 5px var(--neon-glow));
    font-size: 1.2rem;
}

.product-detail-price-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 245, 184, 0.2);
}

.product-detail-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--neon-glow));
}

.product-additional-info {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 245, 184, 0.1);
}

.product-additional-info h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.additional-info-content {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* Reviews on Home Page */
.reviews-section-home {
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(0, 245, 184, 0.05) 0%, transparent 70%);
}

.reviews-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem 5rem;
    background: radial-gradient(ellipse at bottom, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid rgba(0, 245, 184, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 245, 184, 0.3);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 245, 184, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-question:hover {
    background: rgba(0, 245, 184, 0.05);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px var(--neon-glow));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Accordion Styles */
.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid rgba(0, 245, 184, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(0, 245, 184, 0.3);
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 245, 184, 0.2);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 245, 184, 0.05);
}

.accordion-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px var(--neon-glow));
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 1.5rem 2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    white-space: pre-wrap;
}

/* Info/News Image Containers */
.info-image-container,
.news-image-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-image,
.news-image {
    border-radius: 12px;
    border: 2px solid rgba(0, 245, 184, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.info-image:hover,
.news-image:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 245, 184, 0.3);
}

.info-image-small,
.news-image-small {
    max-width: 200px;
    width: 100%;
}

.info-image-medium,
.news-image-medium {
    max-width: 400px;
    width: 100%;
}

.info-image-large,
.news-image-large {
    max-width: 100%;
    width: 100%;
}

/* News Styles */
.news-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(0, 245, 184, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: rgba(0, 245, 184, 0.3);
    box-shadow: 0 8px 25px rgba(0, 245, 184, 0.15);
}

.news-header {
    margin-bottom: 1.5rem;
}

.news-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.news-date {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

.news-content {
    color: var(--text-gray);
    line-height: 1.8;
    white-space: pre-wrap;
}

/* Reviews Section */
.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.review-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(0, 245, 184, 0.2);
    box-shadow: var(--shadow);
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(0, 245, 184, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(0, 245, 184, 0.3);
    box-shadow: 0 8px 25px rgba(0, 245, 184, 0.15);
}

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

.review-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
}

.review-rating {
    color: var(--accent);
    font-size: 1.2rem;
}

.review-content {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.7;
}

.content-page {
    min-height: 60vh;
    padding: 4rem 2rem;
}

.content-page h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

.content-page p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.form-container {
    max-width: 500px;
    margin: 4rem auto;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(0, 245, 184, 0.2);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(0, 245, 184, 0.2);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 245, 184, 0.1);
}

.admin-panel {
    padding: 2rem;
}

.admin-panel h1 {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 245, 184, 0.2);
    flex-wrap: wrap;
}

.tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

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

.tab-content {
    display: none;
}

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

.admin-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid rgba(0, 245, 184, 0.1);
    overflow-x: auto;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: rgba(0, 245, 184, 0.1);
    padding: 1.2rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 700;
}

.admin-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(0, 245, 184, 0.05);
}

.admin-table tr:hover {
    background: rgba(0, 245, 184, 0.05);
}

.admin-table img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(0, 245, 184, 0.2);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert-success {
    background: rgba(0, 245, 184, 0.15);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 2px solid #ef4444;
}

.footer {
    background: var(--card-bg);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 0;
    border-top: 2px solid rgba(0, 245, 184, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .reviews-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid-home {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .nav-links {
        gap: 0.4rem;
    }

    .nav-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-filter {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .container {
        max-width: 100%;
    }

    .nav-container {
        max-width: 100%;
    }

    .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-price {
        font-size: 2rem;
    }
}
/* Добавьте к существующему CSS эти стили для дополнительных цен: */

.product-additional-prices {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.price-tier {
    font-size: 0.95rem;
    color: var(--text-gray);
    padding: 0.5rem 0;
    font-weight: 600;
}

.additional-info-content {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-line; /* ИСПРАВЛЯЕТ отступ первой строки! */
}
/* 1. ЗИМНИЙ ДЕКОР НА КАРТОЧКАХ */
.product-snow-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 8px;
    pointer-events: none;
}

.product-snow-decoration .snow-icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    animation: snowTwinkle 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes snowTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* 2. СТАНДАРТИЗИРОВАННЫЕ ИЗОБРАЖЕНИЯ */
.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1.5rem;
    background: linear-gradient(135deg, #d0f5f0 0%, #c5f5e8 100%);
    border-radius: 20px 20px 0 0;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e0f7f5 0%, #d5f7f0 100%);
}

.product-detail-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.product-detail-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d0f5f0 0%, #c5f5e8 100%);
    border-radius: 20px;
    padding: 2rem;
}

/* 3. КВАДРАТНЫЙ ФАВИКОН */
.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--neon-glow));
    border-radius: 8px;
}

/* 4. СЧЁТЧИК ПОСЕТИТЕЛЕЙ */
.visitor-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 245, 184, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* 5. ДОПОЛНИТЕЛЬНЫЕ ЦЕНЫ */
.product-additional-prices {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 245, 184, 0.1);
}

.price-tier {
    font-size: 1rem;
    color: var(--text-gray);
    padding: 0.5rem 0;
    font-weight: 600;
}

.additional-info-content {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-line;
}
/* SNOW ON CARDS - TOP (DARK) AND BOTTOM (LIGHT) */
.product-snow-top {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 8px;
    pointer-events: none;
}

.snow-icon-dark {
    font-size: 1.2rem;
    color: rgba(50, 50, 50, 0.6);
    animation: snowTwinkle 2s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.product-snow-bottom {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    gap: 6px;
    pointer-events: none;
}

.snow-icon-light {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    animation: snowTwinkle 2s ease-in-out infinite 0.5s;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes snowTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* VISITOR STATS - REDUCED HEIGHT, CENTERED */
.visitor-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 245, 184, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* STANDARDIZED IMAGES */
.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1.5rem;
    background: linear-gradient(135deg, #d0f5f0 0%, #c5f5e8 100%);
    border-radius: 20px 20px 0 0;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e0f7f5 0%, #d5f7f0 100%);
}

.product-detail-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.product-detail-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d0f5f0 0%, #c5f5e8 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(0, 245, 184, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* SQUARE FAVICON */
.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--neon-glow));
    border-radius: 8px;
}

/* ADDITIONAL PRICES */
.product-additional-prices {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 245, 184, 0.1);
}

.price-tier {
    font-size: 1rem;
    color: var(--text-gray);
    padding: 0.5rem 0;
    font-weight: 600;
}

.additional-info-content {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-line;
}
/* SNOW - TOP ONLY (DARK) */
.product-snow-top {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 8px;
    pointer-events: none;
}

.snow-icon-dark {
    font-size: 1.2rem;
    color: rgba(50, 50, 50, 0.6);
    animation: snowTwinkle 2s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

@keyframes snowTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* VISITOR STATS - REDUCED HEIGHT */
.visitor-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 245, 184, 0.2);
}

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

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(150deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}
