/* ==========================================================================
   Ooki Premium Product Landing Page CSS
   ========================================================================== */

/* Design Tokens & Reset */
:root {
    /* Color Palette */
    --primary: hsl(28, 90%, 52%); /* Rich Amber / Orange */
    --primary-light: hsl(35, 100%, 60%);
    --primary-dark: hsl(20, 95%, 45%);
    --primary-glow: rgba(243, 112, 33, 0.3);
    
    --bg-light: #f8f9fa;
    --bg-card-light: #ffffff;
    --bg-dark: #0b0c0e;
    --bg-card-dark: #121418;
    --bg-header-light: rgba(248, 249, 250, 0.85);
    --bg-header-dark: rgba(11, 12, 14, 0.85);
    
    --text-dark: #111827;
    --text-muted-dark: #4b5563;
    --text-light: #f9fafb;
    --text-muted-light: #9ca3af;
    
    --border-light: #e5e7eb;
    --border-dark: #22252a;
    
    --star-color: #fbc02d;
    --green-success: #10b981;
    
    /* Layout & Styling Values */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px var(--primary-glow);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Helper Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 8px;
}

/* Scroll Animation classes */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.5), var(--shadow-glow);
}

.btn-light {
    background-color: white;
    color: var(--bg-dark);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    background-color: var(--bg-light);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulsate-glow 2.5s infinite;
}

@keyframes pulsate-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .navbar {
    height: 65px;
}

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

.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .brand-logo {
    height: 34px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-muted-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: var(--bg-card-light);
    z-index: 1001;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-drawer-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-drawer-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.mobile-drawer-btn {
    margin-top: 20px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 80% 20%, rgba(243, 112, 33, 0.08) 0%, rgba(255, 255, 255, 0) 50%), var(--bg-light);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(243, 112, 33, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 112, 33, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(243, 112, 33, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(243, 112, 33, 0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
    margin-bottom: 32px;
}

.hero-subtitle strong {
    color: var(--text-dark);
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.hero-feature-item span {
    font-weight: 500;
    color: var(--text-muted-dark);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    color: var(--star-color);
    font-size: 0.95rem;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
}

.hero-showcase {
    position: relative;
}

.image-gallery-container {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.main-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-light);
    aspect-ratio: 3/2;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.badge-float {
    position: absolute;
    background-color: rgba(11, 12, 14, 0.75);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-top-right {
    top: 16px;
    right: 16px;
}

.float-bottom-left {
    bottom: 16px;
    left: 16px;
    background-color: rgba(243, 112, 33, 0.9);
    border: none;
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumbnail {
    flex: 1;
    aspect-ratio: 3/2;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

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

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary);
}

/* Hero Wave Divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: #ffffff;
}

/* Common Section Styles */
.section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-subtitle.light-text {
    color: var(--primary-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title.white-text {
    color: white;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto 20px auto;
    border-radius: var(--radius-full);
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
}

.section-description.light-text {
    color: var(--text-muted-light);
}

/* About / Why Ooki Section */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background-color: white;
    border-color: var(--primary);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: rgba(243, 112, 33, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.about-card:hover .about-card-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.about-card-text {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
}

/* Double-Sided Section (Core Value) */
.double-side-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.side-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.side-image-holder {
    background-color: white;
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.side-image-holder img {
    border-radius: var(--radius-md);
    width: 100%;
}

.side-content .section-title {
    margin-bottom: 20px;
}

.side-text {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
    margin-bottom: 30px;
}

/* Side Features Accordion */
.side-features-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    background-color: white;
    transition: var(--transition-fast);
}

.accordion-header i {
    color: var(--primary);
    font-size: 1.25rem;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: white;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-body p {
    padding: 0 24px 20px 24px;
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

/* Features Grid Section (Dark BG) */
.dark-bg {
    background-color: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-card-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-md);
    background-color: rgba(243, 112, 33, 0.15);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-card:hover .feature-card-icon {
    background-color: var(--primary);
    color: white;
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.feature-card-text {
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

/* Gift Highlight Section */
.gift-section {
    background-color: white;
}

.gift-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fef3c7;
    color: #b45309;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.gift-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.gift-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

.gift-image-wrapper {
    position: relative;
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.gift-main-img {
    border-radius: var(--radius-md);
    width: 100%;
}

.gift-overlay-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ef4444;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
    transform: rotate(12deg);
}

.price-strike {
    font-size: 0.8rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-free {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Reviews / Testimonials Section */
.reviews-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.overall-rating-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 24px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
    border: 1px solid var(--border-light);
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.rating-stars {
    color: var(--star-color);
    font-size: 1.25rem;
    margin: 8px 0;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.review-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.review-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted-dark);
}

.review-card .review-stars {
    color: var(--star-color);
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    flex-grow: 1;
    font-style: italic;
}

.verified-purchase {
    font-size: 0.8rem;
    color: var(--green-success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* FAQ Accordion Section (Dark BG) */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question i {
    color: var(--primary-light);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    color: var(--text-muted-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

/* Bottom Call to Action (Buy Banner) */
.buy-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.buy-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.buy-cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.buy-cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.buy-cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
}

.price-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 14px 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
}

.price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-muted-light);
}

.price-current {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.price-current small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    display: block;
}

/* Footer styling */
.footer {
    background-color: #08090b;
    border-top: 1px solid var(--border-dark);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 38px;
    width: auto;
    align-self: flex-start;
    filter: invert(1) hue-rotate(180deg) brightness(1.3);
}

.footer-brand p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.footer-links a, .footer-contact a {
    color: var(--text-muted-light);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    background-color: #050607;
    padding: 30px 0;
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    /* Tablet / Small Laptop Layout adjustments */
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-showcase {
        order: 2;
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card:last-child {
        grid-column: span 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile / Small Tablet Layout adjustments */
    html {
        font-size: 15px;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-menu, .nav-btn {
        display: none; /* Show mobile menu */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .side-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gift-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gift-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .buy-cta-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    /* Small Phone adjustments */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-rating {
        align-items: center;
        margin-top: 10px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card:last-child {
        grid-column: span 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Floating WhatsApp Button Styles
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #20ba5a;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Pulsing Outer Ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.45;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.45;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Tooltip Badge */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #111827;
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #111827;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltips on small touch viewports to prevent layout overflow */
    }
}
