/* =============================================
   Persaunafy Standalone — Shared Stylesheet
   Light theme only
   ============================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Design Tokens ===== */
:root {
    --background: 40 33% 98%;
    --foreground: 30 10% 15%;
    --card: 40 40% 97%;
    --card-foreground: 30 10% 15%;
    --popover: 40 40% 97%;
    --popover-foreground: 30 10% 15%;
    --primary: 29 90% 50%;
    --primary-foreground: 40 33% 98%;
    --secondary: 30 8% 20%;
    --secondary-foreground: 40 33% 98%;
    --muted: 35 25% 92%;
    --muted-foreground: 30 10% 45%;
    --accent: 38 70% 50%;
    --accent-foreground: 40 33% 98%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 35 20% 88%;
    --input: 35 20% 88%;
    --ring: 29 90% 50%;
    --radius: 0.75rem;

    /* Custom Persaunafy tokens */
    --cedar: 28 45% 45%;
    --cedar-light: 32 40% 70%;
    --steam: 200 15% 75%;
    --gold: 45 80% 55%;
    --charcoal: 30 8% 12%;

    /* Button gradient */
    --gradient-start: 29 90% 50%;
    --gradient-mid: 29 91% 45%;
    --gradient-end: 29 89% 72%;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(30 8% 12% / 0.95) 0%, hsl(30 8% 20% / 0.85) 100%);
    --gradient-warm: linear-gradient(180deg, hsl(29 90% 50% / 0.1) 0%, transparent 100%);
    --gradient-card: linear-gradient(180deg, hsl(40 40% 99%) 0%, hsl(35 30% 95%) 100%);

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsl(30 10% 15% / 0.08);
    --shadow-elevated: 0 12px 40px -8px hsl(30 10% 15% / 0.15);
    --shadow-glow: 0 0 40px hsl(29 90% 50% / 0.2);
}

/* ===== Base ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Utility ===== */
.text-gradient {
    background: linear-gradient(135deg,
            hsl(var(--gradient-start)) 0%,
            hsl(var(--gradient-end)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg,
            hsl(var(--gradient-start)) 0%,
            hsl(var(--gradient-mid)) 50%,
            hsl(var(--gradient-end)) 100%);
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 20px hsl(var(--gradient-start) / 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px hsl(var(--gradient-start) / 0.5);
}

.btn-hero {
    background: linear-gradient(135deg,
            hsl(var(--gradient-start)) 0%,
            hsl(var(--gradient-mid)) 50%,
            hsl(var(--gradient-end)) 100%);
    color: hsl(var(--primary-foreground));
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 8px 32px hsl(var(--gradient-start) / 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px hsl(var(--gradient-start) / 0.55);
}

.btn-hero-outline {
    background: transparent;
    color: hsl(var(--primary-foreground));
    border: 2px solid hsl(var(--primary-foreground) / 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: hsl(var(--primary-foreground) / 0.1);
    border-color: hsl(var(--primary-foreground) / 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: hsl(var(--primary-foreground));
    border: 2px solid hsl(var(--primary-foreground) / 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-outline:hover {
    background: hsl(var(--primary-foreground) / 0.1);
    border-color: hsl(var(--primary-foreground) / 0.5);
    transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes steam {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
}

.animate-steam {
    animation: steam 4s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

.header.scrolled {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px hsl(30 10% 15% / 0.1);
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(180deg,
            hsl(var(--gradient-start)) 0%,
            hsl(var(--gradient-mid)) 50%,
            hsl(var(--gradient-end)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: hsl(var(--primary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: hsl(var(--primary));
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown menu */
/* Dropdown menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    box-shadow: 0 8px 24px hsl(30 10% 15% / 0.15);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.65rem 1rem;
    margin: 0.15rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0.5rem;
}

.dropdown-link:hover {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(var(--primary));
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: hsl(var(--background) / 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: hsl(var(--primary));
}

/* ===== Section Shared ===== */
.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-desc {
    color: hsl(var(--muted-foreground));
    max-width: 36rem;
    margin: 0 auto;
}

/* ===== Footer ===== */
.footer {
    background: hsl(var(--charcoal));
    color: hsl(var(--primary-foreground));
    padding: 4rem 0;
}

.footer {
    background: hsl(var(--charcoal));
    color: hsl(var(--primary-foreground));
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: hsl(var(--primary-foreground) / 0.7);
    margin: 1rem 0 1.5rem;
    max-width: 20rem;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social {
    width: 2.5rem;
    height: 2.5rem;
    background: hsl(var(--primary-foreground) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    transition: background 0.3s ease;
    text-decoration: none;
}

.footer-social:hover {
    background: hsl(var(--primary) / 0.25);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: hsl(var(--primary));
}

/* =============================================
   INDEX PAGE — Hero
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/steam-room.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            hsl(var(--charcoal) / 0.8) 0%,
            hsl(var(--charcoal) / 0.6) 50%,
            hsl(var(--charcoal) / 0.9) 100%);
}

.hero-steam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.steam-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.steam-orb-1 {
    top: 50%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: hsl(var(--primary) / 0.05);
}

.steam-orb-2 {
    top: 33%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--accent) / 0.05);
    animation-delay: 0.2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground) / 0.9);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.hero-title-line {
    display: block;
    color: hsl(var(--primary-foreground));
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(var(--primary-foreground) / 0.7);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary-foreground) / 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: hsl(var(--primary));
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== Products Section ===== */
.products {
    padding: 6rem 0;
    background: hsl(var(--background));
}

@media (min-width: 768px) {
    .products {
        padding: 8rem 0;
    }
}

.products-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    position: relative;
    background: hsl(var(--card));
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    transition: all 0.5s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px hsl(var(--primary) / 0.15);
    border-color: hsl(var(--primary) / 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    /* backdrop-filter: blur(10px); */
    color: hsl(var(--primary-foreground));

    /* AI changes */

}

.product-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    /* Makes the blur slightly larger than the badge */
    background: inherit;
    /* Inherits the background color from the specific class (popular/premium/new) */
    filter: blur(10px);
    /* This creates the soft blur on the badge color */
    z-index: -1;
    /* Puts the blur behind the text */
    border-radius: inherit;
    /* Matches the badge shape */
    opacity: 0.8;
    /* Softens the blur slightly */
}

.product-badge.popular {
    background: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary-foreground));

}

.product-badge.premium {
    background: hsl(var(--gold) / 0.9);
    color: hsl(30 15% 10%);
}

.product-badge.new {
    background: hsl(var(--cedar) / 0.9);
    color: hsl(var(--primary-foreground));
}

.product-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--card)) 0%, transparent 50%);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--card-foreground));
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    background: hsl(var(--muted));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.product-feature svg {
    width: 0.75rem;
    height: 0.75rem;
    color: hsl(var(--primary));
}

/* ===== About Section ===== */
.about {
    padding: 6rem 0;
    background: hsl(var(--muted) / 0.5);
}

@media (min-width: 768px) {
    .about {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.about-content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-content .highlight {
    color: hsl(var(--primary));
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.stats-heading {
    grid-column: 1 / -1;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    background: hsl(var(--card));
    border-radius: 1rem;
    border: 1px solid hsl(var(--primary) / 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px hsl(30 10% 15% / 0.12);
    border-color: hsl(var(--primary) / 0.4);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--card-foreground));
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* ===== Certifications Section ===== */
.certifications {
    padding: 6rem 0;
    background: hsl(var(--background));
}

@media (min-width: 768px) {
    .certifications {
        padding: 8rem 0;
    }
}

.cert-grid {
    display: grid;
    gap: 2rem;
    /* This centers the grid items */
    justify-content: center;
}

@media (min-width: 640px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Changed from 4 to 3 */
    }
}

.cert-card {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--card));
    border-radius: 1.5rem;
    border: 1px solid hsl(var(--primary) / 0.2);
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: hsl(var(--primary) / 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px hsl(30 10% 15% / 0.12);
}

.cert-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--gold) / 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.cert-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--card-foreground));
    margin-bottom: 0.5rem;
}

.cert-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ===== Contact Section ===== */
.contact {
    padding: 6rem 0;
    background: hsl(var(--muted) / 0.5);
}

@media (min-width: 768px) {
    .contact {
        padding: 8rem 0;
    }
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid hsl(var(--border));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.contact-info>p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 3rem;
    height: 3rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.contact-method h4 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.contact-method p,
.contact-method a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
}

.contact-method a:hover {
    color: hsl(var(--primary));
}

/* =============================================
   STEAM MACHINES PAGE
   ============================================= */

/* ===== Page Hero Banner ===== */
.page-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: hsl(var(--secondary));
}

@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 0 7rem;
    }
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("../assets/background2.jpg");
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link svg {
    width: 1rem;
    height: 1rem;
}

.back-link:hover {
    color: hsl(var(--primary-foreground));
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: hsl(var(--primary-foreground) / 0.7);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== Series Section ===== */
.series-section {
    padding: 5rem 0 7rem;
    background: hsl(var(--background));
}

.series-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ===== Series Card ===== */
.series-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.5s ease;
}

.series-card:hover {
    box-shadow: var(--shadow-elevated);
}

.series-card-accent {
    height: 4px;
}

.accent-primary-to-accent {
    background: linear-gradient(to right,
            hsl(var(--gradient-start)),
            hsl(var(--gradient-end)));
}

.accent-accent-to-primary {
    background: linear-gradient(to right,
            hsl(var(--gradient-end)),
            hsl(var(--gradient-start)));
}

.series-card-body {
    display: grid;
}

@media (min-width: 768px) {
    .series-card-body {
        grid-template-columns: 380px 1fr;
    }
}

.series-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
    background: hsl(var(--muted) / 0.5);
}

@media (min-width: 768px) {
    .series-image {
        height: auto;
        min-height: 20rem;
    }
}

.series-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;

}

.series-card:hover .series-image img {
    transform: scale(1.05);
}

.series-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .series-content {
        padding: 2.5rem;
    }
}

.series-index {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.series-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--card-foreground));
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.series-tagline {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.75rem;
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.spec-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.spec-icon svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
}

.spec-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.2rem;
}

.spec-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--card-foreground));
}

/* Models */
.models-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
}

.models-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.model-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.model-badge:hover {
    background: hsl(var(--primary) / 0.12);
    border-color: hsl(var(--primary) / 0.4);
    color: hsl(var(--primary));
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: hsl(var(--secondary));
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--secondary-foreground));
    margin-bottom: 1rem;
}

.cta-section p {
    color: hsl(var(--secondary-foreground) / 0.7);
    max-width: 38rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* -------------------------------------- PRODUCTS PAGE - STEAM AND HEATER -------------------------------------- */
/* ===== Page Hero Banner ===== */
.page-hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: hsl(var(--secondary));
}

@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 0 7rem;
    }
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: url("../assets/steam-room.png") no-repeat;
    background-size: cover;
}

.page-hero-pattern-heater {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: url("../assets/slide1.jpg") no-repeat;
    background-size: cover;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link svg {
    width: 1rem;
    height: 1rem;
}

.back-link:hover {
    color: hsl(var(--primary-foreground));
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: hsl(var(--primary-foreground) / 0.7);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== Series Section ===== */
.series-section {
    padding: 5rem 0 7rem;
    background: hsl(var(--background));
}

.series-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ===== Series Card ===== */
.series-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.5s ease;
}

.series-card:hover {
    box-shadow: var(--shadow-elevated);
}

.series-card-accent {
    height: 4px;
}

.accent-primary-to-accent {
    background: linear-gradient(to right,
            hsl(var(--gradient-start)),
            hsl(var(--gradient-end)));
}

.accent-accent-to-primary {
    background: linear-gradient(to right,
            hsl(var(--gradient-end)),
            hsl(var(--gradient-start)));
}

.series-card-body {
    display: grid;
}

@media (min-width: 768px) {
    .series-card-body {
        grid-template-columns: 380px 1fr;
    }
}

.series-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
    background: hsl(var(--muted) / 0.5);
}

@media (min-width: 768px) {
    .series-image {
        height: auto;
        min-height: 20rem;
    }
}

.series-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.series-card:hover .series-image img {
    transform: scale(1.05);
}

.series-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .series-content {
        padding: 2.5rem;
    }
}

.series-index {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.series-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--card-foreground));
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.series-tagline {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.75rem;
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.spec-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.spec-icon svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
}

.spec-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.2rem;
}

.spec-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--card-foreground));
}

/* Models */
.models-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
}

.models-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.model-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.model-badge:hover {
    background: hsl(var(--primary) / 0.12);
    border-color: hsl(var(--primary) / 0.4);
    color: hsl(var(--primary));
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: hsl(var(--secondary));
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: hsl(var(--secondary-foreground));
    margin-bottom: 1rem;
}

.cta-section p {
    color: hsl(var(--secondary-foreground) / 0.7);
    max-width: 38rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ------------------------------- NAVBAR CLAUDE TEXT COLOR CHANGING ------------------------------- */
/* Default white text for navbar on hero section */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground));
    /* White text by default */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Black text after scrolling */
.header.scrolled .nav-link {
    color: hsl(var(--foreground) / 0.8);
    /* Dark text after scroll */
}

/* Hover state for default (white) */
.nav-link:hover {
    color: hsl(var(--primary));
}

/* Logo white by default */
/* .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg,
            hsl(var(--primary-foreground)) 0%,
            hsl(var(--primary-foreground)) 100%);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: background 0.3s ease;
} */

/* Logo gradient after scrolling */
.header.scrolled .logo {
    background: linear-gradient(135deg,
            hsl(var(--gradient-start)) 0%,
            hsl(var(--gradient-mid)) 50%,
            hsl(var(--gradient-end)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile menu button white by default */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: hsl(var(--primary-foreground));
    /* White by default */
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

/* Hide mobile menu button on desktop */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile menu button dark after scroll */
.header.scrolled .mobile-menu-btn {
    color: hsl(var(--foreground));
    /* Dark after scroll */
}

/* =============================================
   ACCESSORIES PAGE — New Rules Only
   Append these to the bottom of style.css
   ============================================= */

/* ===== Page Hero: Accessories ===== */
.page-hero-pattern-accessories {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background: url("../assets/background2.jpg") no-repeat center center;
    background-size: cover;
}

/* PDF button spacing inside the hero */
.acc-pdf-btn {
    margin-top: 2rem;
}

/* ===== Category Tab Navigation ===== */
.acc-cat-nav {
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    position: sticky;
    top: 65px;
    z-index: 40;
    box-shadow: 0 2px 12px hsl(30 10% 15% / 0.06);
}

.acc-cat-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.acc-cat-tabs::-webkit-scrollbar {
    display: none;
}

.acc-cat-tab {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.acc-cat-tab svg {
    width: 1rem;
    height: 1rem;
}

.acc-cat-tab:hover {
    color: hsl(var(--primary));
    border-bottom-color: hsl(var(--primary) / 0.5);
    background: hsl(var(--primary) / 0.04);
}

/* ===== Accessories Sections ===== */
.acc-section {
    padding: 5rem 0 6rem;
    background: hsl(var(--background));
}

.acc-section.acc-alt {
    background: hsl(var(--muted) / 0.5);
}

.section-desc .highlight{
    color: hsl(var(--primary));
    font-weight: 500;
}

/* ===== Accessory Grid ===== */
.acc-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .acc-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Accessory Card ===== */
.acc-card {
    background: hsl(var(--card));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.acc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px hsl(var(--primary) / 0.12);
    border-color: hsl(var(--primary) / 0.3);
}

/* Image container */
.acc-card-image {
    position: relative;
    height: 13rem;
    overflow: hidden;
    background: hsl(var(--muted));
    flex-shrink: 0;
}

.acc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.acc-card:hover .acc-card-image img {
    transform: scale(1.06);
}

/* Gradient fade at bottom of image into card body */
.acc-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--card)) 0%, transparent 10%);
}

/* Badge sits in the top-right of the image */
.acc-card-image .acc-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1;
}

/* Card body */
.acc-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.acc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: hsl(var(--card-foreground));
    line-height: 1.3;
}

.acc-card p {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.65;
}

/* ===== Category Badges ===== */
.acc-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    opacity: 0.8;

}

.acc-badge-steam {
    background: hsl(200 50% 50% / 0.6);
    color: hsl(var(--primary-foreground));
}

.acc-badge-cedar {
    background: hsl(var(--cedar) / 0.5);
    color: hsl(var(--primary-foreground));
}

.acc-badge-infrared {
    background: hsl(var(--primary) / 0.5);
    color: hsl(var(--primary-foreground));
}

.acc-badge-all {
    background: linear-gradient(135deg,
            hsl(var(--gradient-start)) 0%,
            hsl(var(--gradient-mid)) 50%,
            hsl(var(--gradient-end)) 100%);
    color: hsl(var(--primary-foreground));
}