/*
Theme Name: ToothFairyCaughtOnCamera
Theme URI: https://toothfairycaughtoncamera.com
Author: Seasonal Video
Author URI: https://toothfairycaughtoncamera.com
Description: A magical fairy-themed WordPress theme for personalized Tooth Fairy video service.
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: toothfairy-theme
Tags: custom-background, custom-logo, custom-menu, featured-images
*/

/* ==========================================================================
   Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
    --font-fairy: 'Berkshire Swash', cursive;
    --font-body: 'Lora', serif;

    --color-pink-50: #fdf2f8;
    --color-pink-100: #fce7f3;
    --color-pink-200: #fbcfe8;
    --color-pink-300: #f9a8d4;
    --color-pink-400: #f472b6;
    --color-pink-500: #ec4899;
    --color-pink-600: #db2777;

    --color-rose-800: #9f1239;

    --color-yellow-50: #fefce8;
    --color-yellow-100: #fef9c3;
    --color-yellow-200: #fef08a;
    --color-yellow-300: #fde047;
    --color-yellow-900: #713f12;

    --color-bg: #fce7f3;
}

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

html {
    overflow-x: clip;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: #831843;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

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

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   Magic Background
   ========================================================================== */
.magic-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(to bottom right, #fce7f3, #fbcfe8, #fce7f3);
}

.magic-bg__glow {
    position: absolute;
    border-radius: 100%;
}

.magic-bg__glow--1 {
    top: -20%;
    left: -10%;
    width: 70%;
    height: 60%;
    background: rgba(255, 255, 255, 0.6);
    filter: blur(100px);
    transform: rotate(-12deg);
}

.magic-bg__glow--2 {
    top: 10%;
    right: -20%;
    width: 80%;
    height: 70%;
    background: rgba(254, 240, 138, 0.6);
    filter: blur(120px);
    transform: rotate(12deg);
}

.magic-bg__glow--3 {
    top: 40%;
    left: -20%;
    width: 60%;
    height: 50%;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(90px);
    transform: rotate(45deg);
}

.magic-bg__glow--4 {
    bottom: 10%;
    right: -10%;
    width: 70%;
    height: 60%;
    background: rgba(253, 224, 71, 0.4);
    filter: blur(100px);
    transform: rotate(-15deg);
}

.magic-bg__glow--5 {
    bottom: -20%;
    left: 10%;
    width: 80%;
    height: 50%;
    background: rgba(255, 255, 255, 0.6);
    filter: blur(110px);
    transform: rotate(6deg);
}

/* Magic Powder / Noise */
.magic-bg__noise {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    mix-blend-mode: color-dodge;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Swirl Lines */
.magic-bg__swirls {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

/* Sparkle Particles */
.sparkle {
    position: absolute;
    animation: twinkle 3s infinite ease-in-out;
}

.sparkle svg {
    display: block;
}

.sparkle--1 { top: 15%; left: 15%; color: white; opacity: 0.8; animation-delay: 0s; }
.sparkle--2 { top: 25%; right: 25%; color: #fefce8; opacity: 0.9; animation-delay: 1s; }
.sparkle--3 { top: 45%; left: 30%; color: white; opacity: 0.7; animation-delay: 0.5s; }
.sparkle--4 { bottom: 35%; right: 20%; color: #fefce8; opacity: 0.8; animation-delay: 1.5s; }
.sparkle--5 { bottom: 15%; left: 25%; color: white; opacity: 0.9; animation-delay: 2s; }
.sparkle--6 { top: 60%; right: 10%; color: #fefce8; opacity: 0.7; animation-delay: 0.8s; }
.sparkle--7 { top: 10%; right: 40%; color: white; opacity: 0.8; animation-delay: 1.2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Sparkle icon (inline SVG replacement for Lucide Sparkles) */
.sparkle-icon {
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================================
   Sticky Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(255, 192, 203, 0.2);
}

/* WordPress Admin Bar offset */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.header__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header__inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header__inner {
        padding: 1rem 2rem;
    }
}

/* Logo Area */
.header__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.header__logo-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__logo-fairy {
    font-size: 1.75rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .header__logo-fairy {
        font-size: 2.25rem;
    }
}

.header__logo-title {
    font-family: var(--font-fairy);
    font-size: 2rem;
    color: var(--color-pink-500);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .header__logo-title {
        font-size: 2.25rem;
    }
}

.header__logo-subtitle {
    font-family: var(--font-fairy);
    font-size: 1.125rem;
    color: rgba(244, 114, 182, 0.9);
    line-height: 1;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .header__logo-subtitle {
        font-size: 1.25rem;
    }
}

.header__logo-subtitle .tld {
    font-size: 0.875rem;
}

/* Mobile Burger */
.header__mobile-toggle {
    display: flex;
}

@media (min-width: 768px) {
    .header__mobile-toggle {
        display: none;
    }
}

.header__burger {
    color: var(--color-pink-600);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.4);
    transition: background 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__burger:hover {
    background: rgba(255, 255, 255, 0.8);
}

.header__burger svg {
    width: 24px;
    height: 24px;
}

/* Desktop Menu */
.header__nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-fairy);
    font-size: 1.125rem;
    color: var(--color-rose-800);
}

@media (min-width: 768px) {
    .header__nav {
        display: flex;
    }
}

/* Desktop: top-level menu list */
.header__nav .header__menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop: all menu items */
.header__nav li {
    list-style: none;
    position: relative;
}

/* Desktop: hide submenu toggle buttons (they're for mobile only) */
.header__nav .submenu-toggle {
    display: none;
}

.header__nav a {
    transition: color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.header__nav a:hover {
    color: var(--color-pink-500);
    transform: scale(1.05);
}

/* Desktop: level-1 dropdown */
.header__nav li > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(190, 100, 150, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 100;
}

.header__nav li:hover > .sub-menu {
    display: block;
}

.header__nav .sub-menu li {
    display: block;
}

.header__nav .sub-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    color: var(--color-rose-800);
}

.header__nav .sub-menu a:hover {
    background: rgba(244, 114, 182, 0.1);
    transform: none;
}

/* Desktop: level-2 dropdown (grandchild) */
.header__nav .sub-menu .sub-menu {
    top: -0.5rem;
    left: 100%;
    transform: none;
}

/* CTA button */
.header__nav .nav-cta {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to bottom, var(--color-yellow-100), var(--color-yellow-300));
    color: var(--color-yellow-900);
    border-radius: 9999px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.4);
    border: 1px solid var(--color-yellow-200);
    transition: transform 0.25s ease;
}

.header__nav .nav-cta:hover {
    transform: scale(1.05);
    color: var(--color-yellow-900);
}

/* =============================================
   Mobile Menu
   ============================================= */
.header__mobile-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    font-family: var(--font-fairy);
    font-size: 1.25rem;
    color: var(--color-rose-800);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header__mobile-nav.is-open {
    display: flex;
}

@media (min-width: 768px) {
    .header__mobile-nav {
        display: none !important;
    }
}

/* Mobile: menu list reset */
.header__mobile-nav .header__mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile: menu items */
.header__mobile-nav li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header__mobile-nav li:last-child {
    border-bottom: none;
}

/* Mobile: top-level links + toggle row */
.header__mobile-nav .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
}

.header__mobile-nav .menu-item-has-children > a {
    flex: 1;
}

/* Mobile: link styles */
.header__mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    transition: color 0.2s ease;
}

.header__mobile-nav a:hover {
    color: var(--color-pink-500);
}

/* Mobile: submenu toggle button */
.header__mobile-nav .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: none;
    border: none;
    color: var(--color-pink-400);
    cursor: pointer;
    transition: transform 0.25s ease;
    padding: 0;
}

.header__mobile-nav .submenu-toggle svg {
    transition: transform 0.25s ease;
}

.header__mobile-nav .submenu-open > .submenu-toggle svg {
    transform: rotate(180deg);
}

/* Mobile: sub-menu (hidden by default, accordion) */
.header__mobile-nav .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 0.5rem;
    width: 100%;
}

.header__mobile-nav .submenu-open > .sub-menu {
    display: block;
}

.header__mobile-nav .sub-menu a {
    padding: 0.5rem 0 0.5rem 1.25rem;
    font-size: 1.1rem;
    color: rgba(131, 24, 67, 0.8);
}

/* Mobile: level-2 sub-menu (grandchild) */
.header__mobile-nav .sub-menu .sub-menu a {
    padding-left: 2.5rem;
    font-size: 1rem;
    color: rgba(131, 24, 67, 0.65);
}

/* Mobile: CTA */
.header__mobile-nav .nav-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(to bottom, var(--color-yellow-100), var(--color-yellow-300));
    color: var(--color-yellow-900);
    border-radius: 9999px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.4);
    border: 1px solid var(--color-yellow-200);
    margin-top: 1rem;
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1rem;
    width: 100%;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .main-content {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .main-content {
        padding: 2.5rem 2rem;
    }
}

/* ==========================================================================
   Custom Shapes
   ========================================================================== */
.shape-water-drop {
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.shape-water-drop-inner {
    transform: rotate(45deg);
}

.shape-leaf-horizontal {
    border-radius: 24px;
}

@media (min-width: 768px) {
    .shape-leaf-horizontal {
        border-radius: 48px;
    }
}

.shape-leaf-vertical-left {
    border-radius: 24px;
}

.shape-leaf-vertical-center {
    border-radius: 24px;
}

.shape-leaf-vertical-right {
    border-radius: 24px;
}

@media (min-width: 768px) {
    .shape-leaf-vertical-left {
        border-radius: 48px;
    }

    .shape-leaf-vertical-center {
        border-radius: 48px;
    }

    .shape-leaf-vertical-right {
        border-radius: 48px;
    }
}

.shape-cloud {
    border-radius: 24px;
}

@media (min-width: 768px) {
    .shape-cloud {
        border-radius: 100px;
    }
}

/* ==========================================================================
   Glow Effects
   ========================================================================== */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}

.glow-box {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.4);
}

.glow-box-strong {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9), inset 0 0 20px rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.hero__btn-wrap {
    position: relative;
    cursor: pointer;
}

.hero__btn-wrap:hover .hero__wing--left {
    transform: translateY(-50%) rotate(-15deg);
}

.hero__btn-wrap:hover .hero__wing--right {
    transform: translateY(-50%) rotate(15deg);
}

.hero__wing {
    display: none;
    position: absolute;
    top: 50%;
    width: 5rem;
    height: 2.5rem;
    border-radius: 9999px;
    filter: blur(2px);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .hero__wing {
        display: block;
    }
}

.hero__wing--left {
    left: -4rem;
    transform: translateY(-50%) rotate(-12deg);
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), white);
}

.hero__wing--right {
    right: -4rem;
    transform: translateY(-50%) rotate(12deg);
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.9), white);
}

.hero__btn {
    position: relative;
    padding: 0.75rem 2rem;
    background: linear-gradient(to bottom, var(--color-yellow-100), var(--color-yellow-300));
    border-radius: 9999px;
    font-family: var(--font-fairy);
    font-size: 1.5rem;
    color: var(--color-yellow-900);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9), inset 0 0 20px rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-yellow-200);
    transition: transform 0.3s ease;
}

.hero__btn:hover {
    transform: scale(1.05);
}

.hero__sub {
    margin-top: 1rem;
    color: var(--color-rose-800);
    font-family: var(--font-body);
    font-size: 1rem;
    max-width: 28rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 1rem;
}

.hero__tagline {
    margin-top: 1.5rem;
    font-family: var(--font-fairy);
    font-size: 1.25rem;
    color: var(--color-rose-800);
    text-align: center;
}

@media (min-width: 768px) {
    .hero__tagline {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works {
    width: 100%;
    max-width: 56rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: var(--font-body);
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-pink-600);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.how-it-works__container {
    background: linear-gradient(to bottom right, rgba(252, 231, 243, 0.8), rgba(249, 168, 212, 0.6));
    border: 2px solid rgba(249, 168, 212, 0.5);
    padding: 2rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .how-it-works__container {
        flex-direction: row;
        padding: 3rem;
    }
}

.how-it-works__step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works__icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, white, rgba(253, 242, 248, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.how-it-works__icon--img {
    width: auto;
    height: auto;
    background: none;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

.how-it-works__icon--img img {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 16px;
}

.how-it-works__icon svg {
    color: #eab308;
    width: 32px;
    height: 32px;
}

.how-it-works__text {
    font-family: var(--font-fairy);
    font-size: 1.125rem;
    color: var(--color-rose-800);
    text-align: center;
}

/* ==========================================================================
   Video Testimonials Section
   ========================================================================== */
.testimonials {
    width: 100%;
    max-width: 64rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.testimonials__container {
    position: relative;
    overflow: hidden;
}

.testimonials__cloud {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials__cloud {
        flex-direction: row;
    }
}

.testimonials__arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    color: var(--color-pink-500);
    z-index: 20;
    transition: transform 0.25s ease;
}

@media (min-width: 768px) {
    .testimonials__arrow {
        display: flex;
    }
}

.testimonials__arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.testimonials__arrow--left {
    left: 0;
    transform: translateX(-50%) translateY(-50%);
}

.testimonials__arrow--left:hover {
    transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.testimonials__arrow--right {
    right: 0;
    transform: translateX(50%) translateY(-50%);
}

.testimonials__arrow--right:hover {
    transform: translateX(50%) translateY(-50%) scale(1.1);
}

.testimonials__arrow-wing {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    filter: blur(1px);
}

.testimonials__arrow--left .testimonials__arrow-wing {
    left: -1.5rem;
    transform: translateY(-50%) rotate(-12deg);
}

.testimonials__arrow--right .testimonials__arrow-wing {
    right: -1.5rem;
    transform: translateY(-50%) rotate(12deg);
}

.testimonials__arrow svg {
    width: 24px;
    height: 24px;
}

/* Video Card */
.video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .video-card {
        width: 33.333%;
    }
}

.video-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.video-card__thumb:hover img {
    opacity: 1;
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(136, 19, 55, 0.2);
    transition: background 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__thumb:hover .video-card__overlay {
    background: rgba(136, 19, 55, 0.1);
}

.video-card__play {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.25s ease;
}

.video-card__thumb:hover .video-card__play {
    transform: scale(1.1);
}

.video-card__play svg {
    width: 24px;
    height: 24px;
    color: white;
    fill: white;
    margin-left: 2px;
}

/* Camera corners */
.video-card__corner {
    position: absolute;
    width: 1rem;
    height: 1rem;
}

.video-card__corner--tl {
    top: 0.5rem;
    left: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-left: 2px solid rgba(255, 255, 255, 0.8);
}

.video-card__corner--tr {
    top: 0.5rem;
    right: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-right: 2px solid rgba(255, 255, 255, 0.8);
}

.video-card__corner--bl {
    bottom: 0.5rem;
    left: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    border-left: 2px solid rgba(255, 255, 255, 0.8);
}

.video-card__corner--br {
    bottom: 0.5rem;
    right: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    border-right: 2px solid rgba(255, 255, 255, 0.8);
}

.video-card__title {
    margin-top: 0.75rem;
    font-family: var(--font-fairy);
    font-size: 1.25rem;
    color: var(--color-rose-800);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    width: 100%;
    max-width: 64rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.pricing__grid--single {
    justify-content: center;
    max-width: 26rem;
    margin: 0 auto;
}

.pricing__grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing__grid {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .pricing__grid {
        gap: 2rem;
    }
}

.pricing__card {
    flex: 1;
    background: linear-gradient(to bottom, rgba(252, 231, 243, 0.9), rgba(251, 207, 232, 0.8));
    border: 2px solid rgba(249, 168, 212, 0.5);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
}

@media (min-width: 768px) {
    .pricing__card--featured {
        margin-top: -1rem;
        margin-bottom: 1rem;
        z-index: 10;
    }
}

.pricing__card-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pink-600);
    margin-bottom: 1rem;
}

.pricing__features {
    color: rgba(159, 18, 57, 0.9);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-weight: 500;
}

.pricing__features li {
    margin-bottom: 0.5rem;
}

.pricing__features li::before {
    content: "- ";
}

.pricing__price {
    font-family: var(--font-fairy);
    font-size: 2.25rem;
    color: var(--color-pink-600);
    margin-bottom: 1.5rem;
}

.pricing__btn {
    position: relative;
}

.pricing__btn-shape {
    width: 8rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--color-yellow-100), var(--color-yellow-200));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(253, 224, 71, 0.6);
    transition: transform 0.25s ease;
}

.pricing__btn:hover .pricing__btn-shape {
    transform: scale(1.05) rotate(-45deg);
}

.pricing__btn-text {
    font-family: var(--font-fairy);
    font-size: 1.125rem;
    color: var(--color-yellow-900);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    width: 100%;
    max-width: 72rem;
    margin: auto auto 0;
    position: relative;
    z-index: 10;
    padding: 0 1rem 2rem;
}

.footer__inner {
    background: linear-gradient(to right, rgba(251, 207, 232, 0.8), rgba(252, 231, 243, 0.8), rgba(249, 168, 212, 0.8));
    border: 1px solid rgba(249, 168, 212, 0.5);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        padding: 2rem;
    }
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--font-fairy);
    font-size: 1.125rem;
    color: var(--color-rose-800);
}

.footer__links a:hover {
    color: var(--color-pink-600);
}

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

@media (min-width: 768px) {
    .footer__newsletter {
        align-items: flex-end;
    }
}

.footer__newsletter-label {
    font-family: var(--font-fairy);
    font-size: 1.25rem;
    color: var(--color-rose-800);
}

.footer__newsletter-form {
    display: flex;
    width: 100%;
    max-width: 24rem;
}

.footer__newsletter-input {
    flex-grow: 1;
    padding: 0.5rem 1rem;
    border-radius: 9999px 0 0 9999px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-rose-800);
    font-family: var(--font-body);
}

.footer__newsletter-input::placeholder {
    color: rgba(159, 18, 57, 0.5);
}

.footer__newsletter-input:focus {
    box-shadow: 0 0 0 2px var(--color-pink-400);
}

.footer__newsletter-btn {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to bottom, var(--color-yellow-100), var(--color-yellow-200));
    border-radius: 0 9999px 9999px 0;
    font-family: var(--font-fairy);
    color: var(--color-yellow-900);
    border-left: 1px solid var(--color-pink-200);
    transition: background 0.25s ease;
}

.footer__newsletter-btn:hover {
    background: linear-gradient(to bottom, var(--color-yellow-200), var(--color-yellow-300));
}

.footer__copyright {
    text-align: center;
    width: 100%;
    font-size: 0.875rem;
    color: var(--color-rose-800);
    margin-top: 1rem;
    opacity: 0.7;
}

/* ==========================================================================
   WordPress Page Content
   ========================================================================== */
.page-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.page-content h1 {
    font-family: var(--font-fairy);
    color: var(--color-pink-600);
    margin-bottom: 1rem;
}

.page-content h2, .page-content h3 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-pink-500);
    margin: 1.5rem 0 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
}

.page-content a {
    color: var(--color-pink-600);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--color-pink-500);
}

/* ==========================================================================
   What You Get Section
   ========================================================================== */
.what-you-get {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.what-you-get__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .what-you-get__grid {
        flex-direction: row;
        align-items: stretch;
    }
}

.what-you-get__card {
    flex: 1;
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.what-you-get__card--featured {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.03);
}

.what-you-get__icon {
    font-size: 2.5rem;
}

.what-you-get__title {
    font-family: var(--font-fairy);
    font-size: 1.25rem;
    color: var(--color-pink-600);
}

.what-you-get__desc {
    font-family: var(--font-body);
    color: var(--color-rose-800);
    font-size: 0.95rem;
    line-height: 1.6;
}

.what-you-get__badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    background: var(--color-pink-100);
    color: var(--color-pink-600);
    border: 1px solid var(--color-pink-200);
}

.what-you-get__badge--paid {
    background: var(--color-yellow-100);
    color: var(--color-yellow-900);
    border-color: var(--color-yellow-200);
}

/* ==========================================================================
   Free Image Form
   ========================================================================== */
.free-image {
    width: 100%;
    max-width: 36rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.free-image__card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 48px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
}

.free-image__intro {
    color: var(--color-rose-800);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.free-image__form {
    max-width: 24rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.free-image__label {
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-rose-800);
    margin-bottom: 0.375rem;
}

.free-image__file-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(249, 168, 212, 0.4);
    border-radius: 12px;
    cursor: pointer;
    color: var(--color-rose-800);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.free-image__file-label.has-file {
    border-color: var(--color-pink-500);
}

.free-image__input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(249, 168, 212, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-rose-800);
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.free-image__input:focus {
    outline: none;
    border-color: var(--color-pink-500);
}

.free-image__input::placeholder {
    color: rgba(159, 18, 57, 0.4);
}

.free-image__submit {
    padding: 0.875rem 2rem;
    background: linear-gradient(to bottom, var(--color-yellow-100), var(--color-yellow-300));
    border-radius: 9999px;
    font-family: var(--font-fairy);
    font-size: 1.25rem;
    color: var(--color-yellow-900);
    border: 1px solid var(--color-yellow-200);
    cursor: pointer;
    transition: transform 0.25s ease;
    margin-top: 0.5rem;
}

.free-image__submit:hover {
    transform: scale(1.05);
}

.free-image__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.free-image__msg {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: center;
}

.free-image__msg--error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.free-image__msg--rate-limit {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.free-image__loading {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    color: var(--color-rose-800);
}

.free-image__spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid rgba(249, 168, 212, 0.3);
    border-top-color: var(--color-pink-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.free-image__result {
    display: none;
    padding: 1rem 0;
}

.free-image__result h3 {
    font-family: var(--font-fairy);
    color: var(--color-pink-600);
    margin-bottom: 0.5rem;
}

.free-image__result p {
    color: var(--color-rose-800);
    margin-bottom: 1rem;
}

.free-image__upsell {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(249, 168, 212, 0.3);
}
