/* ===================================
   Естетична Клиника - Sirpi-Inspired Design
   =================================== */

/* CSS Variables - Aura Reality Color Palette */
:root {
    --primary: #B76E79;
    --primary-dark: #9A5A64;
    --primary-light: #E8A6A8;
    --primary-hover: #A56570;
    --cream: #F5E6E8;
    --cream-dark: #EDD9DC;
    --gray-light: #F5F5F5;
    --gray: #E8E8E8;
    --white: #FFFFFF;
    --black: #1F2842;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;

    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* Typography - Sirpi Style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

/* Section Title - Sirpi Style */
.section-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
}

/* Buttons - Sirpi Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Utility Classes */
.mobile-only { display: none !important; }

@media (max-width: 768px) {
    .mobile-only { display: block !important; }
}

/* ===================================
   Header - Two Row Modern Style
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Top Bar */
.header-top {
    background: var(--black);
    color: var(--white);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 1.5rem;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--primary);
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 350px;
}

.header-search form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition);
}

.header-search form:focus-within {
    background: rgba(255,255,255,0.2);
}

.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    color: var(--white);
    outline: none;
}

.header-search input::placeholder {
    color: rgba(255,255,255,0.6);
}

.header-search button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.header-search button:hover {
    color: var(--primary);
}

/* Top Actions */
.header-top-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.header-action-btn:hover,
.header-action-btn.active {
    color: var(--primary);
    background: rgba(255,255,255,0.1);
}

.header-action-btn i {
    font-size: 1rem;
}

.header-action-promo {
    color: #ff6b6b;
}

.header-action-promo:hover {
    color: #ff5252;
}

/* Shop button - golden color */
.header-top-actions .header-action-btn:first-child {
    color: var(--primary);
}

.header-top-actions .header-action-btn:first-child:hover {
    color: var(--primary-dark);
    background: rgba(196, 164, 132, 0.15);
}

.header-action-cart {
    position: relative;
}

.header-action-cart .cart-count {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Button */
.header-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.header-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.header-cta-btn i {
    font-size: 0.85rem;
}

/* Navigation Bar */
.header-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray);
}

.header-nav .container {
    display: flex;
    justify-content: center;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > a,
.nav-dropdown-toggle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 1rem 1.25rem;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-menu > a:hover,
.nav-menu > a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: var(--primary);
    background: var(--cream);
}

.nav-menu > a,
.nav-dropdown {
    position: relative;
}

/* Nav dividers */
.nav-menu > a:not(:last-child)::after,
.nav-dropdown:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--gray);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background-color: var(--cream);
    color: var(--primary);
}

/* Mega Menu */
.nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 500px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.nav-dropdown:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
}

.nav-mega-menu .mega-menu-column {
    display: flex;
    flex-direction: column;
}

.nav-mega-menu .mega-menu-item {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text);
    transition: all 0.2s ease;
    border-radius: var(--radius-sm);
}

.nav-mega-menu .mega-menu-item:hover {
    background-color: var(--cream);
    color: var(--primary);
}

.nav-mega-menu .mega-menu-item.has-sub {
    font-weight: 500;
    color: var(--black);
}

.nav-mega-menu .mega-menu-sub {
    padding-left: 1rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.nav-mega-menu .mega-menu-sub:hover {
    color: var(--primary);
    background-color: var(--cream);
}

/* Prevent dropdown overflow on right side */
.nav-dropdown:nth-last-child(-n+4) .nav-dropdown-menu,
.nav-dropdown:nth-last-child(-n+4) .nav-mega-menu {
    left: auto;
    right: 0;
}

/* Hide mobile extras on desktop */
.mobile-menu-extras {
    display: none;
}

    /* Mobile Menu Toggle - Hidden on desktop */
    .menu-toggle {
        display: none;
        width: 24px; /* Reduced from 28px */
        height: 18px; /* Reduced from 20px */
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10000; /* Above mobile menu */
    }
.menu-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span {
    background-color: var(--black); /* Visible on white menu */
}

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Body state when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===================================
   Hero Section - Sirpi Style
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--cream);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 120px 0;
}

.hero-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

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

/* ===================================
   How Can We Help - Service Icons (Sirpi)
   =================================== */
.help-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.help-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--gray);
    transition: var(--transition);
}

.help-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--text);
    stroke-width: 1;
    fill: none;
    transition: var(--transition);
}

.help-card:hover .help-icon svg {
    stroke: var(--primary);
}

.help-card h4 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.help-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===================================
   Treatment Categories (Women/Men)
   =================================== */
.treatment-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.treatment-category {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.treatment-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.treatment-category:hover img {
    transform: scale(1.05);
}

.treatment-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.treatment-category-overlay::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--white);
}

.treatment-category h3 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===================================
   Before & After Section
   =================================== */
.before-after {
    padding: 6rem 0;
    background-color: var(--cream);
}

.before-after .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.before-after-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-slider .after-image {
    clip-path: inset(0 50% 0 0);
}

.comparison-slider .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--white);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
}

.comparison-slider .slider-handle::before {
    content: 'DRAG';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ===================================
   FAQ Section - Sirpi Style
   =================================== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--gray-light);
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.875rem;
    transition: var(--transition);
}

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

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 0 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Team Section - Sirpi Style
   =================================== */
.team-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.team-card-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cream);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-card h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-card .name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   Testimonials - Sirpi Style
   =================================== */
.testimonials {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--black);
    font-size: 0.9375rem;
}

.testimonial-service {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary);
}

/* ===================================
   Blog Section - Sirpi Style
   =================================== */
.blog-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    overflow: hidden;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 1.5rem 0;
}

.blog-card h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-link:hover {
    color: var(--primary);
    gap: 0.75rem;
}

/* ===================================
   CTA Section - Sirpi Style
   =================================== */
.cta {
    padding: 5rem 0;
    background-color: var(--black);
    text-align: center;
}

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

.cta h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

.cta-contact-item i {
    color: var(--primary);
}

/* ===================================
   Footer - Sirpi Style
   =================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
}

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

/* ===================================
   Newsletter Popup - Sirpi Style
   =================================== */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-content {
    background-color: var(--white);
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition);
}

.newsletter-popup.active .newsletter-content {
    transform: scale(1);
}

.newsletter-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-close:hover {
    transform: rotate(90deg);
}

.newsletter-image {
    width: 150px;
    margin: 0 auto 1.5rem;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.newsletter-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--gray);
    border-right: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 1rem 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.newsletter-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-social a {
    color: var(--text-light);
    font-size: 0.875rem;
}

.newsletter-social a:hover {
    color: var(--primary);
}

/* ===================================
   Services Section - Homepage
   =================================== */
.services {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.service-card h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Us / Features Grid */
.why-us {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.section-divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary);
    margin: 1rem auto 0;
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text);
    transition: var(--transition);
}

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

.feature-card h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.about-content h2 {
    margin-bottom: 0.5rem;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================================
   Page Hero (Inner Pages)
   =================================== */
.page-hero {
    padding: 130px 0 80px;
    background-color: var(--cream);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    background-color: var(--white);
    font-size: 0.8125rem;
    border-bottom: 1px solid var(--gray);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.breadcrumbs .current {
    color: var(--text);
}

/* ===================================
   Services Page
   =================================== */
.services-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-page .services-grid {
    gap: 2rem;
}

.services-page .service-card {
    text-decoration: none;
    display: block;
}

.service-card-content {
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-top: none;
}

.service-card-content h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-card-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link:hover {
    gap: 0.75rem;
}

/* ===================================
   About Page
   =================================== */
.about-page {
    padding: 4rem 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    padding: 2.5rem;
    background-color: var(--cream);
}

.mission-card h3,
.vision-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary);
}

.cert-item span {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Testimonials Page
   =================================== */
.testimonials-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card-full {
    background-color: var(--cream);
    padding: 2rem;
}

.testimonial-card-full .testimonial-text {
    font-size: 1rem;
    font-family: var(--font-body);
    font-style: normal;
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-card-full .testimonial-author {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ===================================
   Contact Page
   =================================== */
.contact-page {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--cream);
    padding: 2.5rem;
}

.contact-form h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--cream);
}

.contact-info-card i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.contact-info-card h4 {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Map */
.contact-map {
    margin-top: 1.5rem;
    overflow: hidden;
    height: 250px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================================
   Service Detail Page
   =================================== */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-main h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-main p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-main ul {
    margin-bottom: 2rem;
}

.service-main ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.service-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.875rem;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-price-card {
    background-color: var(--cream);
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-price-card .price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.service-price-card .price {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-heading);
}

.service-price-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.service-info-box {
    background-color: var(--cream);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-info-box h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-info-box h4 i {
    color: var(--primary);
}

.service-info-box ul li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray);
}

.service-info-box ul li:last-child {
    border-bottom: none;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    /* Navigation adjustments for tablets */
    .nav-menu {
        gap: 0.75rem;
    }

    .nav-menu > a,
    .nav-dropdown-toggle {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }

    .header-shop-link span,
    .header-portal span,
    .header-promo span {
        display: none;
    }

    .features-grid,
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Adjustments */
    .header-top {
        padding: 0 0.5rem;
    }

    .header-top-inner {
        height: 56px;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-search {
        display: none;
    }

    .header-top-actions {
        gap: 0;
        flex: 1;
        justify-content: flex-end;
    }

    .header-action-btn {
        padding: 0.5rem;
        min-width: 40px;
        min-height: 40px;
    }

    .header-action-btn span {
        display: none;
    }

    .header-action-btn i {
        font-size: 1.1rem;
    }

    /* Hide some buttons on very small screens */
    .header-action-promo {
        display: none;
    }

    .header-action-cart .cart-count {
        top: 0;
        right: 0;
        min-width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }

    .header-cta-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.55rem;
        gap: 0.3rem;
        border-radius: var(--radius-md);
    }

    .header-cta-btn i {
        font-size: 0.7rem;
    }



    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-left: 0.25rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .header-top-inner {
        height: 52px;
    }

    .logo {
        font-size: 1rem;
    }

    .header-action-btn {
        padding: 0.4rem;
        min-width: 36px;
        min-height: 36px;
    }

    .header-action-btn i {
        font-size: 1rem;
    }

    /* Hide portal button on very small screens */
    .header-top-actions .header-action-btn:nth-child(2) {
        display: none;
    }

    .header-cta-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.5rem;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu - Modern White Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%; /* Slightly narrower for depth */
        max-width: 360px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; /* Left align */
        padding: 80px 0 0; /* Space for top bar */
        gap: 0;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Modern ease */
        overflow-y: auto;
        display: flex !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Main Links & Toggles - Visual Style */
    .nav-menu > a,
    .nav-dropdown-toggle {
        display: flex !important;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-family: var(--font-heading);
        color: var(--black);
        border-bottom: 1px solid var(--gray-light);
        text-transform: none;
        letter-spacing: 0.5px;
        transition: color 0.2s; /* Only color transition here */
    }

    /* Animation Wrapper - Apply to direct children of nav-menu */
    .nav-menu > a,
    .nav-dropdown {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Staggered Animation for Links */
    .nav-menu.active > a,
    .nav-menu.active .nav-dropdown {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active > *:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active > *:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active > *:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active > *:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active > *:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active > *:nth-child(6) { transition-delay: 0.35s; }

    /* Dropdowns (Accordions) */
    .nav-dropdown {
        display: block !important;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
    }

    .nav-dropdown-toggle i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .nav-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu,
    .nav-mega-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none; /* Hidden by default */
        background-color: var(--gray-light);
        width: 100%;
        min-width: unset;
        grid-template-columns: 1fr;
        transform: none;
    }

    .nav-dropdown.active .nav-dropdown-menu,
    .nav-dropdown.active .nav-mega-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-dropdown-menu a,
    .nav-mega-menu .mega-menu-item {
        padding: 0.75rem 2rem 0.75rem 3rem; /* Indented */
        font-size: 0.95rem;
        color: var(--text-light);
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    /* Sub-items in Mega Menu */
    .nav-mega-menu .mega-menu-sub {
        padding-left: 4rem;
        font-size: 0.9rem;
    }

    /* Mobile Menu Extras (Footer) */
    .mobile-menu-extras {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 2rem;
        background-color: var(--cream);
        margin-top: auto; /* Push to bottom */
    }

    /* Mobile Search */
    .mobile-menu-search {
        margin-bottom: 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mobile-menu-search form {
        display: flex;
        background: var(--white);
        border: 1px solid var(--gray);
        border-radius: var(--radius-full);
        padding: 0.25rem 0.5rem;
        width: 100%;
        max-width: 280px; /* Limit width for centered look */
    }

    .mobile-menu-search input {
        flex: 1;
        border: none;
        padding: 0.5rem;
        outline: none;
        font-size: 0.9rem;
    }

    .mobile-menu-search button {
        background: none;
        border: none;
        color: var(--primary);
        padding: 0.5rem;
    }

    /* Mobile Socials */
    .mobile-menu-social {
        display: flex;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .mobile-menu-social a {
        color: var(--primary);
        font-size: 1.25rem;
    }

    .mobile-menu-portal,
    .mobile-menu-phone {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text);
    }
    
    .mobile-menu-divider {
        display: none;
    }
    
    /* Active Link Styles */
    .nav-menu > a.active,
    .nav-dropdown-toggle.active {
        color: var(--primary);
        background-color: var(--cream);
    }
    
    /* Backdrop */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(2px);
        z-index: 998; /* Below header (1000) */
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.2;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 40px 0;
    }

    .hero-features {
        justify-content: center;
    }

    /* Treatment Categories */
    .treatment-categories {
        grid-template-columns: 1fr;
    }

    .treatment-category {
        height: 350px;
    }

    /* Grids */
    .features-grid,
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid,
    .blog-grid,
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    /* Pages */
    .page-hero {
        padding: 70px 0 40px;
    }

    .mission-vision,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-image {
        width: 150px;
        height: 150px;
    }

    /* CTA */
    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .newsletter-content {
        padding: 2rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid var(--gray);
        border-bottom: none;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth reveal for elements */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Navigation Dropdown
   =================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown > a i {
    font-size: 0.6rem;
    transition: var(--transition);
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 180px;
    padding: 0.75rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text);
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--primary);
}

.dropdown-menu a i {
    width: 16px;
    color: var(--primary);
}

/* Header Cart */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 0.5rem;
    color: var(--text);
}

.header-cart:hover {
    color: var(--primary);
}

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

/* ===================================
   Shop Pages
   =================================== */
.shop-categories {
    padding: 4rem 0;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.category-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.6));
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
}

.category-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.category-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-link i {
    transition: var(--transition);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.products-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-badge.sale {
    background: #E53935;
}

.product-badge.new {
    background: #43A047;
}

.product-badge.hot {
    background: #FF9800;
}

.product-badge.service {
    background: var(--primary-dark);
}

.product-info {
    padding: 1.25rem;
}

.product-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.product-rating i {
    color: #FFC107;
    font-size: 0.75rem;
}

.product-rating span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.service-meta i {
    margin-right: 0.25rem;
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
}

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

.btn-add-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.btn-add-cart i {
    margin-right: 0.5rem;
}

.shop-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* Shop Benefits */
.shop-benefits {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.benefit-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Shop Page Layout */
.shop-page {
    padding: 3rem 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray);
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.filter-list a:hover,
.filter-list a.active {
    color: var(--primary);
}

.shop-content {
    min-width: 0;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.sort-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: var(--white);
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===================================
   Blog Pages
   =================================== */
.blog-page {
    padding: 3rem 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.blog-post.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray);
}

.blog-post.featured .blog-post-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.blog-post.featured .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post.featured:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-image {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.35rem;
}

.blog-post h2 a,
.blog-post h3 a {
    color: var(--black);
}

.blog-post h2 a:hover,
.blog-post h3 a:hover {
    color: var(--primary);
}

.blog-post.featured h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-post p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-grid .blog-post {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-grid .blog-post:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.blog-grid .blog-post-image {
    height: 200px;
    border-radius: 0;
}

.blog-grid .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-grid .blog-post-content {
    padding: 1.5rem;
}

.blog-grid .blog-post h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.blog-grid .blog-post p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray);
}

.search-form {
    display: flex;
    gap: 0;
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 0.9rem;
}

.search-form button {
    padding: 0.75rem 1rem;
    background: var(--primary);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--white);
    cursor: pointer;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.category-list a:hover {
    color: var(--primary);
}

.category-list span {
    color: var(--text-muted);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.popular-post h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.popular-post span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.newsletter-widget {
    background: var(--primary);
    color: var(--white);
}

.newsletter-widget h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.newsletter-widget p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.newsletter-sidebar-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.newsletter-sidebar-form .btn {
    width: 100%;
    background: var(--white);
    color: var(--primary);
}

.newsletter-sidebar-form .btn:hover {
    background: var(--cream);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    padding: 0.35rem 0.75rem;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-light);
}

.tag-cloud a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Blog Post Page */
.blog-post-page {
    padding: 3rem 0;
}

.blog-category-hero {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.blog-meta-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.page-hero-small {
    padding: 3rem 0 2rem;
}

.blog-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.blog-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-article {
    max-width: 100%;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--cream);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
}

.blog-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-muted);
}

.blog-content figure {
    margin: 2rem 0;
}

.blog-content figure img {
    width: 100%;
    border-radius: var(--radius-md);
}

.blog-content figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.blog-cta-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--primary);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.blog-cta-box h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.blog-cta-box p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.blog-cta-box .btn {
    background: var(--white);
    color: var(--primary);
}

.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    margin: 3rem 0 2rem;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    color: var(--text);
}

.author-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.share-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.share-box span {
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.email { background: var(--primary); }

.related-posts {
    margin-top: 3rem;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post {
    display: block;
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 1rem;
    font-size: 0.95rem;
}

/* ===================================
   Cart Page
   =================================== */
.cart-page {
    padding: 3rem 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin-bottom: 4rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cart-empty h3 {
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cart-empty-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cart-items-list {
    display: none;
}

.cart-items-list.has-items {
    display: block;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-item-type {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: var(--cream);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--cream);
}

.cart-item-quantity span {
    width: 40px;
    text-align: center;
    font-weight: 500;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #E53935;
}

.cart-summary {
    position: sticky;
    top: 100px;
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
}

.promo-code {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0 0.5rem;
}

.promo-code input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.promo-message {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.promo-message.success {
    color: #43A047;
}

.promo-message.error {
    color: #E53935;
}

.summary-divider {
    height: 1px;
    background: var(--gray);
    margin: 1rem 0;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-checkout i {
    margin-right: 0.5rem;
}

.payment-methods {
    margin-top: 1.5rem;
    text-align: center;
}

.payment-methods p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.cart-benefits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray);
}

.cart-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-benefits .benefit i {
    color: var(--primary);
    width: 16px;
}

.cart-related {
    margin-top: 2rem;
}

/* ===================================
   Shop/Blog Responsive
   =================================== */
@media (max-width: 1024px) {
    .category-cards {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-layout {
        grid-template-columns: 200px 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr 280px;
    }

    .cart-layout {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 768px) {
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0.5rem 0 0.5rem 1rem;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .header-cart {
        display: flex;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .filter-section {
        flex: 1;
        min-width: 140px;
        margin-bottom: 0;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-post.featured {
        grid-template-columns: 1fr;
    }

    .blog-post.featured .blog-post-image {
        height: 250px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-quantity,
    .cart-item-price {
        grid-column: 2;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-social {
        justify-content: center;
    }

    .blog-meta-hero {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-4 {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .shop-cta {
        flex-direction: column;
    }

    .shop-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .category-image {
        height: 300px;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-item-image {
        margin: 0 auto;
    }

    .cart-item-quantity {
        justify-content: center;
    }

    .cart-item-price {
        text-align: center;
    }

    .cart-empty-buttons {
        flex-direction: column;
    }
}

/* ===================================
   Header Offers Button
   =================================== */
.header-offers-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #E53935, #FF5722);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
    transition: var(--transition);
}

.header-offers-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    color: var(--white);
}

.header-offers-btn i {
    font-size: 0.75rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(229, 57, 53, 0.3); }
    50% { box-shadow: 0 0 20px rgba(229, 57, 53, 0.6); }
}

/* ===================================
   Header Shop Dropdown
   =================================== */
.header-shop-dropdown {
    position: relative;
}

.header-shop-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #E53935, #FF5722);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
    transition: var(--transition);
    cursor: pointer;
}

.header-shop-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    color: var(--white);
}

.header-shop-btn i {
    font-size: 0.75rem;
}

.header-shop-btn .fa-chevron-down {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.header-shop-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.header-shop-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 180px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.header-shop-dropdown:hover .header-shop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-shop-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.header-shop-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.header-shop-menu a i {
    font-size: 1rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .header-shop-btn span {
        display: none;
    }

    .header-shop-btn {
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .header-shop-btn .fa-chevron-down {
        display: none;
    }

    .header-shop-menu {
        position: fixed;
        top: auto;
        bottom: 70px;
        right: 10px;
        left: auto;
    }
}

/* ===================================
   Price List Page
   =================================== */
.price-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.price-category h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0;
}

.price-category h3 i {
    font-size: 1rem;
}

.price-table {
    padding: 0.5rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--primary-light);
}

.price-service {
    font-weight: 500;
    color: var(--text-dark);
}

.price-amount {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.price-note {
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.price-note p {
    margin: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

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

/* ===================================
   Promo Offers Page
   =================================== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #E53935, #FF5722);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
    animation: pulse-glow 2s ease-in-out infinite;
}

.promo-image {
    height: 200px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

.promo-content {
    padding: 1.5rem;
}

.promo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.promo-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.promo-prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

.new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.promo-note {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(255, 87, 34, 0.1));
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.promo-note p {
    margin: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.promo-note i {
    color: #E53935;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .price-categories {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .price-note p,
    .promo-note p {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   Offers Page
   =================================== */
.offers-hero {
    background: linear-gradient(135deg, #E53935 0%, #FF5722 100%);
    position: relative;
    overflow: hidden;
}

.offers-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(15deg);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

/* Countdown Section */
.countdown-section {
    padding: 2rem 0;
    background: var(--cream);
}

.countdown-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.countdown-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.countdown-text p {
    opacity: 0.9;
    margin: 0;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
}

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

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Featured Offer */
.featured-offer {
    padding: 4rem 0;
    background: var(--white);
}

.featured-offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.featured-offer-image {
    position: relative;
    min-height: 450px;
}

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

.offer-discount-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E53935;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4);
}

.featured-offer-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-offer-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-offer-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.offer-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.offer-includes i {
    color: var(--primary);
    width: 20px;
}

.offer-includes i.fa-gift {
    color: #E53935;
}

.featured-offer-content .offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.featured-offer-content .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E53935;
}

.save-badge {
    padding: 0.35rem 0.75rem;
    background: #43A047;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Offers Grid */
.offers-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.offer-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: #E53935;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.offer-badge.sale {
    background: #FF9800;
}

.offer-type {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.offer-type.product {
    background: #1976D2;
}

.offer-content {
    padding: 1.5rem;
}

.offer-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.offer-content > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.offer-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.offer-meta i {
    margin-right: 0.25rem;
    color: var(--primary);
}

.offer-content .offer-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.offer-content .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E53935;
}

.offer-content .btn {
    width: 100%;
}

/* Bundle Offers */
.bundle-offers {
    padding: 4rem 0;
    background: var(--white);
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.bundle-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.bundle-card:hover {
    border-color: var(--primary);
}

.bundle-card.featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--cream) 100%);
    border-color: var(--primary);
}

.bundle-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bundle-save {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #E53935;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.bundle-header h3 {
    font-size: 1.25rem;
}

.bundle-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bundle-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
}

.bundle-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.bundle-item-type {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.bundle-item p {
    font-size: 0.85rem;
    margin: 0;
}

.bundle-plus {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
}

.bundle-price {
    margin-bottom: 1.5rem;
}

.bundle-old-price,
.bundle-new-price {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.bundle-old-price {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bundle-old-price span:last-child {
    text-decoration: line-through;
}

.bundle-new-price {
    font-size: 1.1rem;
    font-weight: 600;
    border-top: 1px solid var(--gray);
    padding-top: 0.75rem;
}

.bundle-new-price span:last-child {
    color: #E53935;
    font-size: 1.25rem;
}

.bundle-card .btn {
    width: 100%;
}

/* Offers Newsletter */
.offers-newsletter {
    padding: 3rem 0;
    background: var(--cream);
}

.offers-newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.offers-newsletter-content > i {
    font-size: 2.5rem;
    color: var(--primary);
}

.offers-newsletter-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.offers-newsletter-content > div p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.offers-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.offers-newsletter-form input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    width: 250px;
    font-size: 0.9rem;
}

/* Offers Responsive */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-offer-card {
        grid-template-columns: 1fr;
    }

    .featured-offer-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-offers-btn span {
        display: none;
    }

    .header-offers-btn {
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .countdown-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .bundles-grid {
        grid-template-columns: 1fr;
    }

    .bundle-items {
        flex-direction: column;
    }

    .bundle-plus {
        transform: rotate(90deg);
    }

    .offers-newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .offers-newsletter-form {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
    }

    .offers-newsletter-form input {
        width: 100%;
    }

    .featured-offer-content {
        padding: 2rem;
    }

    .featured-offer-content .current-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .offer-discount-badge {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
}

/* ===================================
   Aura Reality Page - Custom Styles
   =================================== */

/* Aura Reality Color Variables */
.aura-page {
    --aura-dark: #1F2842;
    --aura-rose: #B76E79;
    --aura-rose-light: #E8A6A8;
    --aura-rose-pale: #F5E6E8;
    --aura-gradient: linear-gradient(135deg, #B76E79 0%, #D4A5A5 50%, #E8A6A8 100%);
}

/* Hero Section */
.aura-hero {
    padding: 130px 0 0;
    background-color: var(--aura-rose-pale);
    text-align: center;
}

.aura-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--aura-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.aura-hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.aura-hero-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Tab Navigation */
.aura-tabs {
    background-color: var(--aura-dark);
    position: sticky;
    top: 106px;
    z-index: 100;
}

.aura-tabs-inner {
    display: flex;
    justify-content: center;
    gap: 0;
}

.aura-tab {
    padding: 1.25rem 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.aura-tab:hover,
.aura-tab.active {
    color: #FFFFFF;
    border-bottom-color: var(--aura-rose);
}

/* Intro Section */
.aura-intro {
    padding: 5rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.aura-intro-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aura-rose);
    margin-bottom: 1rem;
}

.aura-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--aura-dark);
    margin-bottom: 1.5rem;
}

.aura-intro-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Aura Button */
.aura-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--aura-gradient);
    color: #FFFFFF;
}

.aura-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.35);
}

.aura-btn-outline {
    background: transparent;
    border: 2px solid var(--aura-rose);
    color: var(--aura-rose);
}

.aura-btn-outline:hover {
    background: var(--aura-gradient);
    border-color: transparent;
    color: #FFFFFF;
}

/* Grid Sections */
.aura-section {
    padding: 5rem 0;
}

.aura-section--alt {
    background-color: var(--aura-rose-pale);
}

.aura-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aura-grid--reverse {
    direction: rtl;
}

.aura-grid--reverse > * {
    direction: ltr;
}

.aura-grid-image {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #E0E0E0;
}

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

.aura-grid-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--aura-dark);
    margin-bottom: 1.5rem;
}

.aura-grid-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.aura-grid-content ul {
    margin-bottom: 2rem;
}

.aura-grid-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.aura-grid-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--aura-rose);
    font-size: 0.875rem;
}

/* Video Section */
.aura-video {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.aura-video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aura-video-placeholder {
    aspect-ratio: 16/9;
    background-color: var(--aura-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.aura-video-placeholder i {
    font-size: 4rem;
    color: var(--aura-rose);
    opacity: 0.8;
}

.aura-video-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--aura-dark);
    margin-bottom: 1.5rem;
}

.aura-video-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.aura-video-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.aura-video-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--aura-rose);
    font-size: 0.875rem;
}

/* Features Two Columns */
.aura-features {
    padding: 5rem 0;
    background-color: var(--aura-rose-pale);
}

.aura-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.aura-feature-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    text-align: center;
}

.aura-feature-card i {
    font-size: 2.5rem;
    color: var(--aura-rose);
    margin-bottom: 1.5rem;
}

.aura-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--aura-dark);
    margin-bottom: 1.5rem;
}

.aura-feature-card ul {
    text-align: left;
}

.aura-feature-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.aura-feature-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--aura-rose);
    font-size: 0.75rem;
}

/* Suitable For Section */
.aura-suitable {
    padding: 5rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.aura-suitable h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--aura-dark);
    margin-bottom: 3rem;
}

.aura-suitable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.aura-suitable-item {
    padding: 2rem 1.5rem;
    background-color: var(--aura-rose-pale);
    text-align: center;
}

.aura-suitable-item i {
    font-size: 2rem;
    color: var(--aura-rose);
    margin-bottom: 1rem;
}

.aura-suitable-item p {
    color: var(--aura-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Pricing Section */
.aura-pricing {
    padding: 5rem 0;
    background-color: var(--aura-dark);
}

.aura-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aura-pricing-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.aura-pricing-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aura-rose-light);
    margin-bottom: 2rem;
}

.aura-pricing-table {
    margin-bottom: 2rem;
}

.aura-pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.aura-pricing-row:last-child {
    border-bottom: none;
}

.aura-pricing-value {
    color: var(--aura-rose-light);
    font-weight: 500;
}

.aura-pricing-cta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.aura-pricing-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
}

.aura-pricing-logo img {
    max-width: 200px;
    opacity: 0.9;
}

.aura-pricing-logo-placeholder {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Clinic Images */
.aura-clinic {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.aura-clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.aura-clinic-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #E0E0E0;
}

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

/* Contact Form */
.aura-contact {
    padding: 5rem 0;
    background-color: var(--aura-rose-pale);
}

.aura-contact-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.aura-contact h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--aura-dark);
    margin-bottom: 0.5rem;
}

.aura-contact p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.aura-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aura-form input,
.aura-form textarea {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(31, 40, 66, 0.2);
    background-color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    transition: var(--transition);
}

.aura-form input:focus,
.aura-form textarea:focus {
    outline: none;
    border-color: var(--aura-rose);
}

.aura-form textarea {
    min-height: 120px;
    resize: vertical;
}

.aura-form button {
    align-self: center;
    margin-top: 1rem;
}

/* Specialists Carousel */
.aura-specialists {
    padding: 5rem 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.aura-specialists h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--aura-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.aura-specialists-track {
    display: flex;
    gap: 2rem;
    animation: auraScroll 20s linear infinite;
}

.aura-specialist-card {
    flex: 0 0 280px;
    text-align: center;
}

.aura-specialist-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #E0E0E0;
}

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

.aura-specialist-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--aura-dark);
    margin-bottom: 0.25rem;
}

.aura-specialist-card p {
    color: var(--aura-rose);
    font-size: 0.875rem;
}

@keyframes auraScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive - Aura Reality */
@media (max-width: 1024px) {
    .aura-grid,
    .aura-video-wrapper,
    .aura-pricing-grid,
    .aura-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aura-grid--reverse {
        direction: ltr;
    }

    .aura-suitable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aura-hero {
        padding-top: 70px;
    }

    .aura-tabs {
        top: 56px;
    }

    .aura-hero-banner img {
        height: auto;
        aspect-ratio: 1;
    }

    .aura-tabs-inner {
        flex-wrap: wrap;
    }

    .aura-tab {
        padding: 1rem 1.5rem;
        font-size: 0.75rem;
        flex: 1 1 auto;
        text-align: center;
    }

    .aura-section {
        padding: 3rem 0;
    }

    .aura-grid-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .aura-suitable-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .aura-clinic-grid {
        grid-template-columns: 1fr;
    }

    .aura-specialists-track {
        animation-duration: 15s;
    }

    .aura-specialist-card {
        flex: 0 0 220px;
    }
}

@media (max-width: 480px) {
    .aura-suitable-grid {
        grid-template-columns: 1fr;
    }

    .aura-tab {
        padding: 0.75rem 1rem;
        font-size: 0.6875rem;
    }
}
