/* ==========================================================================
   PREMIUM MASSIVE CUSTOM EXTENDED STYLESHEET FOR ORGANIC INDIA TULSI LANDING
   Paletta alapirányzat: Mély-rózsaszín, prémium lágy rózsa, borvörös és arany akcentusok.
   Téma: Tiszta CSS interakciók, rétegzett árnyékok és modern mikrotipográfia.
   ========================================================================== */

/* --- 1. GLOBÁLIS MODULOK ÉS VÁLTOZÓK CONFIGURATION (:root) --- */
:root {
    /* Alap színpaletta származtatása a kért rózsaszín téma szerint */
    --color-primary-rose-light: #fff1f2;
    --color-primary-rose-subtle: #ffe4e6;
    --color-primary-rose-mid: #fbcfe8;
    --color-primary-rose-deep: #f472b6;
    --color-primary-rose-solid: #db2777;
    --color-primary-rose-dark: #9d174d;
    --color-primary-rose-abyssal: #4c051e;
    
    /* Kiegészítő semleges és prémium textúra kódok */
    --color-neutral-pure-white: #ffffff;
    --color-neutral-slate-light: #f8fafc;
    --color-neutral-slate-dark: #334155;
    --color-accent-gold-bright: #fbbf24;
    --color-accent-gold-deep: #d97706;
    --color-text-main-body: #475569;
    --color-text-headings-dark: #1e1b4b;
    
    /* Rétegzett komplex árnyékrendszerek definíciói (Layered Shadows) */
    --shadow-layered-level-1: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-layered-level-2: 0 4px 6px -1px rgba(157, 23, 77, 0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-layered-level-3: 0 10px 15px -3px rgba(157, 23, 77, 0.07), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-layered-level-4: 0 20px 25px -5px rgba(157, 23, 77, 0.1), 0 10px 10px -5px rgba(157, 23, 77, 0.04);
    --shadow-layered-ultra-glow: 0 0 40px 5px rgba(219, 39, 119, 0.15);
    --shadow-inner-inset-dark: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Átmenet sebességek */
    --transition-speed-fluid: 0.35s;
    --transition-speed-snappy: 0.2s;
    --font-family-sans: 'Inter', sans-serif;
    --font-family-serif: 'Playfair Display', serif;
}

/* --- 2. ALAPOZÓ TULAJDONSÁGOK ÉS DEKORATÍV HÁTTÉR ELEMEK --- */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body.custom-body-bg {
    font-family: var(--font-family-sans);
    background-color: #faf6f6;
    color: var(--color-text-main-body);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(255,241,242,0.6) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(251,207,232,0.4) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Ambient Ambient Glowing Circles (Körök és Fénylések) */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

.orb-alpha {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,228,230,0.8) 0%, rgba(251,207,232,0.3) 100%);
    animation: floatingOrbAlpha 25s infinite alternate ease-in-out;
}

.orb-beta {
    top: 35%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251,207,232,0.7) 0%, rgba(255,241,242,0.2) 100%);
    animation: floatingOrbBeta 30s infinite alternate ease-in-out;
}

.orb-gamma {
    bottom: 15%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(254,242,242,0.9) 0%, rgba(253,244,245,0.4) 100%);
}

.orb-delta {
    bottom: -5%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(251,207,232,0.5);
}

/* Pure CSS Animation Keyframes for Background Orbs */
@keyframes floatingOrbAlpha {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes floatingOrbBeta {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(-80px, -50px) scale(0.9); }
}

/* Geometric Structural Background Elements */
.geometric-shape {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
    border: 2px solid var(--color-primary-rose-solid);
}

.shape-one { top: 12%; left: 8%; width: 120px; height: 120px; transform: rotate(45deg); border-radius: 16px; }
.shape-two { top: 48%; right: 5%; width: 240px; height: 240px; transform: rotate(15deg); border-radius: 50% 20% 40% 10%; }
.shape-three { bottom: 28%; left: 4%; width: 180px; height: 180px; transform: rotate(115deg); }
.shape-four { top: 85%; right: 8%; width: 90px; height: 90px; transform: rotate(70deg); border-radius: 50%; }

.premium-grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: 60px 60px;
    background-image: linear-gradient(to right, rgba(219,39,119,0.015) 1px, transparent 1px), linear-gradient(to bottom, rgba(219,39,119,0.015) 1px, transparent 1px);
    pointer-events: none;
    z-index: 2;
}

/* --- 3. PREMIUM HEADER ARCHITECTURE --- */
.premium-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 228, 230, 0.8);
    height: 75px;
    box-shadow: var(--shadow-layered-level-1);
    transition: all var(--transition-speed-fluid) ease;
}

.premium-header:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-layered-level-2);
}

.header-title-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.header-main-title {
    font-family: var(--font-family-serif);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-primary-rose-dark);
    text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
    position: relative;
}

.header-logo-badge {
    background: linear-gradient(135deg, var(--color-primary-rose-solid) 0%, var(--color-primary-rose-dark) 100%);
    color: var(--color-neutral-pure-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 4px rgba(219,39,119,0.2);
}

.header-sub-badge {
    border: 1px solid var(--color-primary-rose-mid);
    color: var(--color-primary-rose-solid);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    background-color: rgba(255,241,242,0.5);
}

.header-bottom-accent-bar {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(to right, transparent, var(--color-primary-rose-mid), var(--color-primary-rose-solid), var(--color-primary-rose-mid), transparent);
    opacity: 0.7;
}

/* --- 4. PRODUCT ULTRA SHOWCASE CONTAINER --- */
.section-anchor-badge-container {
    text-center: center;
    display: flex;
    justify-content: center;
    margin-bottom: -16px;
    position: relative;
    z-index: 20;
}

.section-anchor-badge {
    background-color: var(--color-neutral-pure-white);
    border: 1px solid var(--color-primary-rose-subtle);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary-rose-dark);
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-layered-level-1);
}

.premium-product-card {
    background-color: var(--color-neutral-pure-white);
    border-radius: 32px;
    border: 1px solid rgba(255, 228, 230, 0.9);
    box-shadow: var(--shadow-layered-level-4), var(--shadow-layered-ultra-glow);
    transition: transform var(--transition-speed-fluid) cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--transition-speed-fluid) ease;
}

.premium-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(157, 23, 77, 0.13), var(--shadow-layered-ultra-glow);
}

.card-glow-reflection {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,241,242,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.card-corner-accent {
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--color-primary-rose-mid);
    border-style: solid;
    opacity: 0.4;
    pointer-events: none;
}
.card-corner-accent.top-l { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.card-corner-accent.top-r { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.card-corner-accent.bot-l { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.card-corner-accent.bot-r { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

/* --- 5. VISUALLY MAGNIFICENT PURE CSS GALLERY --- */
.gallery-component-frame {
    width: 100%;
    position: relative;
}

.gallery-component-frame input[type="radio"] {
    display: none;
}

.premium-slides-window {
    position: relative;
    width: 100%;
    height: 380px;
    background: radial-gradient(circle, #ffffff 0%, #fdfbfc 100%);
    border-radius: 24px;
    border: 1px solid var(--color-primary-rose-subtle);
    overflow: hidden;
    box-shadow: var(--shadow-inner-inset-dark), var(--shadow-layered-level-2);
}

@media (min-width: 640px) { .premium-slides-window { height: 480px; } }
@media (min-width: 1024px) { .premium-slides-window { height: 500px; } }

.window-lens-flare {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%);
    z-index: 25;
    pointer-events: none;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.image-wrapper-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.image-wrapper-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(157, 23, 77, 0.08));
    transition: transform 0.3s ease;
}

.image-wrapper-box:hover img {
    transform: scale(1.03);
}

/* Mapping Inputs states onto Slide Rendering nodes */
#slide-1:checked ~ .premium-slides-window .slide-1,
#slide-2:checked ~ .premium-slides-window .slide-2,
#slide-3:checked ~ .premium-slides-window .slide-3,
#slide-4:checked ~ .premium-slides-window .slide-4 {
    opacity: 1;
    transform: scale(1);
    z-index: 20;
}

.gallery-watermark {
    position: absolute;
    bottom: 16px; left: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgba(219, 39, 119, 0.12);
    z-index: 22;
    pointer-events: none;
}

.gallery-zoom-hint {
    position: absolute;
    top: 16px; right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,228,230,0.6);
    z-index: 22;
}

.hint-dot {
    width: 6px; height: 6px;
    background-color: var(--color-primary-rose-solid);
    border-radius: 50%;
}

.hint-text {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--color-primary-rose-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Premium Navigation Grid Thumbnails System */
.premium-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.thumb-card {
    position: relative;
    background-color: var(--color-neutral-pure-white);
    border: 1px solid var(--color-primary-rose-subtle);
    border-radius: 14px;
    padding: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-speed-snappy) ease;
    box-shadow: var(--shadow-layered-level-1);
    display: block;
}

.thumb-img-crop {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-neutral-slate-light);
}

@media (min-width: 640px) { .thumb-img-crop { height: 80px; } }

.thumb-img-crop img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-speed-snappy) ease;
}

.thumb-selection-ring {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 2.5px solid transparent;
    border-radius: 14px;
    z-index: 5;
    transition: all var(--transition-speed-snappy) ease;
}

.thumb-index-tag {
    position: absolute;
    bottom: 2px; right: 5px;
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(157, 23, 77, 0.25);
}

/* Interactive States for Thumbnails Frame */
.thumb-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary-rose-mid);
    box-shadow: var(--shadow-layered-level-2);
}

.thumb-card:hover .thumb-img-crop img {
    transform: scale(1.06);
}

/* Driving current selection aesthetics based on active input states */
#slide-1:checked ~ .premium-thumbnails-grid .thumb-1,
#slide-2:checked ~ .premium-thumbnails-grid .thumb-2,
#slide-3:checked ~ .premium-thumbnails-grid .thumb-3,
#slide-4:checked ~ .premium-thumbnails-grid .thumb-4 {
    border-color: transparent;
    box-shadow: var(--shadow-layered-level-3);
    background-color: var(--color-primary-rose-light);
}

#slide-1:checked ~ .premium-thumbnails-grid .thumb-1 .thumb-selection-ring,
#slide-2:checked ~ .premium-thumbnails-grid .thumb-2 .thumb-selection-ring,
#slide-3:checked ~ .premium-thumbnails-grid .thumb-3 .thumb-selection-ring,
#slide-4:checked ~ .premium-thumbnails-grid .thumb-4 .thumb-selection-ring {
    border-color: var(--color-primary-rose-solid);
}

#slide-1:checked ~ .premium-thumbnails-grid .thumb-1 .thumb-index-tag,
#slide-2:checked ~ .premium-thumbnails-grid .thumb-2 .thumb-index-tag,
#slide-3:checked ~ .premium-thumbnails-grid .thumb-3 .thumb-index-tag,
#slide-4:checked ~ .premium-thumbnails-grid .thumb-4 .thumb-index-tag {
    color: var(--color-primary-rose-solid);
}

/* --- 6. PRODUCT TYPOGRAPHY & INFORMATION LAYOUT --- */
.product-info-cluster {
    display: flex;
    flex-direction: column;
}

.meta-brand-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-primary-rose-solid);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.premium-h1-title {
    font-family: var(--font-family-serif);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-headings-dark);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

@media (min-width: 640px) { .premium-h1-title { font-size: 2.65rem; } }

.meta-rating-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.stars-gold {
    color: var(--color-accent-gold-bright);
    letter-spacing: -0.05em;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(217,119,6,0.15);
}

.rating-numerical-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-main-body);
}

/* Descriptive Structural Flow Cards Setup */
.description-section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.title-line-accent {
    width: 4px; height: 18px;
    background-color: var(--color-primary-rose-solid);
    border-radius: 4px;
    display: inline-block;
}

.description-section-main-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-rose-dark);
}

.features-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item-row-card {
    background-color: var(--color-neutral-slate-light);
    border: 1px solid rgba(241, 245, 249, 0.9);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: start;
    gap: 16px;
    transition: all var(--transition-speed-fluid) ease;
}

.feature-item-row-card:hover {
    background-color: var(--color-neutral-pure-white);
    border-color: var(--color-primary-rose-subtle);
    transform: translateX(4px);
    box-shadow: var(--shadow-layered-level-2);
}

.feature-bullet-decoration-sphere {
    width: 18px; height: 18px;
    border-radius: 50%;
    background-color: var(--color-primary-rose-light);
    border: 1px solid var(--color-primary-rose-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.bullet-inner-core {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary-rose-solid);
}

.feature-content-inner-block {
    flex-grow: 1;
}

.feature-paragraph-text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
    margin: 0;
}

.feature-highlight-term {
    color: var(--color-primary-rose-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

/* Mandatory Keywords Contextual Block Styling */
.mandatory-keywords-integrated-infobox {
    background-color: rgba(255, 241, 242, 0.45);
    border: 1px dashed var(--color-primary-rose-mid);
    border-radius: 16px;
    margin-top: 24px;
    position: relative;
}

.infobox-left-accent-pillar {
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background-color: var(--color-primary-rose-solid);
}

.infobox-icon-shield {
    float: left;
    width: 22px; height: 22px;
    background-color: var(--color-primary-rose-solid);
    color: var(--color-neutral-pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 12px;
    margin-top: 1px;
}

.infobox-text-paragraphs {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--color-primary-rose-dark);
    font-style: italic;
    margin: 0;
}

/* --- 7. ULTRA HIGH-IMPACT CENTRAL CTA SECTION --- */
.premium-cta-action-wrap {
    background-color: var(--color-neutral-pure-white);
    border: 1px solid var(--color-primary-rose-subtle);
    border-radius: 28px;
    box-shadow: var(--shadow-layered-level-3);
    overflow: hidden;
}

.cta-background-glow-halo {
    position: absolute;
    top: 50%; left: 50%; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(251,207,232,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.cta-decorative-crown-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.crown-line {
    width: 40px; height: 1px;
    background-color: var(--color-primary-rose-mid);
}

.crown-diamond {
    font-size: 0.7rem;
    color: var(--color-primary-rose-solid);
}

.cta-subtext-lead-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.cta-button-master-wrapper {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

/* Ultimate CSS-Animated Pulse/Shine Anchor Button Node */
.premium-button-link-node {
    position: relative;
    display: inline-block;
    padding: 18px 48px;
    border-radius: 50px;
    color: var(--color-neutral-pure-white);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(219, 39, 119, 0.42), 0 8px 10px -5px rgba(219, 39, 119, 0.2);
    transition: all var(--transition-speed-fluid) cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--color-primary-rose-solid);
    animation: softPulseButton 2.5s infinite ease-in-out;
}

.button-layer-bg-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--color-primary-rose-solid) 0%, var(--color-primary-rose-dark) 100%);
    z-index: 1;
    transition: opacity var(--transition-speed-fluid) ease;
}

.button-shine-effect-line {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-25deg);
    z-index: 3;
    animation: automaticShineSweep 4s infinite linear;
}

.button-content-flex-container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Interactive Pseudo-States */
.premium-button-link-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(219, 39, 119, 0.55), 0 12px 16px -5px rgba(219, 39, 119, 0.3);
}

.premium-button-link-node:hover .button-layer-bg-gradient {
    opacity: 0.15;
    background: var(--color-primary-rose-dark);
}

.premium-button-link-node:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px -5px rgba(219, 39, 119, 0.4);
}

/* Button Animations Logic definitions */
@keyframes automaticShineSweep {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

@keyframes softPulseButton {
    0% { box-shadow: 0 10px 25px -5px rgba(219, 39, 119, 0.42), 0 0 0 0 rgba(219, 39, 119, 0.3); }
    50% { box-shadow: 0 10px 25px -5px rgba(219, 39, 119, 0.42), 0 0 0 15px rgba(219, 39, 119, 0); }
    100% { box-shadow: 0 10px 25px -5px rgba(219, 39, 119, 0.42), 0 0 0 0 rgba(219, 39, 119, 0); }
}

.cta-trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-top: 12px;
}

.trust-badge-item {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    background-color: var(--color-neutral-slate-light);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* --- 8. AMAZON-STYLE HIGHLY POLISHED REVIEW CARDS --- */
.reviews-main-title-node {
    font-family: var(--font-family-serif);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-text-headings-dark);
    margin-bottom: 4px;
}

.reviews-title-sub-bar {
    font-size: 0.9rem;
    color: #64748b;
}

.title-underline-decorator-path {
    width: 60px; height: 3px;
    background-color: var(--color-primary-rose-solid);
    border-radius: 2px;
    margin: 12px auto 0 auto;
}
@media (min-width: 1024px) { .title-underline-decorator-path { margin: 12px 0 0 0; } }

.reviews-vertical-master-chain {
    display: flex;
    flex-direction: column;
}

.amazon-review-row-card {
    background-color: var(--color-neutral-pure-white);
    border: 1px solid rgba(241, 245, 249, 0.9);
    border-radius: 20px;
    box-shadow: var(--shadow-layered-level-2);
    transition: all var(--transition-speed-fluid) ease;
}

.amazon-review-row-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-layered-level-3);
    border-color: var(--color-primary-rose-subtle);
}

.card-left-border-stripe {
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background-color: transparent;
    transition: background-color var(--transition-speed-fluid) ease;
}

.amazon-review-row-card:hover .card-left-border-stripe {
    background-color: var(--color-primary-rose-solid);
}

/* Avatar Columns Structures alignment layout */
.avatar-profile-cluster {
    width: 100%;
}
@media (min-width: 768px) { .avatar-profile-cluster { width: 90px; } }

.avatar-image-frame-gold-ring {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-primary-rose-subtle);
    padding: 2px;
    background-color: var(--color-neutral-pure-white);
    overflow: hidden;
}

.avatar-node-element {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-username-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-headings-dark);
}

/* Right Content Clustered Architecture elements mapping */
.star-rating-string-gold {
    color: var(--color-accent-gold-bright);
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.review-headline-bold-text {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-text-headings-dark);
}

.verified-purchase-badge-node {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-accent-gold-deep);
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-date-country-string {
    font-size: 0.78rem;
    color: #94a3b8;
}

.review-item-attributes-string {
    font-size: 0.75rem;
    color: #64748b;
    background-color: var(--color-neutral-slate-light);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.review-actual-message-text-block {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}

.message-paragraph {
    margin: 0;
}

/* Attached Image Container Styling Structure */
.attached-photo-gallery-node {
    border-top: 1px dashed rgba(226, 232, 240, 0.8);
    padding-top: 12px;
}

.attached-photo-header-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.attached-image-zoomable-frame {
    display: inline-block;
    border: 1px solid var(--color-primary-rose-subtle);
    padding: 4px;
    border-radius: 10px;
    background-color: var(--color-neutral-pure-white);
    position: relative;
    box-shadow: var(--shadow-layered-level-1);
    transition: all var(--transition-speed-snappy) ease;
}

.attached-image-element {
    width: 88px; height: 88px;
    object-fit: cover;
    border-radius: 6px;
}

.attached-image-zoomable-frame:hover {
    transform: scale(1.04) rotate(1deg);
    border-color: var(--color-primary-rose-mid);
    box-shadow: var(--shadow-layered-level-2);
}

/* --- 9. FINISHED PREMIUM FOOTER COMPONENT ARCHITECTURE --- */
.premium-footer-component {
    background-color: #0b0708; /* Super dark premium carbon background */
    color: #94a3b8;
}

.footer-top-divider-glow-line {
    width: 100%; height: 4px;
    background: linear-gradient(to right, var(--color-primary-rose-dark), var(--color-primary-rose-solid), var(--color-primary-rose-dark));
}

.footer-brand-title {
    font-family: var(--font-family-serif);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-neutral-pure-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-copyright-disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.4;
}

.footer-vertical-axis-separator {
    width: 1px; height: 40px;
    background-color: rgba(255,255,255,0.08);
    display: inline-block;
}

.links-navigation-box {
    flex-wrap: wrap;
}

.footer-policy-link-item {
    font-size: 0.78rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color var(--transition-speed-snappy) ease, transform var(--transition-speed-snappy) ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-hover-dot {
    width: 4px; height: 4px;
    background-color: var(--color-primary-rose-solid);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-speed-snappy) ease;
}

.footer-policy-link-item:hover {
    color: var(--color-primary-rose-mid);
}

.footer-policy-link-item:hover .link-hover-dot {
    opacity: 1;
}

.footer-deepest-basement-shading-strip {
    background-color: #000000;
    height: 12px;
    width: 100%;
}
