/* ==========================================================================
   GLOWEASY BEAUTY - STYLE SHEET (ADVANCED MOTION EDITION)
   Scroll-driven reveals, conic-gradient glow borders, animated gradient type,
   morphing blobs, magnetic buttons — the current "trending on Pinterest /
   built with Claude Code" motion language, layered on top of the original
   structural layout so index.html needs zero changes.
   ========================================================================== */

/* --- CSS VARIABLES & COLOR PALETTE --- */
:root {
    --primary-deep: #163312;       /* Deep Forest Green (Luxury tone) */
    --primary-mid: #2d5a27;        /* Sage / Olive Green */
    --primary-light: #f0f5ef;      /* Soft Sage background highlight */
    --accent-gold: #e4a13d;        /* Warm Amber/Orange Gold */
    --accent-gold-soft: #f3c88a;
    --text-dark: #1e291b;
    --text-muted: #556652;
    --white: #ffffff;

    --shadow-sm: 0 4px 12px rgba(22, 51, 18, 0.05);
    --shadow-md: 0 12px 30px rgba(22, 51, 18, 0.08);
    --shadow-lg: 0 20px 50px rgba(22, 51, 18, 0.12);
    --shadow-glow: 0 0 0 1px rgba(228, 161, 61, 0.15), 0 20px 60px rgba(22, 51, 18, 0.18);

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);

    --reveal-distance: 46px;
}

/* --- BASE STYLES & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--white);
    color: var(--text-dark);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent-gold);
    color: var(--primary-deep);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--primary-light); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-mid), var(--primary-deep));
    border-radius: 10px;
    border: 2px solid var(--primary-light);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-deep);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* --- GLOBAL CONTAINER --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   KEYFRAME LIBRARY
   ========================================================================== */
@keyframes fluidGlowPulse {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.15); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes auroraDrift {
    0%   { transform: translate(0%, 0%) rotate(0deg) scale(1); }
    50%  { transform: translate(-6%, 8%) rotate(180deg) scale(1.25); }
    100% { transform: translate(0%, 0%) rotate(360deg) scale(1); }
}

@keyframes floatElement {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatElementSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-18px) rotate(-2deg) scale(1.03); }
}

@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blurInUp {
    from { opacity: 0; transform: translateY(24px) scale(0.98); filter: blur(8px); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderSpin {
    to { --border-angle: 360deg; }
}

@keyframes shimmerSweep {
    0% { transform: translateX(-150%) skewX(-15deg); }
    100% { transform: translateX(250%) skewX(-15deg); }
}

@keyframes blobMorph {
    0%, 100% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; }
    25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%; }
    75% { border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%; }
}

@keyframes amazonGlowPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(228, 161, 61, 0.25), 0 0 0 0 rgba(228, 161, 61, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 30px rgba(228, 161, 61, 0.4), 0 0 0 12px rgba(228, 161, 61, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(228, 161, 61, 0.25), 0 0 0 0 rgba(228, 161, 61, 0);
    }
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes revealOnView {
    from { opacity: 0; transform: translateY(var(--reveal-distance)) scale(0.97); filter: blur(6px); }
    to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--primary-light);
    transition: var(--transition-smooth);
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    background: linear-gradient(90deg, var(--primary-deep) 0%, var(--primary-mid) 35%, var(--accent-gold) 50%, var(--primary-mid) 65%, var(--primary-deep) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    transition: var(--transition-smooth);
}

.logo:hover {
    background-position: 100% center;
    animation: gradientShift 3s ease infinite;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-weight: 400;
    font-style: italic;
    color: var(--primary-mid);
    margin-left: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-deep);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-mid));
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.social-icons a {
    font-size: 1.25rem;
    color: var(--primary-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228,161,61,0.35), transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: #bd1c1c;
    color: var(--white);
    transform: scale(1.12) rotate(10deg);
    box-shadow: 0 8px 20px rgba(189, 28, 28, 0.35);
}

.social-icons a:hover::before {
    opacity: 1;
    transform: scale(1.4);
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background-color: var(--white);
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-overlay {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.75) 35%,
        rgba(255, 255, 255, 0.2) 65%,
        rgba(255, 255, 255, 0) 100%
    ) !important;
    z-index: 2;
    pointer-events: none;
}

.hero-censor-blur {
    position: absolute;
    bottom: 5.5% !important;
    right: 7.4% !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 5;
    pointer-events: none;
    animation: floatElement 5s ease-in-out infinite;
}

.hero-bg-glow {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 196, 155, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 1;
    animation: fluidGlowPulse 15s infinite alternate ease-in-out;
}

.hero-bg-glow::before,
.hero-bg-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
}

.hero-bg-glow::before {
    width: 380px;
    height: 380px;
    top: -120px;
    left: -220px;
    background: radial-gradient(circle, rgba(228, 161, 61, 0.35) 0%, rgba(255,255,255,0) 70%);
    animation: auroraDrift 22s linear infinite;
}

.hero-bg-glow::after {
    width: 300px;
    height: 300px;
    bottom: -160px;
    right: -180px;
    background: radial-gradient(circle, rgba(45, 90, 39, 0.3) 0%, rgba(255,255,255,0) 70%);
    animation: auroraDrift 28s linear infinite reverse;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    animation: blurInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-mid);
    background-color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(45, 90, 39, 0.15);
    animation: tagFloat 4s ease-in-out infinite;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 12px;
    background: linear-gradient(100deg, var(--primary-deep) 20%, var(--primary-mid) 40%, var(--accent-gold) 50%, var(--primary-mid) 60%, var(--primary-deep) 80%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-deep);
    animation: gradientShift 6s ease-in-out infinite;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: translateX(-150%) skewX(-15deg);
    z-index: 1;
    pointer-events: none;
}

.btn:hover::before {
    animation: shimmerSweep 1s ease forwards;
}

.btn:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.btn-primary {
    background-color: var(--primary-mid);
    color: var(--white);
    border: 1px solid var(--primary-mid);
    box-shadow: 0 10px 25px rgba(45, 90, 39, 0.15);
}

.btn-primary:hover {
    background-color: var(--primary-deep);
    border-color: var(--primary-deep);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 40px rgba(22, 51, 18, 0.3);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary-deep);
    border: 1px solid rgba(22, 51, 18, 0.1);
}

.btn-secondary:hover {
    background-color: var(--white);
    border-color: var(--primary-mid);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: blurInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    opacity: 0;
    perspective: 1200px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatElement 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.hero-local-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(45, 90, 39, 0.15);
    transition: var(--transition-smooth);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--primary-mid), var(--accent-gold));
    z-index: -1;
    filter: blur(35px);
    opacity: 0.12;
    border-radius: 34px;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.hero-image-container:hover {
    transform: rotateY(-6deg) rotateX(3deg);
}

.hero-image-container:hover::before {
    opacity: 0.25;
}

.hero-image-container:hover .hero-local-image {
    transform: scale(1.02) translateZ(20px);
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-lg), 0 0 70px rgba(228, 161, 61, 0.25);
}

/* ==========================================================================
   SECTION 2: ABOUT / PHILOSOPHY SECTION
   ========================================================================== */
.about-section {
    position: relative;
    padding: 120px 0;
    background-color: transparent !important;
    overflow: hidden;
}

.about-section .container {
    position: relative;
    z-index: 3 !important;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1 !important;
    z-index: 1 !important;
    pointer-events: none;
}

.about-bg-overlay {
    display: none !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: revealOnView linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.organic-shape {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    transition: var(--transition-smooth);
}

.shadow-shape {
    width: 320px;
    height: 320px;
    background-color: rgba(45, 90, 39, 0.08);
    transform: rotate(-10deg) translate(-20px, 10px);
    animation: blobMorph 12s ease-in-out infinite;
}

.main-shape {
    width: 310px;
    height: 310px;
    background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary-deep) 100%);
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 40px;
    animation: blobMorph 12s ease-in-out infinite, floatElementSlow 7s ease-in-out infinite;
    animation-delay: -3s, 0s;
}

.about-image-wrapper:hover .main-shape {
    transform: scale(1.06) rotate(4deg);
    animation-play-state: paused;
    border-radius: 50% 50% 50% 50%;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(228, 161, 61, 0.25);
}

.shape-content i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: inline-block;
    transition: var(--transition-spring);
}

.about-image-wrapper:hover .shape-content i {
    animation: iconWiggle 0.6s ease;
    transform: scale(1.15);
}

.shape-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
}

.about-text-content {
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 40px !important;
    border-radius: 24px !important;
    box-shadow: 0 15px 35px rgba(22, 51, 18, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: revealOnView linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.about-text-content:hover {
    box-shadow: 0 20px 45px rgba(22, 51, 18, 0.14) !important;
    transform: translateY(-4px);
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 22px;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--accent-gold);
    transform: translateY(-50%);
    animation: tagFloat 3s ease-in-out infinite;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-paragraph {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==========================================================================
   SECTION 3: THE HOLY GRAIL DIRECTORY (6-Product Grid Layout)
   ========================================================================== */
.directory-section {
    position: relative;
    padding: 120px 0;
    background-color: #f6f9f5;
    overflow: hidden;
}

.directory-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/showcase-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.directory-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(246, 249, 245, 0.85);
    z-index: 1;
    pointer-events: none;
}

.directory-section .container {
    position: relative;
    z-index: 2;
}

.directory-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
    animation: revealOnView linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
}

.directory-header .section-title {
    margin-bottom: 16px;
}

.directory-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.directory-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    animation: revealOnView linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}

.directory-item:nth-child(1) { animation-delay: 0s; }
.directory-item:nth-child(2) { animation-delay: 0.08s; }
.directory-item:nth-child(3) { animation-delay: 0.16s; }
.directory-item:nth-child(4) { animation-delay: 0.24s; }
.directory-item:nth-child(5) { animation-delay: 0.32s; }
.directory-item:nth-child(6) { animation-delay: 0.4s; }

.directory-card {
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(22, 51, 18, 0.05);
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: 380px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.directory-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: conic-gradient(from 0deg, var(--accent-gold), var(--primary-mid), var(--accent-gold-soft), var(--primary-deep), var(--accent-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.4s ease;
    animation: borderSpin 4s linear infinite;
}

@property --border-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.directory-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.directory-card:hover::before {
    opacity: 1;
}

.directory-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(22, 51, 18, 0.05);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.directory-card:hover .directory-card-image {
    transform: scale(1.08);
    filter: saturate(1.15);
}

.directory-card-header {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.directory-card-header h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--primary-deep);
    margin-bottom: 8px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.4s ease;
}

.directory-card:hover .directory-card-header h3 {
    color: var(--primary-mid);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-top: auto;
}

.product-rating i {
    transition: transform 0.4s ease;
}

.directory-card:hover .product-rating i {
    transform: scale(1.2) rotate(-8deg);
}

.product-rating span {
    color: var(--text-muted);
    margin-left: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.directory-hover-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 51, 18, 0.96);
    color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.directory-card:hover .directory-hover-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.directory-hover-popup h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.directory-hover-popup h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 32px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.directory-hover-popup p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.directory-hover-popup p strong {
    color: var(--white);
}

.btn-amazon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3a847 0%, #e47911 100%) !important;
    color: #111111 !important;
    border: none !important;
    padding: 14px 24px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    width: 100%;
    max-width: 290px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    animation: amazonGlowPulse 2.5s infinite ease-in-out !important;
}

.btn-amazon-small::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
    transform: translateX(-150%) skewX(-15deg);
    pointer-events: none;
}

.btn-amazon-small:hover::after {
    animation: shimmerSweep 0.9s ease forwards;
}

.btn-amazon-small i {
    font-size: 1.1rem;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-amazon-small:hover {
    animation-play-state: paused;
    background: linear-gradient(135deg, #f5b968 0%, #eb841c 100%) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 10px 25px rgba(228, 161, 61, 0.45) !important;
    color: #000000 !important;
}

.btn-amazon-small:hover i {
    transform: scale(1.15) rotate(-8deg);
}

/* ==========================================================================
   THE LUXURIOUS GREEN LEGAL FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--primary-deep);
    color: var(--white);
    padding: 80px 0 40px 0;
    border-top: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(228, 161, 61, 0.08) 0%, rgba(228,161,61,0) 70%);
    transform: translateX(-50%);
    animation: fluidGlowPulse 18s ease-in-out infinite;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand-col .footer-logo {
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand-col .footer-logo span {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 400;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition-spring);
}

.footer-socials a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-deep);
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 22px rgba(228, 161, 61, 0.35);
}

.footer-links-col h4, .footer-legal-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col ul, .footer-legal-col ul {
    list-style: none;
}

.footer-links-col ul li, .footer-legal-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a, .footer-legal-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.footer-links-col ul li a:hover, .footer-legal-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    text-align: center;
    position: relative;
    z-index: 2;
}

.amazon-disclosure {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: justify;
}

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   BULLETPROOF RESPONSIVE MOBILE FIXES
   ========================================================================== */
@media (max-width: 1024px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 14px 20px;
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-top: 40px;
    }

    .hero-bg-overlay {
        background: rgba(255, 255, 255, 0.92) !important;
    }

    .hero-censor-blur {
        display: none !important;
    }

    .hero-bg-glow {
        width: 300px;
        height: 300px;
    }

    .hero-description {
        margin: 0 auto 40px auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-container {
        margin: 0 auto !important;
        max-width: 290px !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center;
    }

    .about-text-content {
        padding: 35px 24px !important;
        max-width: 100% !important;
    }

    .about-image-wrapper {
        height: auto !important;
        min-height: 280px !important;
    }

    .directory-section {
        padding: 80px 0;
    }

    .directory-grid {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
    }

    .directory-card {
        height: 380px !important;
    }

    .directory-hover-popup {
        padding: 24px;
    }

    .btn-amazon-small {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}
/* FIX: remove scroll-reveal que estava deixando os últimos cards foscos */
.about-image-wrapper,
.about-text-content,
.directory-header,
.directory-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}