:root {
    --primary: #B8359A;
    --primary-dark: #8B2080;
    --secondary: #1A1A1A;
    --accent: #D4AF37;
    --bg-light: #F9F9F9;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);

    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
}

/* ===========================
   BASE RESET & GLOBALS
   =========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; }

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

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-light { color: white; }
.w-100 { width: 100%; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }

.bg-dark {
    background-color: var(--secondary);
    color: var(--text-light);
}

.bg-light {
    background-color: #f0f0f0;
}

.bg-primary {
    background-color: var(--primary);
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.section-header p {
    margin-top: 16px;
    font-size: 1.05rem;
    color: #666;
    max-width: 620px;
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.link-btn {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.link-btn:hover {
    gap: 14px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.82rem;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--body-font);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 53, 154, 0.35);
}

.btn-secondary {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--secondary);
    transform: translateY(-3px);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
}

/* ===========================
   NAVIGATION
   =========================== */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 84px;
    display: flex;
    align-items: center;
}

.glass-nav.scrolled {
    height: 72px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Circular brand mark — same dimensions in header & footer, but the
   footer uses an inverted dark surface (white circle on dark) and the
   header sits on white-with-tint, so we lean on the PNG's own contour. */
.brand-logo {
    display: block;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 1px 4px rgba(26, 26, 26, 0.08);
    flex-shrink: 0;
}

.brand-logo-footer {
    height: 56px;
    width: 56px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background: white;
    padding: 60px 40px;
    gap: 30px;
    text-align: center;
    justify-content: flex-start;
    z-index: 999;
    overflow-y: auto;
}

.nav-links.mobile-active a {
    font-size: 1.1rem;
}

/* ===========================
   PAGE HEADER (shared)
   =========================== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(184, 53, 154, 0.06);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(184, 53, 154, 0.04);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-top: 10px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('/public/images/hero/home-hero.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 24px;
    font-family: var(--heading-font);
    font-style: italic;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-badge {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-badge-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

/* ===========================
   VIBE / ABOUT TEASER SECTION
   =========================== */
.vibe-section {
    background: white;
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.vibe-content .subtitle {
    margin-bottom: 14px;
}

.vibe-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.vibe-content > p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 32px;
}

.vibe-list {
    list-style: none;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vibe-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 0.95rem;
}

.vibe-list i {
    width: 28px;
    height: 28px;
    background: rgba(255, 0, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.vibe-image {
    position: relative;
}

/* Media frame — applies to both <img> and the autoplaying <video>. The
   inner ring + soft gradient overlay keep videos from looking like a
   raw player. */
.vibe-image .vibe-media-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;          /* portrait-leaning, like the original 600px crop */
    max-height: 640px;
    background: #111;             /* prevents flash of white before video loads */
}

.vibe-image .vibe-media-frame > img,
.vibe-image .vibe-media-frame > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;       /* match the frame, not the old hardcoded 12px */
}

/* Subtle vignette + inner highlight ring so the video reads as a framed asset */
.vibe-image .vibe-media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        inset 0 -80px 120px -40px rgba(0,0,0,0.35);
    pointer-events: none;
}

/* Decorative offset accents — keep the existing aesthetic */
.vibe-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--primary);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.4;
}

.vibe-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: rgba(255, 0, 166, 0.04);
    border-radius: 14px;
    z-index: -1;
}

/* Legacy selector kept so any other <img> usage in the vibe block still works */
.vibe-image > img {
    border-radius: 14px;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 640px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Floating "● Live look" pill on the framed video */
.vibe-live-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    z-index: 1;
}

.vibe-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary, #ff00a6);
    box-shadow: 0 0 0 0 rgba(255, 0, 166, 0.55);
    animation: vibe-live-pulse 1.8s ease-out infinite;
}

@keyframes vibe-live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 0, 166, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(255, 0, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 166, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .vibe-live-dot { animation: none; }
}

.vibe-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.vibe-stat h3 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.vibe-stat p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
}

/* ===========================
   TRENDING / LOOK BOOK SECTION
   =========================== */
.trending-section {
    background: #f0f0f0;
}

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

.trending-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trending-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 35px 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}

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

.trending-card:hover .trending-overlay {
    transform: translateY(0);
}

/* Video cards on the homepage trending grid behave like the image cards,
   but use object-fit: cover so the video fills the 500px-tall frame. */
.trending-card video.trending-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trending-card:hover video.trending-video {
    transform: scale(1.08);
}

.trending-video-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 2;
}

.trending-video-badge i {
    font-size: 0.6rem;
}

.trending-overlay h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.trending-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.trending-overlay a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.trending-overlay a:hover {
    gap: 14px;
}

.trending-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===========================
   OFFER / PROMO SECTION
   =========================== */
.offer-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.offer-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.offer-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 28px;
}

.offer-inner h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: white;
    margin-bottom: 20px;
}

.offer-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ===========================
   SHOP TEASER SECTION
   =========================== */
.shop-teaser {
    background: white;
}

.shop-teaser .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.shop-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.product-teaser-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-teaser-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-teaser-card .card-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.product-teaser-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.product-teaser-card .card-body {
    padding: 28px;
    text-align: center;
}

.product-teaser-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.product-teaser-card p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ===========================
   BLOG TEASER SECTION
   =========================== */
.blog-teaser {
    background: var(--secondary);
    color: white;
}

.blog-teaser .section-header h2 {
    color: white;
}

.blog-teaser .section-header p {
    color: rgba(255,255,255,0.55);
}

.blog-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.blog-teaser-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 50px 40px;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-teaser-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(6px);
}

.blog-teaser-card .post-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
}

.blog-teaser-card h3 {
    font-size: 1.7rem;
    color: white;
    line-height: 1.25;
}

.blog-teaser-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.blog-teaser-card .link-btn {
    margin-top: 8px;
}

/* ===========================
   GALLERY GRID
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.35s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 6px;
}

.gallery-overlay .gallery-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.gallery-overlay a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 20px;
    border-radius: 4px;
    width: fit-content;
    transition: all 0.3s;
}

.gallery-overlay a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-open-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
}

.gallery-item:hover .gallery-open-btn {
    opacity: 1;
}

.gallery-open-btn:hover {
    background: var(--primary) !important;
}

/* ===========================
   LIGHTBOX / MODAL
   =========================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    object-fit: contain;
    display: block;
    transition: opacity 0.3s;
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.8);
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 6px;
}

.lightbox-caption p {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: background 0.3s;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10001;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: #0d0d0d;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand .brand-name {
    color: white;
    font-size: 1.4rem;
}

.footer-brand p {
    margin: 20px 0 28px;
    color: #666;
    line-height: 1.8;
    font-size: 0.9rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 28px;
    font-size: 1.1rem;
    color: white;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

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

.footer-contact p {
    margin-bottom: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
}

.footer-contact p i {
    color: var(--primary);
    width: 16px;
}

.footer-contact .btn-whatsapp {
    margin-top: 24px;
    font-size: 0.8rem;
    padding: 14px 28px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-size: 0.8rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   SHOP PAGE
   =========================== */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 10px 28px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50px;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 36px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-img {
    height: 340px;
    position: relative;
    overflow: hidden;
}

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

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

/* ── Service card video (hover-to-play poster overlay) ──
   The <img> stays in the DOM as a fallback poster; the <video>
   sits absolutely positioned on top and fades in on hover (or
   on visibility-via-IntersectionObserver for touch devices). */
.product-img .product-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: #000;
}

.product-card:hover .product-img .product-card-video,
.product-img .product-card-video.is-playing {
    opacity: 1;
}

/* ── Service-detail and gallery video elements ── */
.pd-slide video,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-slide video {
    max-height: 600px;
    background: #000;
}

/* Small play-indicator badge in the corner of a video gallery item */
.gallery-video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border-radius: 50px;
    padding: 4px 10px 4px 8px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}

/* Lightbox video (sits next to <img> in the same wrap) */
.lightbox-img-wrap video {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    object-fit: contain;
    display: block;
    background: #000;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 28px;
    text-align: center;
}

.product-category {
    font-size: 0.72rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1.5px solid #25D366;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-link:hover {
    background: #25D366;
    color: white;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 100px;
}

.badge {
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.badge i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

.badge h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.badge p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
}

/* ===========================
   BLOG PAGE
   =========================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.blog-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.post-card-img {
    height: 260px;
    overflow: hidden;
}

.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
}

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

.post-card-content {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.post-card-category {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    background: rgba(255, 0, 166, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

.post-card-date {
    font-size: 0.78rem;
    color: #aaa;
}

.post-card-content h3 {
    font-size: 1.55rem;
    margin-bottom: 14px;
    line-height: 1.3;
}

.post-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.8;
    flex: 1;
}

.newsletter-section {
    background: var(--secondary);
    padding: 90px 80px;
    border-radius: 16px;
    margin-top: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 166, 0.08);
    border-radius: 50%;
}

.newsletter-section h2,
.newsletter-section .subtitle {
    position: relative;
    z-index: 1;
}

.newsletter-section h2 {
    color: white;
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.newsletter-section > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 22px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    color: white;
    font-family: var(--body-font);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

/* ===========================
   BLOG DETAIL PAGE
   =========================== */
.blog-post-header {
    padding: 180px 0 80px;
    background: var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 0, 166, 0.05);
}

.post-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.post-meta-category {
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-meta-date {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.blog-post-header .lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.featured-image-container {
    max-width: 1000px;
    margin: -60px auto 80px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.featured-image-container img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.post-article-content {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 100px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.post-article-content h3 {
    margin: 50px 0 20px;
    font-size: 2rem;
    color: var(--secondary);
    line-height: 1.25;
}

.post-article-content p {
    margin-bottom: 26px;
}

.post-article-content strong {
    color: var(--secondary);
}

.share-section {
    border-top: 1px solid #e8e8e8;
    padding-top: 50px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.share-section span {
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.share-section .social-links a {
    background: #f5f5f5;
    color: var(--text-dark);
    border-color: #f5f5f5;
}

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

.article-cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 50px 60px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.article-cta-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 0, 166, 0.08);
    border-radius: 50%;
}

.article-cta-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.article-cta-box p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.mission-section {
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.mission-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 28px;
}

.mission-text p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 22px;
}

.mission-image {
    position: relative;
}

.mission-image img {
    border-radius: 12px;
    width: 100%;
    height: 580px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 65%;
    height: 65%;
    border: 2px solid var(--primary);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.5;
}

.values-section {
    background: #f6f6f6;
}

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

.value-card {
    background: white;
    padding: 50px 36px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.value-card .icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(255, 0, 166, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.value-card i {
    font-size: 1.8rem;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
}

.location-section {
    background: var(--secondary);
    color: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 22px;
    color: white;
}

.location-info > p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 36px;
    font-size: 0.97rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.contact-details p i {
    color: var(--primary);
    width: 18px;
    flex-shrink: 0;
}

.map-placeholder {
    height: 440px;
    background: #1e1e1e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 3.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 36px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.contact-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 166, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card i {
    font-size: 1.4rem;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    color: #777;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-wa-block {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    padding: 36px 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.contact-wa-block i {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

.contact-wa-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.contact-wa-block p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 22px;
}

.contact-wa-block a {
    display: inline-block;
    background: white;
    color: #25D366;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-wa-block a:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.contact-form-wrap {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrap h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid #e8e8e8;
    border-radius: 6px;
    font-family: var(--body-font);
    font-size: 0.92rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    color: var(--text-dark);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 166, 0.1);
    background: white;
}

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

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* Tablet Large: 1100px */
@media (max-width: 1100px) {
    .container {
        padding: 0 30px;
    }

    .vibe-grid {
        gap: 60px;
    }

    .footer-grid {
        gap: 50px;
    }

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

/* Tablet: 992px */
@media (max-width: 992px) {
    .section-padding {
        padding: 90px 0;
    }

    .vibe-grid,
    .mission-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vibe-image > img,
    .mission-image img {
        height: 480px;
    }

    .vibe-image .vibe-media-frame {
        max-height: 520px;
    }

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

    .trending-card {
        height: 420px;
    }

    .shop-teaser-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .trust-badges {
        grid-template-columns: 1fr 1fr;
    }

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

    .contact-form-wrap {
        padding: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .shop-teaser .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero-btns {
        flex-direction: column;
        gap: 14px;
    }

    .hero-badge {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-badge-divider {
        display: none;
    }

    .vibe-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vibe-image > img {
        height: 380px;
    }

    .vibe-image .vibe-media-frame {
        aspect-ratio: 16 / 11;
        max-height: 420px;
    }

    .vibe-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .vibe-stat h3 {
        font-size: 1.8rem;
    }

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

    .trending-card {
        height: 360px;
    }

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

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

    .blog-teaser-card {
        padding: 36px 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

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

    .trust-badges {
        grid-template-columns: 1fr;
    }

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

    .newsletter-section {
        padding: 60px 30px;
    }

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

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

    .featured-image-container img {
        height: 300px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .mission-image img {
        height: 320px;
    }

    .page-header {
        padding: 140px 0 80px;
    }

    .offer-inner {
        padding: 0 10px;
    }
}

/* Mobile Small: 480px */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .vibe-stats {
        grid-template-columns: 1fr 1fr;
    }

    .vibe-stat:last-child {
        grid-column: 1 / -1;
    }

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

    .article-cta-box {
        padding: 40px 24px;
    }
}

/* ===========================
   PRODUCT DETAIL
   =========================== */
.pd-section {
    padding: 140px 0 80px;
    background: #fff;
}
.pd-breadcrumb {
    margin-bottom: 24px;
    font-size: 0.85rem;
}
.pd-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.pd-breadcrumb a:hover { text-decoration: underline; }
.pd-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}
.pd-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f7f7;
}
.pd-carousel { position: relative; }
.pd-slide img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    display: block;
}
.pd-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}
.pd-thumbs {
    display: flex;
    gap: 10px;
    padding: 14px;
    flex-wrap: wrap;
    background: #fafafa;
}
.pd-thumb {
    width: 64px;
    height: 64px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
}
.pd-thumb.active { border-color: var(--primary); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-badge { top: 16px; left: 16px; }
.pd-info h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 8px 0 12px;
    line-height: 1.15;
}
.pd-info .product-category { margin-bottom: 6px; }
.pd-price {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin: 6px 0 14px;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
}
.pd-stock {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.pd-stock-in   { background: rgba(37, 211, 102, 0.12); color: #1a9c4a; }
.pd-stock-low  { background: rgba(212, 175, 55, 0.18); color: #8a6b00; }
.pd-stock-out  { background: rgba(220, 53, 69, 0.12);  color: #b02a37; }
.pd-short {
    color: #555;
    line-height: 1.7;
    margin: 12px 0 22px;
    font-size: 1rem;
}
.pd-cart-row {
    display: flex;
    gap: 14px;
    align-items: stretch;
    margin: 14px 0 18px;
    flex-wrap: wrap;
}
.pd-qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}
.pd-qty-btn {
    background: #fff;
    border: none;
    width: 42px;
    height: 46px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    transition: background 0.2s;
}
.pd-qty-btn:hover { background: #f3f3f3; }
.pd-qty input {
    width: 56px;
    height: 46px;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    font-size: 1rem;
    font-family: var(--body-font);
    background: #fff;
    -moz-appearance: textfield;
}
.pd-qty input::-webkit-outer-spin-button,
.pd-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.pd-add-btn {
    flex: 1;
    min-width: 200px;
    border: 2px solid var(--primary);
}
.pd-add-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.pd-wa {
    display: inline-flex;
    margin-top: 4px;
}
.pd-consult-btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
    padding: 13px 22px;
    font-size: 0.82rem;
}
@media (max-width: 560px) {
    .pd-cart-row { flex-direction: column; }
    .pd-cart-row .pd-qty,
    .pd-cart-row .pd-add-btn,
    .pd-cart-row .pd-consult-btn { width: 100%; min-width: 0; }
}
.pd-meta {
    margin-top: 16px;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.pd-description {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    max-width: 820px;
}
.pd-description h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
}
.pd-body {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pd-section { padding: 120px 0 60px; }
    .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .pd-slide img { max-height: 420px; }
}

/* ===========================
   SERVICES PAGE
   =========================== */
.service-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.14);
    color: #8a6b00;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}
.service-duration i { font-size: 0.8rem; }

.service-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.service-duration-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.16);
    color: #8a6b00;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.service-duration-chip i { font-size: 0.85rem; }

.service-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.service-book-btn { flex: 1; min-width: 220px; justify-content: center; }
.service-back-btn { min-width: 180px; justify-content: center; }

.service-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.service-list-block h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--secondary, #1A1A1A);
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-list li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}
.service-addons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.service-addon-name {
    color: #444;
    font-size: 0.95rem;
}
.service-addon-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Sticky mobile CTA on service detail */
.service-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid #eee;
    z-index: 50;
}

/* Homepage services overview tweaks for dynamic cards */
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 60px;
}
.services-home-cta {
    text-align: center;
    margin-top: 50px;
}
.value-card a.value-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.value-card a.value-card-link:hover h3 { color: var(--primary); }

@media (max-width: 768px) {
    .service-sticky-cta { display: block; }
    .service-cta-row .service-book-btn,
    .service-cta-row .service-back-btn { flex: 1 1 100%; }
    .service-extras { margin-top: 40px; padding-top: 30px; gap: 24px; }
}
@media (min-width: 769px) and (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* ===========================
   PRODUCT CARD: card-body link + cart button
   =========================== */
.product-card-body {
    display: block;
    color: inherit;
    text-decoration: none;
}
.product-card-body:hover h3 { color: var(--primary); }
.product-price {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}

/* ===========================
   PRODUCT RATING (cards + detail page)
   =========================== */
.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.product-rating .stars { color: #F4B400; letter-spacing: 1px; }
.product-rating .count { color: var(--text-muted, #888); font-size: 0.8rem; }

.pd-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin: 8px 0 16px;
}
.pd-rating .stars { color: #F4B400; font-size: 1.1rem; letter-spacing: 2px; }
.pd-rating .count { color: var(--text-muted, #888); }
.pd-rating .count.link { text-decoration: underline; cursor: pointer; }
.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.product-actions .whatsapp-link { padding: 10px 18px; font-size: 0.78rem; }
.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: 1.5px solid var(--primary);
    padding: 11px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    text-decoration: none;
}
.btn-cart:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-cart:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ===========================
   NAV CART ICON
   =========================== */
.nav-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--secondary, #1A1A1A);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-cart-link:hover {
    background: rgba(184, 53, 154, 0.08);
    color: var(--primary);
}
.nav-cart-link i { font-size: 1.05rem; }
.nav-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* ===========================
   CART PAGE
   =========================== */
.cart-section {
    padding: 140px 0 80px;
    background: #fff;
    min-height: 60vh;
}
.cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 48px;
    align-items: start;
    margin-top: 30px;
}
.cart-lines { display: flex; flex-direction: column; gap: 16px; }
.cart-line {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}
.cart-line-img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    flex-shrink: 0;
}
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-line-body h4 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
}
.cart-line-body a { color: inherit; text-decoration: none; }
.cart-line-body a:hover { color: var(--primary); }
.cart-line-price { font-weight: 600; color: var(--primary); font-size: 0.95rem; }
.cart-line-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.cart-line-remove {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px 8px;
    transition: color 0.2s;
}
.cart-line-remove:hover { color: var(--primary); }
.cart-summary {
    position: sticky;
    top: 110px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 28px;
}
.cart-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
}
.cart-summary-row.total {
    border-top: 1px solid #e5e5e5;
    margin-top: 10px;
    padding-top: 16px;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 1.15rem;
}
.cart-summary .btn { width: 100%; margin-top: 16px; justify-content: center; }
.cart-summary .btn[disabled] {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    color: #fff;
}
.cart-empty {
    text-align: center;
    padding: 80px 20px;
}
.cart-empty i {
    font-size: 4rem;
    color: #ddd;
    display: block;
    margin-bottom: 20px;
}
.cart-empty h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 2rem;
    margin-bottom: 12px;
}
.cart-empty p { color: #888; margin-bottom: 28px; }

@media (max-width: 900px) {
    .cart-grid { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}
@media (max-width: 560px) {
    .cart-line { grid-template-columns: 72px 1fr; }
    .cart-line-img { width: 72px; height: 72px; }
    .cart-line-actions { grid-column: 1 / -1; }
}

/* ===========================
   BOOKING POLICY BANNER
   Shared between homepage + services page.
   =========================== */
.booking-policy-banner {
    padding: 28px 0;
    background: #fff;
}
.services-content .booking-policy-banner,
.booking-policy-banner.inline {
    padding: 0 0 40px;
    background: transparent;
}
.booking-policy-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(184, 53, 154, 0.06);
    border: 1px solid rgba(184, 53, 154, 0.18);
    border-radius: 12px;
    padding: 18px 26px;
}
.booking-policy-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark, #8B2080);
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 540px;
}
.booking-policy-item i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}
.booking-policy-item strong { color: var(--primary-dark, #8B2080); }
.booking-policy-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(184, 53, 154, 0.2);
}
@media (max-width: 720px) {
    .booking-policy-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px; }
    .booking-policy-divider { width: 100%; height: 1px; }
    .booking-policy-item { font-size: 0.88rem; }
}

/* Compact, always-visible note panel on service-detail */
.service-policy-note {
    margin: 18px 0 6px;
    padding: 14px 16px;
    background: rgba(184, 53, 154, 0.06);
    border: 1px solid rgba(184, 53, 154, 0.18);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--primary-dark, #8B2080);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.service-policy-note i {
    font-size: 1rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===========================
   DUAL-CTA BUTTON ROW
   (Book Now + Consult with Us on product/service cards + detail pages)
   =========================== */
.cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cta-row > * { flex: 1 1 0; min-width: 140px; justify-content: center; }
@media (max-width: 560px) {
    .cta-row { flex-direction: column; gap: 8px; }
    .cta-row > * { flex: 1 1 100%; width: 100%; }
}

/* Sticky service-detail dual CTA on mobile */
.service-sticky-cta .cta-row { gap: 8px; }
.service-sticky-cta .cta-row > * { font-size: 0.78rem; padding: 12px 10px; }

