/* ========================================
   VEDA COSMETICS - NEW CLEAN DESIGN
   Simple, Beautiful, Professional
   ======================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Cairo:wght@300;400;500;600;700&display=swap');

/* === COLOR PALETTE === */
:root {
    /* Main Colors - Soft & Light */
    --primary: #cebcf0;           /* Soft Purple */
    --primary-light: #e5dcf5;     /* Light Purple */
    --primary-dark: #b8a3e0;      /* Darker Purple */
    
    --accent: #D4A574;            /* Rose Gold */
    --accent-light: #E8C4A0;      /* Light Rose Gold */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FEFEFE;
    --light-gray: #F8F9FA;
    --gray: #E9ECEF;
    --text-dark: #2D3436;
    --text-gray: #636E72;
    --text-light: #95A5A6;
    
    /* Product Colors */
    --rose: #cebcf0;
    --aloe: #A8E6CF;
    --vanilla: #FFE4C4;
    --ocean: #B3E5FC;
    
    /* Shadows - Subtle */
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.rtl {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === NAVIGATION === */
.premium-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 45px;
    width: auto;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.4rem;
    border-radius: 8px;
}

.lang-btn {
    padding: 0.4rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.cart-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s;
    position: relative;
}

.cart-btn:hover {
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    min-height: auto;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-logo-image {
    width: auto;
    max-width: 360px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-logo-image {
        max-width: 270px;
        max-height: 135px;
    }
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-primary {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* === SECTIONS === */
.product-preview {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 50%, #f4f8ff 100%);
}

.products-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #faf9ff 100%);
}

.benefits-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === PRODUCT GRID === */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.preview-jar {
    width: 100%;
    max-width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.preview-jar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.preview-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Product Color Variants */
.preview-card.rose {
    border-top: 3px solid var(--rose);
}

.preview-card.aloe {
    border-top: 3px solid var(--aloe);
}

.preview-card.vanilla {
    border-top: 3px solid var(--vanilla);
}

.preview-card.ocean {
    border-top: 3px solid var(--ocean);
}

/* Selected Group Effect */
.preview-card.selected {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 182, 200, 0.4);
    border-width: 3px;
    border-color: var(--primary);
    position: relative;
    z-index: 10;
}

.preview-card.selected::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    z-index: -1;
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

/* Checkmark removed - zoom effect is enough */

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

.preview-card.selected.rose {
    border-color: var(--rose);
    box-shadow: 0 20px 40px rgba(255, 182, 200, 0.5);
}

.preview-card.selected.rose::before {
    background: linear-gradient(135deg, var(--rose-light), var(--rose));
}

.preview-card.selected.aloe {
    border-color: var(--aloe);
    box-shadow: 0 20px 40px rgba(200, 245, 200, 0.5);
}

.preview-card.selected.aloe::before {
    background: linear-gradient(135deg, var(--aloe-light), var(--aloe));
}

.preview-card.selected.vanilla {
    border-color: var(--vanilla);
    box-shadow: 0 20px 40px rgba(255, 244, 214, 0.5);
}

.preview-card.selected.vanilla::before {
    background: linear-gradient(135deg, var(--vanilla-light), var(--vanilla));
}

.preview-card.selected.ocean {
    border-color: var(--ocean);
    box-shadow: 0 20px 40px rgba(214, 239, 255, 0.5);
}

.preview-card.selected.ocean::before {
    background: linear-gradient(135deg, var(--ocean-light), var(--ocean));
}

/* === PRODUCT TABS === */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: var(--light-gray);
    color: var(--text-dark);
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: var(--gray);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* === PRODUCT DISPLAY === */
.product-display {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-display.active {
    display: grid;
}

.product-visual {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-jar-3d {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.product-jar-3d img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info {
    padding: 2rem 0;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.detail-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.detail-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.detail-value.price {
    color: var(--primary);
    font-size: 1.5rem;
}

/* === QUANTITY SELECTOR === */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.quantity-control-product {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    padding: 0.25rem;
    border: 2px solid var(--gray);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-gray);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.2s;
    user-select: none;
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 60px;
    height: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.shop-btn svg {
    flex-shrink: 0;
}

.shop-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shop-btn:active {
    transform: translateY(0);
}

/* === BENEFITS === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #cebcf0 0%, #b8a3e0 100%);
    padding: 3rem 2rem 1.5rem;
    border-top: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info li {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
    .nav-container,
    .hero-content,
    .product-preview,
    .products-section,
    .benefits-section,
    .testimonials-container {
        max-width: 1400px;
    }
}

/* Laptop / Desktop (1024px - 1400px) */
@media (max-width: 1400px) and (min-width: 1024px) {
    .product-display {
        gap: 3rem;
    }
    
    .hero-logo-main {
        font-size: clamp(3rem, 6vw, 4rem);
    }
}

/* Tablet / iPad (768px - 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.2rem 1.5rem;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-logo-main {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .product-display {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-visual {
        order: 1;
    }
    
    .product-info {
        order: 2;
    }
    
    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

/* Mobile Landscape (600px - 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-actions {
        gap: 0.75rem;
    }
    
    .language-toggle {
        padding: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .cart-btn {
        width: 38px;
        height: 38px;
    }
    
    /* Hero Section */
    .hero {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-logo-main {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-logo-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    /* Section Headers */
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Product Cards */
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .preview-card {
        padding: 1.5rem;
    }
    
    .preview-card h3 {
        font-size: 1.3rem;
    }
    
    .preview-card p {
        font-size: 0.95rem;
    }
    
    /* Product Display */
    .product-display {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-tabs {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .product-name {
        font-size: 1.8rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .add-to-cart-btn {
        width: 100%;
        padding: 1rem;
    }
    
    /* Grids */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Newsletter */
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 0.95rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Sections Padding */
    .product-preview,
    .products-section,
    .benefits-section,
    .testimonials-section {
        padding: 3rem 1.5rem;
    }
    
    /* Notifications */
    .cart-notification,
    .notification {
        right: 1rem;
        left: 1rem;
        transform: translateY(-100px);
        max-width: calc(100% - 2rem);
    }
    
    .cart-notification.show,
    .notification.show {
        transform: translateY(0);
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Mobile Portrait (max-width: 600px) */
@media (max-width: 600px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .product-preview,
    .products-section,
    .benefits-section,
    .testimonials-section {
        padding: 2.5rem 1rem;
    }
    
    .preview-jar {
        max-width: 200px;
        height: 200px;
    }
    
    .product-jar-3d {
        max-width: 300px;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .newsletter-section {
        padding: 3rem 1rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-light);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* === NEWSLETTER === */
.newsletter-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

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

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* === NOTIFICATIONS === */
.cart-notification,
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-notification.show,
.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content svg {
    color: var(--primary);
    flex-shrink: 0;
}

.notification-success {
    border-left: 4px solid #10B981;
    color: #10B981;
}

.notification-error {
    border-left: 4px solid #EF4444;
    color: #EF4444;
}

/* === UTILITIES === */
.hidden {
    display: none !important;
}

/* Remove all background animations and particles */
.bg-animation,
.particle,
.shimmer-effect,
.gradient-orb,
.scroll-indicator {
    display: none !important;
}

/* Remove all jar 3D effects */
.hero-jar-container,
.hero-jar-scene,
.hero-jar-3d,
.jar-spotlight,
.jar-reflection,
.jar-glass,
.jar-glass-shine,
.jar-content,
.jar-cap,
.cap-top,
.cap-ring,
.jar-label-premium,
.label-brand,
.label-line,
.jar-shadow,
.jar-glow-ring {
    display: none !important;
}
