/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(249, 251, 253, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(184, 255, 249, 0.2);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #B8FFF9;
}

/* Preview Header */
.preview-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(184, 255, 249, 0.1) 0%, rgba(255, 217, 232, 0.1) 100%);
    text-align: center;
}

.preview-header-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.preview-header-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.preview-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #B8FFF9;
    font-weight: 500;
}

/* Product Grid */
.product-grid {
    padding: 80px 0;
    background: #F9FBFD;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.product-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 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-item:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    background: linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 255, 249, 0.4);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 300;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 100%);
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* CTA Section */
.preview-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(160, 240, 228, 0.2) 0%, rgba(255, 248, 198, 0.2) 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #B8FFF9 0%, #A0F0E4 100%);
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 255, 249, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 255, 249, 0.4);
}

.cta-secondary {
    background: transparent;
    border: 2px solid #B8FFF9;
    padding: 14px 30px;
    border-radius: 25px;
    color: #B8FFF9;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #B8FFF9;
    color: #333;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .preview-stats {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .product-info {
        padding: 20px;
    }
}

