/* ===== NOVA TEMPLATE CSS ===== */
.nova-hero { position: relative; min-height: 70vh; display: flex; align-items: center; background-size: cover; background-position: center; overflow: hidden; }
.nova-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%); }
.nova-hero-content { position: relative; z-index: 2; }
.nova-hero-title { font-family: var(--heading-font); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.nova-hero-subtitle { font-family: var(--body-font); font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 500px; }
.nova-btn { font-family: var(--heading-font); padding: 14px 36px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; border: none; }
.nova-btn-primary { background-color: var(--accent-color); color: #fff; }
.nova-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(99,102,241,0.4); color: #fff; }
.nova-section { padding: 80px 0; }
.nova-section-title { font-family: var(--heading-font); font-size: 2rem; font-weight: 700; color: var(--primary-color); margin-bottom: 3rem; text-align: center; position: relative; }
.nova-section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--accent-color); margin: 15px auto 0; border-radius: 2px; }
.nova-category-card { display: block; position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1; text-decoration: none; transition: transform 0.3s ease; }
.nova-category-card:hover { transform: scale(1.03); }
.nova-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nova-category-card:hover img { transform: scale(1.1); }
.nova-category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 20px; }
.nova-category-name { font-family: var(--heading-font); color: #fff; font-size: 1.1rem; font-weight: 600; }
.nova-product-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #f0f0f0; transition: all 0.3s ease; height: 100%; }
.nova-product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.nova-product-image { position: relative; overflow: hidden; aspect-ratio: 1; }
.nova-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nova-product-card:hover .nova-product-image img { transform: scale(1.08); }
.nova-product-badge { position: absolute; top: 12px; start: 12px; background: var(--accent-color); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.nova-product-body { padding: 20px; }
.nova-product-title { font-family: var(--heading-font); font-size: 0.95rem; font-weight: 600; color: var(--primary-color); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nova-product-price { font-family: var(--body-font); font-size: 1.15rem; font-weight: 700; color: var(--accent-color); margin-bottom: 12px; }
.nova-product-btn { width: 100%; padding: 10px; border-radius: 10px; border: 2px solid var(--primary-color); background: transparent; color: var(--primary-color); font-family: var(--heading-font); font-weight: 600; font-size: 0.85rem; transition: all 0.3s ease; }
.nova-product-btn:hover { background: var(--primary-color); color: var(--secondary-color); }
.nova-banner { position: relative; border-radius: 20px; overflow: hidden; min-height: 300px; display: flex; align-items: center; background-size: cover; background-position: center; }
.nova-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); }
.nova-banner-content { position: relative; z-index: 2; padding: 40px; }
.nova-testimonial-card { background: #fff; border-radius: 16px; padding: 30px; border: 1px solid #f0f0f0; height: 100%; transition: all 0.3s ease; }
.nova-testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.nova-testimonial-text { font-family: var(--body-font); color: #555; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.nova-testimonial-author { font-family: var(--heading-font); font-weight: 700; color: var(--primary-color); }
.nova-feature-box { text-align: center; padding: 30px 20px; }
.nova-feature-icon { width: 60px; height: 60px; background: rgba(99,102,241,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: var(--accent-color); }
.nova-feature-title { font-family: var(--heading-font); font-size: 1.1rem; font-weight: 600; color: var(--primary-color); margin-bottom: 8px; }
.nova-feature-desc { font-family: var(--body-font); color: #777; font-size: 0.9rem; }
@media (max-width: 768px) { .nova-section { padding: 50px 0; } .nova-hero { min-height: 50vh; } }