/* ========================================
   MENOSOOTHE - PREMIUM LUXURY LANDING PAGE
   Design: Black (#000000), Gold (#D4AF37), White (#FFFFFF)
   Mobile-First Responsive Design
   ======================================== */

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-size: 16px; /* Prevent zoom on iOS */
}

ul {
    list-style: none;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000000;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Tablet Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }
}

/* Desktop Typography */
@media (min-width: 1024px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 22px;
    }
}

/* ========================================
   3. CONTAINER & LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

section {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 24px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* ========================================
   4. BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    color: #ffffff;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #f4c430 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    min-height: 56px;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Mobile Button Styles */
@media (max-width: 767px) {
    .btn {
        width: 100%;
        padding: 18px 24px;
    }
    
    .btn-large {
        padding: 22px 32px;
        font-size: 16px;
    }
}

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 28px;
    }
}

.logo-accent {
    color: #D4AF37;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.nav-link {
    display: block;
    color: #000000;
    font-weight: 500;
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 12px 28px;
    min-height: 44px;
    width: 100%;
    margin-top: 20px;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: 40px;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 30px;
    }
    
    .nav-link {
        padding: 8px 0;
        border-bottom: none;
    }
    
    .btn-nav {
        width: auto;
        margin-top: 0;
    }
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.hero {
    padding-top: 100px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 120px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.hero-image {
    position: relative;
    order: -1;
}

@media (min-width: 768px) {
    .hero-image {
        order: 0;
        animation: float 6s ease-in-out infinite;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.product-showcase {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-showcase {
        max-width: 500px;
    }
}

.product-img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: productEntrance 1s ease-out;
    transition: transform 0.3s ease;
}

@keyframes productEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.floating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #D4AF37 0%, #f4c430 100%);
    color: #000000;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .floating-badge {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 70%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
    .hero-description p {
        font-size: 18px;
    }
}

.hero-cta {
    margin: 2rem 0;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-trust {
        justify-content: flex-start;
        gap: 25px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.trust-item svg {
    flex-shrink: 0;
}

/* ========================================
   7. WHY CHOOSE US SECTION
   ======================================== */

.why-choose {
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 30px 20px;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #000000;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

@media (min-width: 768px) {
    .feature-description {
        font-size: 15px;
    }
}

/* ========================================
   8. WHAT IS SECTION
   ======================================== */

.what-is {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.content-text .section-title {
    text-align: center;
}

@media (min-width: 768px) {
    .content-text .section-title {
        text-align: left;
    }
}

.content-text .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .content-text .section-title::after {
        left: 0;
        transform: translateX(0);
    }
}

.content-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .content-paragraph {
        font-size: 17px;
    }
}

.content-image {
    position: relative;
    order: -1;
}

@media (min-width: 768px) {
    .content-image {
        order: 0;
    }
}

.showcase-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* ========================================
   9. HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: #ffffff;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #D4AF37;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    gap: 15px;
}

@media (min-width: 768px) {
    .accordion-header {
        padding: 20px 25px;
    }
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, #ffffff 100%);
}

.accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    flex: 1;
}

@media (min-width: 768px) {
    .accordion-title {
        font-size: 18px;
    }
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
    padding: 0 20px 20px;
}

@media (min-width: 768px) {
    .accordion-item.active .accordion-content {
        padding: 0 25px 25px;
    }
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
}

@media (min-width: 768px) {
    .accordion-content p {
        font-size: 16px;
    }
}

/* ========================================
   10. REVIEWS SECTION
   ======================================== */

.reviews {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: slideInUp 0.6s ease-out;
}

@media (min-width: 768px) {
    .review-card {
        padding: 30px;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.review-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D4AF37;
    animation: zoomIn 0.5s ease-out;
}

@media (min-width: 768px) {
    .review-image {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-rating {
    margin-bottom: 15px;
}

.stars {
    color: #D4AF37;
    font-size: 18px;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .stars {
        font-size: 20px;
    }
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .review-name {
        font-size: 20px;
    }
}

.review-location {
    font-size: 13px;
    color: #777777;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .review-location {
        font-size: 14px;
    }
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    font-style: italic;
}

@media (min-width: 768px) {
    .review-text {
        font-size: 15px;
    }
}

/* ========================================
   11. PRICING SECTION
   ======================================== */

.pricing {
    background: #ffffff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .pricing-header {
        margin-bottom: 50px;
    }
}

.pricing-subtitle {
    font-size: 16px;
    color: #555555;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .pricing-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .countdown-timer {
        gap: 10px;
        margin-top: 30px;
    }
}

.timer-box {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 12px 20px;
    min-width: 80px;
    text-align: center;
}

@media (min-width: 768px) {
    .timer-box {
        padding: 15px 25px;
        min-width: 100px;
    }
}

.timer-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

@media (min-width: 768px) {
    .timer-number {
        font-size: 36px;
    }
}

.timer-label {
    display: block;
    font-size: 11px;
    color: #ffffff;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 12px;
    }
}

.timer-colon {
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
}

@media (min-width: 768px) {
    .timer-colon {
        font-size: 36px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

@media (min-width: 576px) and (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .pricing-grid .pricing-card:nth-child(2) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
}

.pricing-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 30px 20px;
    }
}

.pricing-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.pricing-popular {
    border-color: #D4AF37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

@media (min-width: 992px) {
    .pricing-popular {
        transform: scale(1.05);
    }
    
    .pricing-popular:hover {
        transform: scale(1.05) translateY(-5px);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #f4c430 100%);
    color: #000000;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .popular-badge {
        top: -15px;
        padding: 8px 25px;
        font-size: 13px;
    }
}

.pricing-label {
    display: inline-block;
    background: #000000;
    color: #D4AF37;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .pricing-label {
        padding: 8px 20px;
        font-size: 13px;
        margin-bottom: 15px;
    }
}

.pricing-bottles {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .pricing-bottles {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.pricing-supply {
    font-size: 14px;
    color: #777777;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .pricing-supply {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

.pricing-image {
    max-width: 160px;
    margin: 0 auto 20px;
}

@media (min-width: 768px) {
    .pricing-image {
        max-width: 200px;
        margin-bottom: 25px;
    }
}

.pricing-image img {
    width: 100%;
}

.pricing-price {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .pricing-price {
        margin-bottom: 15px;
    }
}

.price-per {
    font-size: 40px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

@media (min-width: 768px) {
    .price-per {
        font-size: 48px;
    }
}

.price-bottle {
    font-size: 16px;
    color: #555555;
}

@media (min-width: 768px) {
    .price-bottle {
        font-size: 18px;
    }
}

.pricing-total {
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .pricing-total {
        margin-bottom: 20px;
    }
}

.price-old {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
    margin-right: 8px;
}

@media (min-width: 768px) {
    .price-old {
        font-size: 20px;
        margin-right: 10px;
    }
}

.price-new {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

@media (min-width: 768px) {
    .price-new {
        font-size: 28px;
    }
}

.pricing-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .pricing-badges {
        gap: 10px;
        margin-bottom: 25px;
    }
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .badge {
        padding: 8px 15px;
        font-size: 13px;
    }
}

.badge-bonus {
    background: linear-gradient(135deg, #D4AF37 0%, #f4c430 100%);
    color: #000000;
}

.badge-shipping {
    background: #10B981;
    color: #ffffff;
}

.btn-pricing {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    min-height: 50px;
}

@media (min-width: 768px) {
    .btn-pricing {
        padding: 15px;
        margin-bottom: 20px;
    }
}

.btn-cart-img {
    max-width: 160px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .btn-cart-img {
        max-width: 180px;
    }
}

.payment-logos {
    margin-top: 12px;
}

@media (min-width: 768px) {
    .payment-logos {
        margin-top: 15px;
    }
}

.payment-logos img {
    max-width: 180px;
    margin: 0 auto;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .payment-logos img {
        max-width: 200px;
    }
}

.pricing-rating {
    text-align: center;
    margin-top: 35px;
}

@media (min-width: 768px) {
    .pricing-rating {
        margin-top: 40px;
    }
}

.pricing-rating img {
    max-width: 250px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-rating img {
        max-width: 300px;
    }
}

/* ========================================
   12. INGREDIENTS SECTION
   ======================================== */

.ingredients {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.ingredient-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .ingredient-card {
        padding: 25px;
    }
}

.ingredient-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.ingredient-name {
    font-size: 18px;
    color: #000000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .ingredient-name {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.ingredient-name::before {
    content: '✓';
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #D4AF37;
    color: #000000;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

@media (min-width: 768px) {
    .ingredient-name::before {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 15px;
    }
}

.ingredient-description {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

@media (min-width: 768px) {
    .ingredient-description {
        font-size: 15px;
    }
}

/* ========================================
   13. SCIENCE SECTION
   ======================================== */

.science {
    background: #ffffff;
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
}

.science-intro {
    text-align: center;
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .science-intro {
        margin-bottom: 40px;
    }
}

.science-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

@media (min-width: 768px) {
    .science-intro p {
        font-size: 17px;
    }
}

/* ========================================
   14. GUARANTEE SECTION
   ======================================== */

.guarantee {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
    }
}

.guarantee-image {
    text-align: center;
    order: -1;
}

@media (min-width: 768px) {
    .guarantee-image {
        order: 0;
    }
}

.guarantee-image img {
    max-width: 250px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .guarantee-image img {
        max-width: 300px;
    }
}

.guarantee-content .section-title {
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-content .section-title {
        text-align: left;
    }
}

.guarantee-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .guarantee-content .section-title::after {
        left: 0;
        transform: translateX(0);
    }
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (min-width: 768px) {
    .guarantee-points {
        gap: 30px;
    }
}

.guarantee-point {
    display: flex;
    gap: 15px;
}

@media (min-width: 768px) {
    .guarantee-point {
        gap: 20px;
    }
}

.point-icon {
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000000;
}

@media (min-width: 768px) {
    .point-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.point-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

@media (min-width: 768px) {
    .point-content p {
        font-size: 15px;
    }
}

/* ========================================
   15. BENEFITS SECTION
   ======================================== */

.benefits {
    background: #ffffff;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .benefits-list {
        gap: 25px;
    }
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .benefit-item {
        gap: 20px;
        padding: 25px;
    }
}

.benefit-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    transform: translateX(10px);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #000000;
}

@media (min-width: 768px) {
    .benefit-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.benefit-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

@media (min-width: 768px) {
    .benefit-content p {
        font-size: 15px;
    }
}

/* ========================================
   16. FAQ SECTION
   ======================================== */

.faq {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

/* ========================================
   17. FINAL CTA SECTION
   ======================================== */

.final-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 60px 0;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
    }
}

.final-cta-image {
    text-align: center;
    order: -1;
}

@media (min-width: 768px) {
    .final-cta-image {
        order: 0;
    }
}

.final-product-img {
    max-width: 300px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .final-product-img {
        max-width: 400px;
    }
}

.final-cta-text {
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-text {
        text-align: left;
    }
}

.final-title {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 24px;
}

@media (min-width: 768px) {
    .final-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .final-title {
        font-size: 36px;
    }
}

.final-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .final-pricing {
        gap: 10px;
        margin-bottom: 25px;
    }
}

.final-price-old {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
}

@media (min-width: 768px) {
    .final-price-old {
        font-size: 20px;
    }
}

.final-price-new {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

@media (min-width: 768px) {
    .final-price-new {
        font-size: 42px;
    }
}

.final-description {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .final-description {
        font-size: 17px;
        margin-bottom: 30px;
    }
}

.btn-final {
    display: inline-flex;
    margin-bottom: 18px;
}

@media (max-width: 767px) {
    .btn-final {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .btn-final {
        margin-bottom: 20px;
    }
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #D4AF37;
    font-weight: 600;
    font-size: 14px;
}

@media (min-width: 768px) {
    .final-guarantee {
        justify-content: flex-start;
        font-size: 15px;
    }
}

/* ========================================
   18. FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 50px 0 25px;
}

@media (min-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

.footer-links a {
    color: #D4AF37;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-links a {
        font-size: 15px;
    }
}

.footer-links a:hover {
    color: #f4c430;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .footer-disclaimer {
        padding: 20px;
        margin-bottom: 30px;
    }
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-disclaimer p {
        font-size: 13px;
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .footer-social {
        gap: 20px;
        margin-bottom: 30px;
    }
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-3px);
}

.footer-copyright {
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

@media (min-width: 768px) {
    .footer-copyright {
        padding-top: 20px;
    }
}

.footer-copyright p {
    font-size: 13px;
    color: #999999;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-copyright p {
        font-size: 14px;
    }
}

/* ========================================
   19. SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media (min-width: 768px) {
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
    }
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #f4c430 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.scroll-to-top svg {
    color: #D4AF37;
}

.scroll-to-top:hover svg {
    color: #000000;
}

/* ========================================
   20. PURCHASE NOTIFICATION POPUP
   ======================================== */

.purchase-notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: #ffffff;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 998;
    max-width: 320px;
    transition: bottom 0.5s ease;
}

@media (min-width: 768px) {
    .purchase-notification {
        padding: 15px 20px;
        max-width: 350px;
    }
}

.purchase-notification.show {
    bottom: 25px;
}

@media (min-width: 768px) {
    .purchase-notification.show {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .purchase-notification {
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 40px);
    }
    
    .purchase-notification.show {
        bottom: 20px;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .notification-content {
        gap: 15px;
    }
}

.notification-icon {
    flex-shrink: 0;
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-text strong {
    color: #000000;
    font-size: 13px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .notification-text strong {
        font-size: 14px;
    }
}

.notification-text span {
    color: #555555;
    font-size: 12px;
}

@media (min-width: 768px) {
    .notification-text span {
        font-size: 13px;
    }
}

/* ========================================
   21. TIMER URGENCY ANIMATION
   ======================================== */

.countdown-timer.urgent .timer-box {
    animation: urgentPulse 1s ease-in-out infinite;
}

@keyframes urgentPulse {
    0%, 100% {
        transform: scale(1);
        border-color: #D4AF37;
    }
    50% {
        transform: scale(1.05);
        border-color: #ff0000;
    }
}

/* ========================================
   22. LOADING STATE FOR IMAGES
   ======================================== */

img.loading {
    opacity: 0;
}

img.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ========================================
   23. PRINT STYLES
   ======================================== */

@media print {
    .header,
    .scroll-to-top,
    .purchase-notification,
    .countdown-timer,
    .hamburger {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ========================================
   24. UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-a
