/* =============================================================
   Dulce & Bobba — Homepage Stylesheet
   Matches the Sweeny Home 3 design exactly.
   ============================================================= */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    --primary: #F017DA;
    --primary-rgb: 240, 23, 218;
    --secondary: #08DBE7;
    --secondary-rgb: 8, 219, 231;
    --tertiary: #fceef1;
    --body-bg: #FCD7D8;
    --body-bg-rgb: 252, 215, 216;
    --body-text: #5c3f45;
    --alt-text: #7d5960;
    --link: #F017DA;
    --link-hover: #08DBE7;
    --border: #fde7eb;
    --white: #ffffff;

    --font-base: 'Outfit', sans-serif;
    --font-heading: 'Rowdies', display;

    --container: 1200px;
    --radius: 24px;
    --transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-bg);
    color: var(--body-text);
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Floating Boba Background */
.boba-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.boba {
    position: absolute;
    bottom: -60px;
    left: var(--left);
    width: var(--size);
    height: var(--size);
    background-color: var(--body-text);
    border-radius: 50%;
    opacity: var(--opacity);
    animation: floatUp var(--duration) linear infinite;
    animation-delay: var(--delay);
    filter: blur(0.5px);
}

.boba:nth-child(even) {
    background-color: var(--primary);
}

.boba:nth-child(3n) {
    background-color: var(--secondary);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.9);
        opacity: 0;
    }

    15% {
        opacity: var(--opacity);
    }

    85% {
        opacity: var(--opacity);
    }

    100% {
        transform: translateY(-110vh) scale(1.1);
        opacity: 0;
    }
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-base);
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--body-text);
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
    text-shadow: 2px 2px 0px #ffffff;
}

h2 {
    font-size: clamp(32px, 4vw, 50px);
    text-shadow: 2px 2px 0px #ffffff;
}

h3 {
    font-size: clamp(24px, 3vw, 34px);
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 30px;
}

/* ── Section Spacing ────────────────────────────────────────── */
.section {
    padding-block: 90px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #b512a4);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 16px rgba(240, 23, 218, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 23, 218, 0.35);
    color: var(--white);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-loyalty {
    background: linear-gradient(135deg, #00F2FE, #4FACFE);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 16px rgba(79, 172, 254, 0.25);
    animation: loyaltyGlow 3s infinite ease-in-out;
}

.btn-loyalty:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.35), 0 0 8px rgba(0, 242, 254, 0.3);
    color: var(--white);
    filter: brightness(1.05);
}

.btn-loyalty:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: var(--white);
    color: var(--body-text);
    border: 2px solid #fcd7d8;
    box-shadow: 0 4px 12px rgba(120, 70, 85, 0.04);
}

.btn-outline:hover {
    background-color: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(240, 23, 218, 0.1);
}

.btn-outline:active {
    transform: translateY(0);
}

#site-header .btn {
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    gap: 8px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#site-header .btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

#site-header .btn:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

#site-header .btn-primary {
    background: linear-gradient(135deg, var(--primary), #b512a4);
    box-shadow: 0 4px 12px rgba(240, 23, 218, 0.2);
}

#site-header .btn-primary:hover {
    box-shadow: 0 6px 18px rgba(240, 23, 218, 0.45);
    filter: brightness(1.1);
}

#site-header .btn-loyalty {
    background: linear-gradient(135deg, #00F2FE, #4FACFE);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.25);
    animation: loyaltyGlow 3s infinite ease-in-out;
}

#site-header .btn-loyalty:hover {
    box-shadow: 0 6px 18px rgba(79, 172, 254, 0.55), 0 0 8px rgba(0, 242, 254, 0.3);
    color: var(--white);
    filter: brightness(1.1);
}

#site-header .btn-loyalty:active {
    transform: translateY(0);
}

@keyframes loyaltyGlow {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(79, 172, 254, 0.25);
    }

    50% {
        box-shadow: 0 6px 20px rgba(79, 172, 254, 0.5), 0 0 10px rgba(0, 242, 254, 0.25);
    }
}

.btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.btn svg {
    flex-shrink: 0;
}

/* ── Scroll-reveal Animation ────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

.reveal.delay-1 {
    transition-delay: 0.15s;
}

.reveal.delay-2 {
    transition-delay: 0.30s;
}

.reveal.delay-3 {
    transition-delay: 0.45s;
}

.reveal.delay-4 {
    transition-delay: 0.60s;
}

/* Hero elements always visible immediately (above fold) */
.hero .reveal {
    opacity: 1;
    transform: none;
    animation: heroSlideIn 0.7s ease forwards;
}

.hero .reveal.from-left {
    animation: heroSlideInLeft 0.7s ease forwards;
}

.hero .reveal.delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.hero .reveal.delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.hero .reveal.delay-3 {
    animation-delay: 0.35s;
    opacity: 0;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes heroSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-block: 24px;
    transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

#site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(120, 70, 85, 0.05);
    padding-block: 14px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 45px;
    width: auto;
}

/* Primary nav */
.header-nav {
    flex: 1;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav a {
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 700;
    color: var(--body-text);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary);
    border-radius: 99px;
    transition: width 0.25s ease;
}

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

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

.header-nav a:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Header icons / CTA */
.header-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

/* Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--body-text);
    border-radius: 99px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
#mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45, 22, 31, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
}

#mobile-menu-overlay.open {
    display: block;
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(185deg, #ffffff 0%, #fff6f7 50%, #ffeef1 100%);
    z-index: 1002;
    padding: 30px 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -10px 0 40px rgba(120, 70, 85, 0.15);
    border-left: 1.5px solid #fde7eb;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#mobile-menu.open {
    right: 0;
}

#mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff3f5;
    border: 1px solid #fde7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--body-text);
    transition: all 0.3s ease;
    z-index: 10;
}

#mobile-menu-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

#mobile-menu-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Header logo inside mobile drawer */
.mobile-menu-header {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.mobile-menu-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(120, 70, 85, 0.05));
}

/* Menu links styling */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    width: 100%;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    font-size: 18px;
    font-family: var(--font-heading);
    color: var(--body-text);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(253, 231, 235, 0.8);
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(120, 70, 85, 0.02);
}

.mobile-menu-links .menu-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--primary);
    background: var(--white);
    border-color: rgba(240, 23, 218, 0.3);
    transform: translateX(4px);
    box-shadow: 0 6px 15px rgba(240, 23, 218, 0.08);
}

.mobile-menu-links a:hover .menu-icon {
    transform: scale(1.2) rotate(8deg);
}

/* Premium gradient CTA button */
.mobile-menu-links a.mobile-menu-cta {
    background: linear-gradient(135deg, var(--primary), #c810b4);
    color: var(--white);
    border: none;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(240, 23, 218, 0.25);
    margin-top: 8px;
}

.mobile-menu-links a.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(240, 23, 218, 0.35);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #d814c2);
}

/* Contact info section inside drawer */
.mobile-contact-info {
    margin-top: 15px;
    padding: 24px 14px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(253, 231, 235, 0.9);
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(120, 70, 85, 0.03);
    position: relative;
    z-index: 2;
}

.mobile-contact-info h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 18px;
    border-bottom: 1.5px dashed rgba(240, 23, 218, 0.15);
    padding-bottom: 8px;
}

.mobile-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--body-text);
}

.mobile-contact-info .contact-item:last-of-type {
    margin-bottom: 0;
}

.mobile-contact-info .contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.mobile-contact-info .contact-item a {
    color: var(--body-text);
    transition: color 0.2s ease;
    line-height: 1.4;
    font-weight: 500;
}

.mobile-contact-info .contact-item a:hover {
    color: var(--primary);
}

.mobile-social-icons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1.5px dashed rgba(240, 23, 218, 0.15);
}

.mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff3f5;
    color: var(--primary);
    border: 1px solid #fde7eb;
    transition: all 0.25s ease;
}

.mobile-social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 12px rgba(var(--primary-rgb), 0.25);
}

/* Floating Boba Background inside the mobile menu drawer */
.drawer-boba-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.drawer-boba {
    position: absolute;
    bottom: -40px;
    left: var(--left);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at 35% 35%, #5c3f45 0%, #3a2528 70%, #1a0e10 100%);
    border-radius: 50%;
    opacity: var(--opacity);
    animation: drawerBobaFloat var(--duration) linear infinite;
    animation-delay: var(--delay);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.4), inset 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.drawer-boba:nth-child(even) {
    background: radial-gradient(circle at 35% 35%, #ff7de5 0%, #F017DA 70%, #850676 100%);
}

@keyframes drawerBobaFloat {
    0% {
        transform: translateY(0) scale(0.9);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity);
    }

    90% {
        opacity: var(--opacity);
    }

    100% {
        transform: translateY(-110vh) scale(1.1);
        opacity: 0;
    }
}

/* ══════════════════════════════════════════════════════════════
   HERO / BANNER
   ══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-top: 100px;
}

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

/* Left: text */
.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(240, 23, 218, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(42px, 5.5vw, 72px);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--body-text);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--alt-text);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 50px;
}

/* Hero decorative icon (small blob) */
.hero-floating-icon {
    position: absolute;
    bottom: 60px;
    left: -20px;
    width: 80px;
    height: 80px;
    fill: var(--primary);
    opacity: 0.15;
    animation: floatBlob 5s ease-in-out infinite;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(8deg);
    }
}

/* Right: images */
.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
}

/* Glowing orb behind the image */
.hero-img-glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(240, 23, 218, 0.22) 0%,
        rgba(8, 219, 231, 0.12) 50%,
        transparent 72%
    );
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1);   opacity: 0.75; }
    50%       { transform: scale(1.1); opacity: 1;    }
}

/* Spinning decorative ring */
.hero-img-ring {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 2.5px dashed rgba(240, 23, 218, 0.25);
    z-index: 0;
    animation: spinRing 18s linear infinite;
    pointer-events: none;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Scattered dot decorations */
.hero-img-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-img-dots span {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.35;
    animation: dotFloat 5s ease-in-out infinite;
}

.hero-img-dots span:nth-child(1) { width: 14px; height: 14px; top: 12%;  left: 8%;  animation-delay: 0s;    background: var(--primary);   }
.hero-img-dots span:nth-child(2) { width: 10px; height: 10px; top: 20%;  right: 6%; animation-delay: 1.2s;  background: var(--secondary); }
.hero-img-dots span:nth-child(3) { width: 18px; height: 18px; bottom: 20%; left: 5%;  animation-delay: 0.7s;  background: var(--secondary); }
.hero-img-dots span:nth-child(4) { width: 8px;  height: 8px;  bottom: 10%; right: 8%; animation-delay: 2s;    background: var(--primary);   }
.hero-img-dots span:nth-child(5) { width: 12px; height: 12px; top: 50%;  right: 2%; animation-delay: 0.4s;  background: var(--primary);   }
.hero-img-dots span:nth-child(6) { width: 9px;  height: 9px;  top: 70%;  left: 12%; animation-delay: 1.6s;  background: var(--secondary); }

@keyframes dotFloat {
    0%, 100% { transform: translateY(0);    }
    50%       { transform: translateY(-10px); }
}

/* ── 4-image collage ─────────────────────────────────────── */
.hero-img-c {
    position: absolute;
    object-fit: contain;
    background: transparent;
    display: block;
}

/* Image 1 — top-left, large, slight CCW tilt */
.hero-img-c1 {
    width: 52%;
    max-width: 280px;
    top: 2%;
    left: 2%;
    z-index: 3;
    filter: drop-shadow(0 16px 30px rgba(240, 23, 218, 0.22)) drop-shadow(0 4px 10px rgba(120,70,85,0.14));
    transform: rotate(-4deg);
    animation: floatC1 6s ease-in-out infinite;
}
@keyframes floatC1 {
    0%,100% { transform: rotate(-4deg) translateY(0);    }
    50%      { transform: rotate(-4deg) translateY(-12px); }
}

/* Image 2 — top-right, medium, CW tilt */
.hero-img-c2 {
    width: 44%;
    max-width: 235px;
    top: 0%;
    right: 0%;
    z-index: 2;
    filter: drop-shadow(0 14px 28px rgba(8, 219, 231, 0.22)) drop-shadow(0 4px 10px rgba(120,70,85,0.12));
    transform: rotate(4deg);
    animation: floatC2 7s ease-in-out infinite 0.8s;
}
@keyframes floatC2 {
    0%,100% { transform: rotate(4deg) translateY(0);    }
    50%      { transform: rotate(4deg) translateY(-10px); }
}

/* Image 3 — bottom-left, small accent, CCW tilt */
.hero-img-c3 {
    width: 42%;
    max-width: 220px;
    bottom: 2%;
    left: 4%;
    z-index: 4;
    filter: drop-shadow(0 12px 24px rgba(240, 23, 218, 0.20)) drop-shadow(0 4px 8px rgba(120,70,85,0.12));
    transform: rotate(-3deg);
    animation: floatC3 5.5s ease-in-out infinite 0.4s;
}
@keyframes floatC3 {
    0%,100% { transform: rotate(-3deg) translateY(0);   }
    50%      { transform: rotate(-3deg) translateY(-8px); }
}

/* Image 4 — bottom-right, large hero, slight CW tilt */
.hero-img-c4 {
    width: 56%;
    max-width: 300px;
    bottom: 0%;
    right: 0%;
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(240, 23, 218, 0.28)) drop-shadow(0 6px 14px rgba(120,70,85,0.16));
    transform: rotate(3deg);
    animation: floatC4 6.5s ease-in-out infinite 1.2s;
}
@keyframes floatC4 {
    0%,100% { transform: rotate(3deg) translateY(0);    }
    50%      { transform: rotate(3deg) translateY(-14px); }
}

/* Wave decoration at the bottom of hero */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL DOWN SECTION  (tea/pastry info strip)
   ══════════════════════════════════════════════════════════════ */
.info-strip {
    background: var(--white);
    padding-block: 80px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(var(--primary-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.info-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-strip-text {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.info-strip-text h2 {
    margin-bottom: 20px;
}

.info-strip-text p {
    font-size: 16px;
    color: var(--alt-text);
    margin-bottom: 30px;
}

.info-strip-decor {
    position: absolute;
    right: 0;
    top: -60px;
    width: 280px;
    opacity: 0.07;
    pointer-events: none;
}

.info-strip-image {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.info-strip-image img {
    border-radius: 50%;
    width: 380px;
    height: 380px;
    object-fit: cover;
    border: 8px solid #fffbfd;
    box-shadow: 0 20px 60px rgba(120, 70, 85, 0.12);
    display: block;
    margin: auto;
}

.info-strip-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--secondary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    text-align: center;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(8, 219, 231, 0.25);
    border: 4px solid #ffffff;
    z-index: 3;
}

.info-strip-badge .num {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: #0b1b1c;
}

.info-strip-badge .label-sm {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b1b1c;
}

/* Local Floating Boba Background in About Section */
.info-strip-boba-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.info-strip-boba {
    position: absolute;
    bottom: -40px;
    left: var(--left);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    opacity: var(--opacity);
    animation: infoBobaFloat var(--duration) linear infinite;
    animation-delay: var(--delay);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.4), inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    background: radial-gradient(circle at 35% 35%, #5c3f45 0%, #3a2528 70%, #1a0e10 100%);
}

.info-strip-boba:nth-child(even) {
    background: radial-gradient(circle at 35% 35%, #ff7de5 0%, #F017DA 70%, #850676 100%);
}

.info-strip-boba:nth-child(3n) {
    background: radial-gradient(circle at 35% 35%, #92f7fd 0%, #08DBE7 70%, #027a81 100%);
}

@keyframes infoBobaFloat {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity);
    }

    90% {
        opacity: var(--opacity);
    }

    100% {
        transform: translateY(-600px) scale(1.1);
        opacity: 0;
    }
}

/* About Highlights Grid */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-block: 30px;
    position: relative;
    z-index: 2;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(253, 231, 235, 0.8);
    padding: 12px 16px;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(120, 70, 85, 0.02);
}

.highlight-item:hover {
    background: var(--white);
    border-color: rgba(240, 23, 218, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 23, 218, 0.08);
}

.highlight-icon {
    font-size: 24px;
    background: #fff3f5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(240, 23, 218, 0.05);
}

.highlight-item:nth-child(even) .highlight-icon {
    background: #e6fbfd;
}

.highlight-info h3 {
    font-size: 14px;
    font-family: var(--font-heading);
    margin: 0 0 2px 0;
    color: var(--body-text);
}

.highlight-info p {
    font-size: 11px;
    color: var(--alt-text);
    margin: 0 !important;
    line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════
   IMAGE BOXES (4-column grid)
   ══════════════════════════════════════════════════════════════ */
.image-boxes {
    background: var(--body-bg);
    padding-block: 0;
}

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

.image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-box:hover img {
    transform: scale(1.08);
}

.image-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(240, 23, 218, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.image-box:hover .image-box-overlay {
    opacity: 1;
}

.image-box-overlay h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ══════════════════════════════════════════════════════════════ */
.products-section {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 14px;
}

.section-header p {
    font-size: 17px;
    color: var(--alt-text);
    max-width: 560px;
    margin-inline: auto;
}

/* Category tabs */
.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.cat-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid #fcd7d8;
    background: var(--white);
    color: var(--body-text);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(120, 70, 85, 0.05);
    transition: all var(--transition);
}

.cat-tab-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
    background: #fff8fa;
}

.cat-tab-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(240, 23, 218, 0.3);
}

.cat-tab-btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* Product grid */
.cat-tab-panel {
    display: none;
}

.cat-tab-panel.active {
    display: block;
}

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

/* Product card */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid #fde7eb;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(120, 70, 85, 0.04);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 16px 32px rgba(240, 23, 218, 0.12);
    border-color: rgba(240, 23, 218, 0.3);
    transform: translateY(-6px);
}

.product-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 4px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff3f5;
    border: 1.5px solid #fde7eb;
    isolation: isolate;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.product-thumb img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-thumb {
    border-color: rgba(240, 23, 218, 0.2);
    background: #fff0f4;
}

.product-card:hover .product-thumb img {
    transform: scale(1.1) rotate(3deg);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.product-details {
    padding: 0;
    width: 100%;
}

.product-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--body-text);
    margin-bottom: 8px;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--primary);
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--body-text);
    margin-bottom: 14px;
}

.product-price .old-price {
    font-size: 13px;
    color: var(--alt-text);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 6px;
}

.product-add-btn {
    width: 100%;
    padding: 10px 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition);
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(240, 23, 218, 0.2);
}

.product-add-btn:hover {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(8, 219, 231, 0.3);
    transform: translateY(-1px);
}

.product-add-btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.products-view-all {
    text-align: center;
    margin-top: 50px;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY / CAROUSEL STRIP
   ══════════════════════════════════════════════════════════════ */
.gallery-section {
    background: var(--body-bg);
    padding-block: 80px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 44px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

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

/* Multi-image carousel strip — show 4 at once on desktop */
@media (min-width: 1024px) {
    .carousel-track {
        gap: 16px;
        /* Show 4 slides simultaneously */
        flex-wrap: nowrap;
    }

    .carousel-slide {
        min-width: calc(25% - 12px);
        flex: 0 0 calc(25% - 12px);
    }

    .carousel-slide img {
        height: 300px;
        border-radius: var(--radius);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-track {
        gap: 16px;
    }

    .carousel-slide {
        min-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
    }

    .carousel-slide img {
        height: 260px;
    }
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════════ */
.newsletter-section {
    background: var(--white);
    padding-block: 90px;
    overflow: hidden;
    position: relative;
}

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

.newsletter-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
}

.newsletter-content h2 {
    margin-bottom: 12px;
}

.newsletter-content .subtitle {
    font-size: 16px;
    color: var(--alt-text);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    border-radius: 50px;
    overflow: visible;
    border: none;
    background: transparent;
    margin-bottom: 16px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1.5px solid #fcd7d8;
    outline: none;
    font-family: var(--font-base);
    font-size: 15px;
    color: var(--body-text);
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(120, 70, 85, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--alt-text);
    opacity: 0.65;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 23, 218, 0.12);
}

.newsletter-form button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), #b512a4);
    color: var(--white);
    border: none;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(240, 23, 218, 0.25);
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 23, 218, 0.35);
}

.newsletter-form button:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.newsletter-privacy {
    font-size: 13px;
    color: var(--alt-text);
    margin-bottom: 28px;
}

.newsletter-success {
    background: rgba(8, 219, 231, 0.08);
    border: 2px dashed var(--secondary);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--body-text);
    margin-bottom: 28px;
    animation: fadeIn 0.5s ease;
}

.newsletter-success h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 22px;
    font-family: var(--font-heading);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-text);
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(240, 23, 218, 0.2);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
    background: var(--body-bg);
    border-top: 1px solid rgba(var(--primary-rgb), 0.15);
    padding-top: 70px;
    padding-bottom: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 55px;
}

.footer-about {
    font-size: 14px;
    color: var(--alt-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-col h5 {
    font-size: 16px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--body-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--alt-text);
    transition: all 0.2s ease;
    display: block;
}

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

/* Contact list */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--alt-text);
}

.contact-list svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list a {
    color: var(--alt-text);
}

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

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(var(--primary-rgb), 0.15);
    padding-block: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--alt-text);
}

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

/* Decorative footer image */
.footer-decor {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    opacity: 0.08;
    pointer-events: none;
}

/* ── Back to top ────────────────────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.35);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--link-hover);
    transform: translateY(-2px);
}

#back-to-top svg {
    fill: currentColor;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    /* Responsive header adjustments to fit loyalty btn */
    .header-nav ul {
        gap: 16px;
    }

    .header-cta {
        gap: 8px;
    }

    .header-cta .btn {
        padding: 7px 14px;
        font-size: 12.5px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-images {
        min-height: 380px;
    }

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

    .hero-desc {
        margin-inline: auto;
    }

    .info-strip-inner {
        grid-template-columns: 1fr;
    }

    .info-strip-image {
        order: -1;
    }

    .info-strip-image img {
        width: 300px;
        height: 300px;
    }

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

    .newsletter-image {
        display: none;
    }

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

    .header-nav {
        display: none;
    }

    #header-cta-btn,
    #header-loyalty-btn {
        display: none !important;
    }

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

    .section {
        padding-block: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-inline: 20px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding-block: 48px;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-grid {
        gap: 32px;
    }

    /* Hero images: center the collage taking 90% of the viewport width */
    .hero-images {
        min-height: 440px;
        width: 90vw;
        max-width: 440px;
        margin: 0 auto;
        position: relative;
    }

    .hero-img-c1 {
        width: 52%;
        max-width: 220px;
        top: 0%;
        left: 0%;
    }

    .hero-img-c2 {
        width: 46%;
        max-width: 190px;
        top: 0%;
        right: 0%;
    }

    .hero-img-c3 {
        width: 46%;
        max-width: 190px;
        bottom: 0%;
        left: 0%;
    }

    .hero-img-c4 {
        width: 55%;
        max-width: 230px;
        bottom: 0%;
        right: 0%;
    }

    /* Scale glow/ring to match larger container */
    .hero-img-glow {
        width: 75vw;
        height: 75vw;
        max-width: 320px;
        max-height: 320px;
    }

    .hero-img-ring {
        width: 85vw;
        height: 85vw;
        max-width: 370px;
        max-height: 370px;
    }

    /* Header: ensure logo is properly centred with hamburger visible */
    .header-inner {
        gap: 12px;
    }

    #site-header {
        padding-block: 16px;
    }

    #header-cta-btn,
    #header-loyalty-btn {
        display: none !important;
    }

    .header-logo img {
        height: 38px;
    }

    /* Info strip image on mobile */
    .info-strip-image img {
        width: 260px;
        height: 260px;
    }

    .info-strip-badge {
        width: 90px;
        height: 90px;
        right: 4px;
        bottom: 4px;
    }

    .info-strip-badge .num {
        font-size: 22px;
    }
}

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

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

    .hero-title {
        font-size: 36px;
    }

    .hero {
        padding-top: 90px;
    }

    /* Even smaller hero image collage — still centered at 90% screen width */
    .hero-images {
        min-height: 100vw;
        width: 90vw;
        max-width: 380px;
    }

    .hero-img-c1 {
        width: 52%;
        max-width: 190px;
    }

    .hero-img-c2 {
        width: 46%;
        max-width: 168px;
    }

    .hero-img-c3 {
        width: 46%;
        max-width: 168px;
    }

    .hero-img-c4 {
        width: 55%;
        max-width: 200px;
    }

    .hero-img-glow {
        width: 75vw;
        height: 75vw;
        max-width: 280px;
        max-height: 280px;
    }

    .hero-img-ring {
        width: 85vw;
        height: 85vw;
        max-width: 320px;
        max-height: 320px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-actions .btn {
        padding: 11px 22px;
        font-size: 14px;
    }

    .cat-tabs {
        gap: 8px;
    }

    .cat-tab-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Prevent iOS Safari from zooming when focusing form fields on phones. */
@media (max-width: 767px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="file"]),
    select,
    textarea {
        font-size: 16px !important;
    }
}

form.is-submitting button[type="submit"],
form.is-submitting input[type="submit"] {
    cursor: wait;
}

button[type="submit"].is-loading,
input[type="submit"].is-loading {
    opacity: 0.72;
    pointer-events: none;
}
