/* Custom CSS for NASENGOLD Website */

/* Base Styles */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #f8f9fa;
    --text-color: #333;
    --border-color: #dee2e6;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* Header Styles */
.header-main {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: var(--accent-color);
    border-radius: 4px;
}

.logo {
    max-height: 60px;
    width: auto;
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
    background: rgba(0,0,0,0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: -30px;
    opacity: 0;
    transition: var(--transition);
}

.heroSwiper:hover .swiper-button-next,
.heroSwiper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.7);
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Language Selector */
.language-selector {
    background-color: var(--accent-color);
    border-bottom: 1px solid var(--border-color);
}

.lang-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.lang-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.perfume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.perfume-card {
    background: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: var(--transition);
}

.perfume-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.perfume-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.perfume-card-body {
    padding: 1.5rem;
}

.perfume-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.perfume-notes {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.notes-section {
    margin-bottom: 0.5rem;
}

.notes-label {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.btn-outline-dark {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Footer */
.footer-main {
    background-color: var(--accent-color);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-main p {
    margin: 0;
    color: var(--text-color);
}

.footer-main a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-main a:hover {
    text-decoration: underline;
}

.copyright {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 0;
    margin: 0;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-color);
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}

.perfumer-info {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Product Page Styles */
.product-hero {
    text-align: center;
    padding: 3rem 0;
}

.product-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .lang-links {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .footer-main .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .perfume-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 250px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .header-main,
    .footer-main,
    .copyright,
    .hero-slider,
    .language-selector {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}








/* Additional styles for G. product page */

.highlight-box {
    border-radius: 8px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.product-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    margin: 0 -15px 3rem -15px;
    border-radius: 0 0 20px 20px;
}

.product-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.product-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.1em;
}

.notes-section {
    background: #fff;
    transition: var(--transition);
    border: 2px solid #f8f9fa !important;
}

.notes-section:hover {
    border-color: #dee2e6 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.notes-label {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.notes-section ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.description-box {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f8f9fa;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #dee2e6;
}

.feature-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

/* Mobile optimizations for G. page */
@media (max-width: 768px) {
    .product-title {
        font-size: 3rem;
    }
    
    .product-hero {
        padding: 2rem 1rem;
        margin: 0 0 2rem 0;
    }
    
    .highlight-box {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }
    
    .notes-section {
        margin-bottom: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-subtitle {
        font-size: 1.2rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
    }
    
    .d-flex.gap-3 .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 0.5rem;
    }
}






/* Additional styles for /L product page */

.luxury-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.instructions-box {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f8f9fa;
}

.instruction-step {
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.instruction-step:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.instruction-step h5 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.promise-section .highlight-box {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.3);
}

.luxury-note {
    font-weight: 600;
    color: #6c5ce7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.notes-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #f1f3f4 !important;
    transition: var(--transition);
}

.notes-section:hover {
    border-color: #6c5ce7 !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.15);
}

.experience-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    padding: 0;
}

.experience-box {
    background: transparent;
}

.experience-feature {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f8f9fa;
}

.experience-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.15);
    border-color: #6c5ce7;
}

.experience-feature h5 {
    color: #6c5ce7;
    font-size: 1rem;
}

.philosophy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 0;
}

.philosophy-box {
    background: transparent;
    border-left: 4px solid #6c5ce7;
}

.quote-section {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid #f8f9fa;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.quote-section .blockquote p {
    font-size: 1.2rem;
    color: #6c5ce7;
    font-weight: 500;
}

.quote-section .blockquote-footer {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.cta-section h3 {
    color: white;
}

.cta-section .lead {
    color: rgba(255,255,255,0.9);
}

.cta-section .btn-dark {
    background: white;
    border-color: white;
    color: #6c5ce7;
    font-weight: 600;
}

.cta-section .btn-dark:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
    color: #6c5ce7;
}

.cta-section .btn-outline-dark {
    border-color: white;
    color: white;
    background: transparent;
}

.cta-section .btn-outline-dark:hover {
    background: white;
    border-color: white;
    color: #6c5ce7;
}

/* Mobile optimizations for /L page */
@media (max-width: 768px) {
    .luxury-intro {
        margin: 1rem 0;
        padding: 1.5rem;
    }
    
    .instructions-box {
        padding: 1.5rem;
    }
    
    .instruction-step {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .experience-section,
    .philosophy-section {
        margin: 1.5rem 0;
    }
    
    .quote-section {
        padding: 2rem 1rem;
        margin: 1.5rem 0;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 2.5rem;
    }
    
    .luxury-intro .fs-5 {
        font-size: 1rem !important;
    }
    
    .quote-section .blockquote p {
        font-size: 1rem;
    }
    
    .instruction-step h5 {
        font-size: 0.85rem;
    }
    
    .instruction-step p {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
}

/* Special luxury theme colors */
.product-hero.luxury {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.product-hero.luxury .product-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-hero.luxury .product-subtitle {
    color: rgba(255,255,255,0.9);
}




/* Additional styles for #S product page */

:root {
    --sparkling-primary: #e84393;
    --sparkling-secondary: #fd79a8;
    --sparkling-accent: #fdcb6e;
    --sparkling-dark: #2d3436;
}

.product-hero.sparkling {
    background: linear-gradient(135deg, var(--sparkling-primary) 0%, var(--sparkling-secondary) 50%, var(--sparkling-accent) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.product-hero.sparkling::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.4)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="90" cy="80" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="10" cy="90" r="1.5" fill="rgba(255,255,255,0.2)"/></svg>');
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.product-hero.sparkling .product-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.product-hero.sparkling .product-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
}

.product-hero.sparkling .hero-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.psychedelic-intro {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 50%, #fdcb6e 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.psychedelic-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.psychedelic-intro * {
    position: relative;
    z-index: 2;
}

.bacchus-section .bacchus-box {
    background: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
    color: white;
    border-radius: 15px;
    border: none;
}

.bacchus-section .transformation-box {
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
    color: white;
    border-radius: 15px;
    border: none;
}

.sparkling-note {
    font-weight: 600;
    color: var(--sparkling-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sparkling-note:hover {
    color: var(--sparkling-secondary);
    transform: scale(1.05);
}

.notes-section.sparkling-notes {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #ffeaa7 !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.notes-section.sparkling-notes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(232, 67, 147, 0.1) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: var(--transition);
    opacity: 0;
}

.notes-section.sparkling-notes:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

.notes-section.sparkling-notes:hover {
    border-color: var(--sparkling-primary) !important;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(232, 67, 147, 0.2);
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) rotate(-45deg); }
}

.confession-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    padding: 0;
    position: relative;
}

.confession-box {
    background: transparent;
    position: relative;
}

.confession-feature {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.1);
    transition: var(--transition);
    border: 1px solid #ffeaa7;
}

.confession-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(232, 67, 147, 0.2);
    border-color: var(--sparkling-primary);
}

.confession-feature h5 {
    color: var(--sparkling-primary);
    font-size: 1rem;
}

.sparkling-text {
    background: linear-gradient(45deg, var(--sparkling-primary), var(--sparkling-secondary), var(--sparkling-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sparkle-text 2s ease-in-out infinite;
}

@keyframes sparkle-text {
    0%, 100% { 
        filter: brightness(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.2);
        transform: scale(1.05);
    }
}

.experience-grid .experience-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #ffeaa7;
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(232, 67, 147, 0.15);
    border-color: var(--sparkling-secondary);
}

.experience-card h4 {
    color: var(--sparkling-primary);
    font-size: 1.1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--sparkling-primary) 0%, var(--sparkling-secondary) 50%, var(--sparkling-accent) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="75" cy="35" r="1.5" fill="rgba(255,255,255,0.3)"/><circle cx="45" cy="65" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="85" cy="75" r="1.5" fill="rgba(255,255,255,0.3)"/></svg>');
    animation: sparkle 4s ease-in-out infinite;
}

.cta-section * {
    position: relative;
    z-index: 2;
}

.btn-sparkling {
    background: white;
    border: 2px solid white;
    color: var(--sparkling-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-sparkling:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
    color: var(--sparkling-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-outline-sparkling {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-sparkling:hover {
    background: white;
    border-color: white;
    color: var(--sparkling-primary);
    transform: translateY(-2px);
}

/* Mobile optimizations for #S page */
@media (max-width: 768px) {
    .product-hero.sparkling .product-title {
        font-size: 3.5rem;
    }
    
    .product-hero.sparkling {
        padding: 2rem 1rem;
    }
    
    .psychedelic-intro {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .bacchus-section .row > div {
        margin-bottom: 1rem;
    }
    
    .confession-section,
    .cta-section {
        margin: 1.5rem 0;
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .product-hero.sparkling .product-title {
        font-size: 2.8rem;
        letter-spacing: 0.2em;
    }
    
    .product-hero.sparkling .product-subtitle {
        font-size: 1.1rem;
    }
    
    .sparkling-text {
        font-size: 1.8rem !important;
    }
    
    .experience-grid .row > div {
        margin-bottom: 1rem;
    }
}



/* Additional styles for :P product page */

:root {
    --fiery-primary: #e17055;
    --fiery-secondary: #fd79a8;
    --fiery-accent: #fdcb6e;
    --fiery-dark: #d63031;
    --fiery-hot: #ff4757;
}

.product-hero.fiery {
    background: linear-gradient(135deg, var(--fiery-primary) 0%, var(--fiery-hot) 50%, var(--fiery-dark) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.product-hero.fiery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,80 Q25,70 30,80 T40,80" stroke="rgba(255,255,255,0.2)" fill="none" stroke-width="2"/><path d="M60,75 Q65,65 70,75 T80,75" stroke="rgba(255,255,255,0.3)" fill="none" stroke-width="2"/><circle cx="90" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="10" cy="30" r="1.5" fill="rgba(255,255,255,0.2)"/></svg>');
    animation: fiery-dance 4s ease-in-out infinite;
}

@keyframes fiery-dance {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(-5px);
    }
}

.product-hero.fiery .product-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
    animation: pulse-fire 2s ease-in-out infinite;
}

@keyframes pulse-fire {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-hero.fiery .product-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
}

.product-hero.fiery .hero-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-style: italic;
}

.feisty-intro {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.feisty-intro::before {
    content: '🌶️';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.3;
}

.pepper-section .pepper-box {
    background: linear-gradient(135deg, var(--fiery-hot) 0%, var(--fiery-dark) 100%);
    color: white;
    border-radius: 15px;
    position: relative;
}

.pepper-section .pepper-box::before {
    content: '🌶️';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.2;
    transform: rotate(15deg);
}

.pepper-section .surrender-box {
    background: linear-gradient(135deg, var(--fiery-secondary) 0%, #fd79a8 100%);
    color: white;
    border-radius: 15px;
    position: relative;
}

.pepper-section .surrender-box::before {
    content: '😍';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.3;
}

.polyamorous-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    padding: 0;
}

.poly-box {
    background: transparent;
}

.love-feature {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(225, 112, 85, 0.1);
    transition: var(--transition);
    border: 2px solid #ffeaa7;
    position: relative;
}

.love-feature::before {
    content: '💕';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.love-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(225, 112, 85, 0.2);
    border-color: var(--fiery-primary);
}

.love-feature:hover::before {
    opacity: 1;
    transform: rotate(15deg);
}

.love-feature h5 {
    color: var(--fiery-primary);
    font-size: 1rem;
}

.dance-section {
    background: #000;
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.dance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--fiery-primary), var(--fiery-hot), var(--fiery-dark));
    opacity: 0.8;
    z-index: 1;
}

.dance-box {
    position: relative;
    z-index: 2;
}

.vision-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.vision-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.vision-card h5 {
    color: var(--fiery-accent);
    font-size: 1.1rem;
}

.fiery-note {
    font-weight: 600;
    color: var(--fiery-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.fiery-note:hover {
    color: var(--fiery-hot);
    transform: scale(1.1);
}

.notes-section.fiery-notes {
    background: linear-gradient(135deg, #fff 0%, #ffeaa7 20%, #fff 100%);
    border: 3px solid var(--fiery-primary) !important;
    transition: var(--transition);
    position: relative;
}

.notes-section.fiery-notes::before {
    content: '🔥';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.notes-section.fiery-notes:hover::before {
    opacity: 1;
    animation: fire-dance 1s ease-in-out infinite;
}

@keyframes fire-dance {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.notes-section.fiery-notes:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(225, 112, 85, 0.3);
    border-color: var(--fiery-hot) !important;
}

.capability-section {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    border-radius: 25px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.capability-box {
    background: transparent;
    position: relative;
    z-index: 2;
}

.fiery-text {
    background: linear-gradient(45deg, var(--fiery-primary), var(--fiery-hot), var(--fiery-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: fire-glow 2s ease-in-out infinite;
}

@keyframes fire-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.passion-text {
    color: var(--fiery-hot);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.disclaimer-box {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.experience-grid .experience-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(225, 112, 85, 0.08);
    border: 1px solid #ffeaa7;
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(225, 112, 85, 0.15);
    border-color: var(--fiery-primary);
}

.experience-card h4 {
    color: var(--fiery-primary);
    font-size: 1.1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--fiery-primary) 0%, var(--fiery-hot) 50%, var(--fiery-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="70" r="1.5" fill="rgba(255,255,255,0.3)"/><path d="M40,20 Q45,10 50,20 T60,20" stroke="rgba(255,255,255,0.2)" fill="none" stroke-width="1"/></svg>');
    animation: fiery-dance 5s ease-in-out infinite;
}

.cta-section * {
    position: relative;
    z-index: 2;
}

.btn-fiery {
    background: white;
    border: 2px solid white;
    color: var(--fiery-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-fiery:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
    color: var(--fiery-hot);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-outline-fiery {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-fiery:hover {
    background: white;
    border-color: white;
    color: var(--fiery-primary);
    transform: translateY(-2px);
}

/* Mobile optimizations for :P page */
@media (max-width: 768px) {
    .product-hero.fiery .product-title {
        font-size: 3.5rem;
    }
    
    .product-hero.fiery {
        padding: 2rem 1rem;
    }
    
    .feisty-intro {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .pepper-section .row > div,
    .polyamorous-section .row > div {
        margin-bottom: 1rem;
    }
    
    .dance-section,
    .capability-section,
    .cta-section {
        margin: 1.5rem 0;
        padding: 2rem 1rem;
    }
    
    .love-feature {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .product-hero.fiery .product-title {
        font-size: 2.8rem;
        letter-spacing: 0.15em;
    }
    
    .product-hero.fiery .product-subtitle {
        font-size: 1.1rem;
    }
    
    .fiery-text {
        font-size: 2rem !important;
    }
    
    .vision-card,
    .love-feature {
        margin-bottom: 0.5rem;
    }
    
    .capability-section .display-5 {
        font-size: 1.5rem;
    }
    
    .capability-section .display-4 {
        font-size: 2rem;
    }
}
