/**
 * Livora V4 - Enhanced Page Designs
 * Centered, eye-catching designs for all pages
 */

/* ========== Page Wrapper - Centered Design ========== */
.livora-page-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

.livora-page-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--lv-section-padding) 20px;
}

/* ========== Hero Section - Eye-catching Design ========== */
.livora-hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lv-primary) 0%, var(--lv-secondary) 100%);
    border-radius: var(--lv-radius-lg);
    margin-bottom: 60px;
    color: var(--lv-white);
    position: relative;
    overflow: hidden;
}

.livora-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.livora-hero-centered {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.livora-hero-title {
    font-size: var(--lv-heading-xl);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.livora-title-animated {
    animation: fadeInUp 1s ease-out;
}

.livora-hero-subtitle {
    font-size: var(--lv-heading-sm);
    margin-bottom: 30px;
    opacity: 0.95;
}

.livora-subtitle-animated {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.livora-hero-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.livora-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 26px;
}

.livora-hero-chip {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: #5c4a37;
    border: 1px solid rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

/* ========== Homepage: Trust + Shop-by Blocks ========== */
.livora-trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 0 auto;
    max-width: 1100px;
}

.livora-trust-item {
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.18);
    border-radius: 18px;
    padding: 14px 16px;
    display: grid;
    gap: 6px;
    box-shadow: 0 12px 28px rgba(72, 56, 36, 0.06);
    text-align: right;
}

.livora-trust-ico {
    font-size: 1.2rem;
}

.livora-trust-item strong {
    color: var(--lv-primary);
    font-size: 1rem;
}

.livora-trust-item small {
    color: #7a6a58;
    font-size: 0.9rem;
}

.livora-shopby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 0 auto;
    max-width: 1100px;
}

.livora-shopby-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdf7f1 100%);
    border: 1px solid rgba(212, 160, 131, 0.18);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 16px 36px rgba(72, 56, 36, 0.08);
    text-align: right;
}

.livora-shopby-card h3 {
    margin: 0 0 6px;
    color: var(--lv-primary);
    font-size: 1.2rem;
}

.livora-shopby-card p {
    margin: 0 0 12px;
    color: #6a5a4a;
    font-size: 0.95rem;
}

.livora-shopby-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.livora-shopby-chip {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.22);
    color: #5c4a37;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--lv-transition);
}

.livora-shopby-chip:hover {
    background: linear-gradient(135deg, var(--lv-primary), var(--lv-secondary));
    color: #fff;
    border-color: transparent;
}

.livora-shopby-link {
    display: inline-flex;
    text-decoration: none;
    color: var(--lv-primary);
    font-weight: 600;
}

.livora-best-sellers-title {
    margin: 0 0 14px;
    color: var(--lv-primary);
    font-size: 1.4rem;
    text-align: center;
}

.livora-product-item-compact .livora-product-actions {
    margin-top: 10px;
    text-align: center;
}

/* ========== Section Styles - Centered & Eye-catching ========== */
.livora-section {
    margin-bottom: var(--lv-section-gap);
    padding: var(--lv-section-padding);
    background: var(--lv-white);
    border-radius: var(--lv-radius-lg);
    box-shadow: var(--lv-shadow-lg);
    position: relative;
}

.livora-section-centered {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.livora-section-title {
    font-size: var(--lv-heading-lg);
    font-weight: 700;
    color: var(--lv-primary);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.livora-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--lv-primary), var(--lv-secondary));
    border-radius: 2px;
}

.livora-section-description {
    text-align: center;
    color: var(--lv-text);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.livora-section-content {
    color: var(--lv-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========== Homepage (New Style) ========== */
.livora-page-home {
    --lv-home-accent: #ff7a59;
    --lv-home-accent-dark: #e86043;
    --lv-home-sand: #f9f1e8;
    --lv-home-ink: #3a2d1f;
    --lv-home-glow: rgba(255, 122, 89, 0.25);
}

.livora-page-home .livora-hero-section {
    background: radial-gradient(circle at top right, #ffe9df 0%, #f9f1e8 35%, #fdf7f2 100%);
    color: var(--lv-home-ink);
    border: 1px solid rgba(255, 122, 89, 0.2);
    position: relative;
    overflow: hidden;
    text-align: right;
}

.livora-page-home .livora-hero-section::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, var(--lv-home-glow) 0%, transparent 70%);
    transform: rotate(-10deg);
}

.livora-page-home .livora-hero-title {
    font-size: 3.2rem;
    color: var(--lv-home-ink);
}

.livora-page-home .livora-hero-subtitle {
    font-size: 1.4rem;
    color: #5c4a37;
}

.livora-page-home .livora-hero-content {
    color: #5c4a37;
}

.livora-page-home .livora-cta-buttons .livora-btn-primary {
    background: var(--lv-home-accent);
    border-color: var(--lv-home-accent);
}

.livora-page-home .livora-cta-buttons .livora-btn-primary:hover {
    background: var(--lv-home-accent-dark);
}

.livora-page-home .livora-cta-buttons .livora-btn-secondary {
    border-color: var(--lv-home-accent);
    color: var(--lv-home-accent);
}

.livora-page-home .livora-section-home-highlights {
    background: linear-gradient(135deg, #fff6f1 0%, #fef1e6 100%);
    border: 1px solid rgba(255, 122, 89, 0.15);
}

.livora-page-home .livora-section-home-highlights .livora-values-grid {
    gap: 30px;
}

.livora-page-home .livora-section-home-highlights .livora-value-item {
    border: 1px solid rgba(255, 122, 89, 0.12);
    background: #fff;
    border-radius: var(--lv-radius-md);
    padding: 20px 18px;
    text-align: right;
}

.livora-page-home .livora-section-home-trending {
    background: #fff;
    border: 1px solid rgba(72, 56, 36, 0.08);
}

.livora-page-home .livora-section-home-tools {
    background: linear-gradient(135deg, #fff7f2 0%, #fff 100%);
}

.livora-page-home .livora-section-home-tools .livora-component-wrapper {
    background: transparent;
    box-shadow: none;
}

.livora-page-home .livora-section-home-search {
    background: #fff;
    border: 1px solid rgba(72, 56, 36, 0.08);
}

.livora-page-home .livora-section-home-concerns {
    background: linear-gradient(135deg, #fff 0%, #fdf3ea 100%);
    border: 1px solid rgba(255, 122, 89, 0.12);
}

.livora-home-concern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.livora-home-concern-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
    border-radius: var(--lv-radius-md);
    border: 1px solid rgba(72, 56, 36, 0.10);
    background: linear-gradient(180deg, #ffffff 0%, #fdf7f1 100%);
    text-decoration: none;
    color: var(--lv-text);
    transition: var(--lv-transition);
    position: relative;
    overflow: hidden;
}

.livora-home-concern-card small {
    color: #5c4a37;
    font-size: 0.85rem;
}

.livora-home-concern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 160, 131, 0.35);
}

.livora-home-concern-card::after {
    content: '←';
    position: absolute;
    left: 12px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 160, 131, 0.25);
    color: #6a5a4a;
    transform: translateX(-6px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.livora-home-concern-card:hover::after {
    transform: translateX(0);
    opacity: 1;
}

.livora-home-concern-card:focus-visible {
    outline: 3px solid rgba(212, 160, 131, 0.35);
    outline-offset: 2px;
}

.livora-concern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.livora-concern-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    border-radius: var(--lv-radius-md);
    border: 1px solid rgba(72, 56, 36, 0.10);
    background: linear-gradient(180deg, #ffffff 0%, #fdf7f1 100%);
    text-decoration: none;
    color: var(--lv-text);
    transition: var(--lv-transition);
    position: relative;
    overflow: hidden;
}

.livora-concern-card small {
    color: #5c4a37;
    font-size: 0.85rem;
}

.livora-concern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 160, 131, 0.35);
}

.livora-concern-card::after {
    content: '←';
    position: absolute;
    left: 14px;
    top: 14px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 160, 131, 0.25);
    color: #6a5a4a;
    transform: translateX(-6px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.livora-concern-card:hover::after {
    transform: translateX(0);
    opacity: 1;
}

.livora-concern-card:focus-visible {
    outline: 3px solid rgba(212, 160, 131, 0.35);
    outline-offset: 2px;
}

.livora-home-tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.livora-home-tool-card {
    background: #fff;
    border-radius: var(--lv-radius-lg);
    padding: 22px 20px;
    border: 1px solid rgba(72, 56, 36, 0.08);
    box-shadow: var(--lv-shadow-sm);
}

.livora-home-tool-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--lv-text);
}

.livora-home-tool-card p {
    margin: 0 0 16px;
    color: #5c4a37;
    font-size: 0.95rem;
}

.livora-home-tool-card .livora-btn {
    width: 100%;
}

.livora-home-editorial {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.livora-home-editorial-card {
    background: #fff;
    border-radius: var(--lv-radius-lg);
    padding: 20px 18px;
    border: 1px solid rgba(72, 56, 36, 0.08);
}

.livora-home-editorial-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--lv-text);
}

.livora-home-editorial-card p {
    margin: 0;
    color: #5c4a37;
    font-size: 0.95rem;
}

.livora-page-home .livora-section-home-categories {
    background: var(--lv-home-sand);
}

.livora-page-home .livora-section-home-categories .livora-category-card {
    border: 1px solid rgba(255, 122, 89, 0.1);
}

.livora-page-home .livora-section-home-brands {
    background: #fff;
    border: 1px solid rgba(72, 56, 36, 0.08);
}

.livora-page-home .livora-section-home-ingredients {
    background: linear-gradient(120deg, #fff7f2 0%, #fff 100%);
    border: 1px solid rgba(255, 122, 89, 0.1);
}

.livora-home-ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.livora-home-ingredient-card {
    padding: 12px 14px;
    border-radius: var(--lv-radius-md);
    border: 1px solid rgba(72, 56, 36, 0.12);
    background: #fff;
    text-align: center;
    text-decoration: none;
    color: var(--lv-text);
    font-weight: 600;
    transition: var(--lv-transition);
}

.livora-home-ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lv-shadow-sm);
}

.livora-ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.livora-ingredient-card {
    padding: 12px 16px;
    border-radius: var(--lv-radius-md);
    border: 1px solid rgba(72, 56, 36, 0.12);
    background: #fff;
    text-align: center;
    text-decoration: none;
    color: var(--lv-text);
    font-weight: 600;
    transition: var(--lv-transition);
}

.livora-ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lv-shadow-sm);
}

.livora-page-home .livora-section-home-story {
    background: linear-gradient(120deg, #fff 0%, #fdf3ea 100%);
}

.livora-page-home .livora-section-home-newsletter {
    background: linear-gradient(135deg, #ff7a59 0%, #ff9d7d 100%);
    color: #fff;
}

.livora-page-home .livora-section-home-newsletter .livora-section-title,
.livora-page-home .livora-section-home-newsletter .livora-section-description,
.livora-page-home .livora-section-home-newsletter .livora-section-content {
    color: #fff;
}

.livora-page-home .livora-section-home-newsletter .livora-btn-primary {
    background: #fff;
    color: var(--lv-home-accent-dark);
}

/* ========== Brand Grid ========== */
.livora-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.livora-brand-link {
    text-decoration: none;
}

.livora-brand-card {
    background: #fff;
    border-radius: var(--lv-radius-md);
    padding: 18px 16px;
    text-align: center;
    border: 1px solid rgba(72, 56, 36, 0.08);
    transition: var(--lv-transition);
}

.livora-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lv-shadow-md);
}

.livora-brand-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 8px;
}

.livora-brand-initial {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lv-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--lv-text);
    margin-bottom: 8px;
}

.livora-brand-name {
    font-weight: 600;
    color: var(--lv-text);
}

/* ========== Component Wrappers ========== */
.livora-component-wrapper {
    margin: 40px 0;
    padding: 30px;
    background: var(--lv-cream);
    border-radius: var(--lv-radius-lg);
    box-shadow: var(--lv-shadow-md);
}

/* ========== Tracking Form ========== */
.livora-tracking-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: var(--lv-white);
    border-radius: var(--lv-radius-lg);
    box-shadow: var(--lv-shadow-md);
}

.livora-form-group {
    margin-bottom: 25px;
}

.livora-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--lv-text);
}

.livora-form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--lv-cream);
    border-radius: var(--lv-radius-md);
    font-size: 16px;
    transition: var(--lv-transition);
}

.livora-form-input:focus {
    outline: none;
    border-color: var(--lv-primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 131, 0.1);
}

/* ========== Order Stages ========== */
.livora-order-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.livora-stage-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--lv-cream);
    border-radius: var(--lv-radius-lg);
    position: relative;
    transition: var(--lv-transition);
    cursor: pointer;
}

.livora-stage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--lv-shadow-lg);
    background: var(--lv-white);
}

.livora-stage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.livora-stage-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--lv-primary);
    color: var(--lv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.livora-stage-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--lv-text);
    margin: 20px 0 10px;
}

.livora-stage-description {
    color: #666;
    font-size: 0.95rem;
}

/* ========== Stats Grid ========== */
.livora-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.livora-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--lv-primary) 0%, var(--lv-secondary) 100%);
    border-radius: var(--lv-radius-lg);
    color: var(--lv-white);
    box-shadow: var(--lv-shadow-md);
    transition: var(--lv-transition);
}

.livora-stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--lv-shadow-lg);
}

.livora-stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.livora-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.livora-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========== Categories Grid ========== */
.livora-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.livora-category-card {
    background: var(--lv-white);
    border-radius: var(--lv-radius-lg);
    box-shadow: var(--lv-shadow-md);
    overflow: hidden;
    transition: var(--lv-transition);
}

.livora-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lv-shadow-lg);
}

.livora-category-link {
    display: block;
    padding: 40px 30px;
    text-decoration: none;
    color: var(--lv-text);
    text-align: center;
}

.livora-category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.livora-category-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lv-primary);
    margin-bottom: 10px;
}

.livora-category-description {
    color: #666;
    font-size: 0.95rem;
}

/* ========== Content Blocks ========== */
.livora-values-grid,
.livora-methods-list,
.livora-questions-list,
.livora-ingredients-grid,
.livora-products-grid,
.livora-tiers-grid,
.livora-bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.livora-value-item,
.livora-method-item,
.livora-question-item,
.livora-ingredient-item,
.livora-product-item,
.livora-tier-card,
.livora-bundle-card {
    background: var(--lv-white);
    border-radius: var(--lv-radius-lg);
    padding: 24px;
    border: 1px solid rgba(72, 56, 36, 0.08);
    box-shadow: var(--lv-shadow-sm);
}

.livora-value-icon,
.livora-method-item h3,
.livora-question,
.livora-ingredient-item h3,
.livora-product-item h3,
.livora-tier-name,
.livora-bundle-name {
    color: var(--lv-primary);
}

.livora-value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: inline-block;
}

.livora-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.livora-answer {
    color: #5c4a37;
    line-height: 1.7;
}

.livora-method-item p,
.livora-ingredient-item p,
.livora-product-item p {
    color: #5c4a37;
}

.livora-product-thumb {
    display: block;
}

.livora-product-title {
    display: block;
    margin-top: 10px;
    color: var(--lv-primary);
    font-weight: 700;
    line-height: 1.4;
}

.livora-products-list,
.livora-tier-benefits,
.livora-bundle-products {
    list-style: disc;
    padding-right: 20px;
    margin: 12px 0 0;
    color: #5c4a37;
}

.livora-bullet-list {
    list-style: disc;
    padding-right: 20px;
    margin: 12px 0 0;
    color: #5c4a37;
}

.livora-products-list li,
.livora-tier-benefits li,
.livora-bundle-products li {
    margin-bottom: 6px;
}

.livora-bullet-list li {
    margin-bottom: 6px;
}

.livora-product-link {
    color: var(--lv-primary);
    text-decoration: none;
}

.livora-product-link:hover {
    text-decoration: underline;
}

.livora-ingredient-item .livora-benefits-list {
    margin: 12px 0 0;
}

.livora-bundle-discount {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: var(--lv-radius-full);
    background: rgba(212, 160, 131, 0.15);
    color: var(--lv-primary);
    font-weight: 600;
}

.livora-bundle-pricing {
    display: grid;
    gap: 6px;
    margin: 12px 0;
}

.livora-bundle-original-price {
    text-decoration: line-through;
    color: #999;
}

.livora-bundle-final-price {
    color: var(--lv-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.livora-bundle-savings,
.livora-bundle-best-for {
    color: #5c4a37;
    font-size: 0.95rem;
}

.livora-bundle-btn {
    width: 100%;
    text-align: center;
}

.livora-tier-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.livora-tier-range {
    font-weight: 600;
    color: #5c4a37;
}

.livora-faq-category {
    margin: 30px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(72, 56, 36, 0.08);
}

.livora-faq-category-title {
    color: var(--lv-primary);
    margin-bottom: 12px;
}

.livora-routine-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.livora-routine-morning,
.livora-routine-night {
    background: var(--lv-cream);
    border-radius: var(--lv-radius-lg);
    padding: 20px;
}

.livora-routine-steps {
    padding-right: 20px;
    color: #5c4a37;
}

.livora-routine-step {
    margin-bottom: 8px;
}

.livora-cta-section {
    background: linear-gradient(135deg, #fef7f2 0%, #fff 100%);
    border-radius: var(--lv-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--lv-shadow-md);
}

.livora-cta-section h2 {
    color: var(--lv-primary);
}

.livora-section .livora-badges-list {
    justify-content: flex-start;
}

.livora-section .livora-badge {
    background: var(--lv-cream);
    border-color: rgba(72, 56, 36, 0.1);
    color: var(--lv-text);
}

.livora-section .livora-benefits-list li {
    color: var(--lv-text);
    border-bottom: 1px solid rgba(72, 56, 36, 0.1);
}

/* ========== Badges & Benefits ========== */
.livora-badges-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.livora-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--lv-radius-full);
    color: var(--lv-white);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.livora-benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: right;
}

.livora-benefits-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--lv-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.livora-benefits-list li:last-child {
    border-bottom: none;
}

/* ========== CTA Buttons ========== */
.livora-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.livora-btn {
    padding: 18px 45px;
    border-radius: var(--lv-radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--lv-transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.livora-btn-primary {
    background: var(--lv-white);
    color: var(--lv-primary);
}

.livora-btn-primary:hover {
    background: var(--lv-cream);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.livora-btn-secondary {
    background: transparent;
    color: var(--lv-white);
    border: 2px solid var(--lv-white);
}

.livora-btn-secondary:hover {
    background: var(--lv-white);
    color: var(--lv-primary);
    transform: translateY(-3px);
}

/* ========== V5 Visual Enhancements (All Pages) ========== */
.livora-page-wrapper {
    position: relative;
    background: linear-gradient(180deg, #fdf9f4 0%, #ffffff 35%, #ffffff 100%);
}

.livora-page-wrapper::before,
.livora-page-wrapper::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.livora-page-wrapper::before {
    top: -180px;
    right: -160px;
    background: radial-gradient(circle, rgba(212, 160, 131, 0.2) 0%, rgba(212, 160, 131, 0) 70%);
}

.livora-page-wrapper::after {
    bottom: -220px;
    left: -180px;
    background: radial-gradient(circle, rgba(200, 161, 101, 0.18) 0%, rgba(200, 161, 101, 0) 70%);
}

.livora-page-wrapper > * {
    position: relative;
    z-index: 1;
}

.livora-hero-section {
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 45px rgba(72, 56, 36, 0.2);
}

.livora-hero-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 70%;
    height: 130%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.livora-section {
    background: linear-gradient(180deg, #ffffff 0%, #fef9f3 100%);
    border: 1px solid rgba(72, 56, 36, 0.08);
    box-shadow: 0 18px 40px rgba(72, 56, 36, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.livora-section::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 0;
    width: 4px;
    height: calc(100% - 48px);
    background: linear-gradient(180deg, var(--lv-primary), var(--lv-secondary));
    border-radius: 8px;
    opacity: 0.35;
    z-index: 0;
}

.livora-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18px 18px, rgba(212, 160, 131, 0.08) 2px, transparent 2.5px),
        radial-gradient(circle at 58px 58px, rgba(200, 161, 101, 0.06) 2px, transparent 2.5px);
    background-size: 72px 72px;
    opacity: 0.45;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 0;
}

.livora-section > * {
    position: relative;
    z-index: 1;
}

.livora-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(72, 56, 36, 0.12);
}

.livora-section-title {
    letter-spacing: 0.2px;
}

.livora-values-grid,
.livora-methods-list,
.livora-questions-list {
    gap: 26px;
}

.livora-value-item,
.livora-method-item,
.livora-question-item,
.livora-ingredient-item,
.livora-product-item,
.livora-tier-card,
.livora-bundle-card {
    border: 1px solid rgba(212, 160, 131, 0.18);
    box-shadow: 0 10px 26px rgba(72, 56, 36, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.livora-value-item:hover,
.livora-method-item:hover,
.livora-question-item:hover,
.livora-ingredient-item:hover,
.livora-product-item:hover,
.livora-tier-card:hover,
.livora-bundle-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 160, 131, 0.45);
    box-shadow: 0 16px 34px rgba(72, 56, 36, 0.12);
}

.livora-question-item,
.livora-method-item {
    padding-right: 46px;
}

.livora-question-item::before,
.livora-method-item::before {
    content: '';
    position: absolute;
    top: 26px;
    right: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lv-primary), var(--lv-secondary));
    box-shadow: 0 6px 14px rgba(212, 160, 131, 0.4);
}

.livora-faq-category {
    background: #ffffff;
    border: 1px solid rgba(72, 56, 36, 0.08);
    border-radius: var(--lv-radius-lg);
    padding: 26px;
    box-shadow: var(--lv-shadow-sm);
}

.livora-faq-category-title {
    font-size: 1.6rem;
}

.livora-cta-section {
    background: linear-gradient(135deg, rgba(212, 160, 131, 0.12) 0%, rgba(248, 245, 240, 0.8) 60%, #ffffff 100%);
    border: 1px solid rgba(212, 160, 131, 0.2);
    box-shadow: 0 18px 36px rgba(72, 56, 36, 0.08);
}

.livora-tracking-form {
    border: 1px solid rgba(212, 160, 131, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #fef9f3 100%);
}

.livora-form-input {
    background: #ffffff;
}

.livora-stage-item {
    border: 1px solid rgba(212, 160, 131, 0.14);
}

.livora-stage-item:hover {
    border-color: rgba(212, 160, 131, 0.35);
}

.livora-page-about-us .livora-hero-section,
.livora-page-contact-us .livora-hero-section,
.livora-page-faq .livora-hero-section,
.livora-page-delivery-tracking .livora-hero-section,
.livora-page-order-tracking .livora-hero-section {
    background: linear-gradient(135deg, #f7efe6 0%, #f3e4d6 45%, #f9f4ee 100%);
    color: var(--lv-text);
}

.livora-page-about-us .livora-hero-title,
.livora-page-contact-us .livora-hero-title,
.livora-page-faq .livora-hero-title,
.livora-page-delivery-tracking .livora-hero-title,
.livora-page-order-tracking .livora-hero-title {
    color: var(--lv-text);
    text-shadow: none;
}

.livora-page-about-us .livora-hero-subtitle,
.livora-page-contact-us .livora-hero-subtitle,
.livora-page-faq .livora-hero-subtitle,
.livora-page-delivery-tracking .livora-hero-subtitle,
.livora-page-order-tracking .livora-hero-subtitle,
.livora-page-about-us .livora-hero-content,
.livora-page-contact-us .livora-hero-content,
.livora-page-faq .livora-hero-content,
.livora-page-delivery-tracking .livora-hero-content,
.livora-page-order-tracking .livora-hero-content {
    color: #5c4a37;
}


.livora-product-faq .livora-questions-list {
    grid-template-columns: 1fr;
    margin: 18px 0 0;
}

/* ========== FAQ Accordion ========== */
.livora-question-item .livora-answer {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.livora-question-item.is-open .livora-answer {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 12px;
}

.livora-question-toggle {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    text-align: right;
    font: inherit;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.livora-question-toggle::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--lv-primary);
    transition: transform 0.2s ease;
}

.livora-question-item.is-open .livora-question-toggle::after {
    content: '-';
}

.livora-question-toggle:focus-visible {
    outline: 2px solid rgba(212, 160, 131, 0.4);
    outline-offset: 6px;
    border-radius: 8px;
}

/* ========== FAQ Toolbar (Chips + Search) ========== */
.livora-faq-toolbar {
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.2);
    border-radius: var(--lv-radius-lg);
    padding: 24px;
    box-shadow: 0 16px 36px rgba(72, 56, 36, 0.08);
    margin-bottom: 36px;
}

.livora-faq-search-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.livora-faq-search-label {
    font-weight: 600;
    color: var(--lv-text);
}

.livora-faq-search {
    border: 2px solid rgba(212, 160, 131, 0.18);
    border-radius: var(--lv-radius-md);
    padding: 14px 18px;
    font-size: 1rem;
    transition: var(--lv-transition);
}

.livora-faq-search:focus {
    outline: none;
    border-color: var(--lv-primary);
    box-shadow: 0 0 0 4px rgba(212, 160, 131, 0.12);
}

.livora-faq-count {
    color: #7a6a58;
    font-size: 0.95rem;
}

.livora-faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.livora-faq-chip {
    border: 1px solid rgba(212, 160, 131, 0.25);
    border-radius: var(--lv-radius-full);
    padding: 10px 18px;
    background: #fff;
    color: var(--lv-text);
    cursor: pointer;
    font-weight: 600;
    transition: var(--lv-transition);
}

.livora-faq-chip:hover,
.livora-faq-chip.is-active {
    background: linear-gradient(135deg, rgba(212, 160, 131, 0.2) 0%, rgba(212, 160, 131, 0.08) 100%);
    border-color: rgba(212, 160, 131, 0.6);
    color: var(--lv-primary);
}

.livora-faq-empty {
    margin-top: 18px;
    color: #8a7562;
    font-size: 0.95rem;
    display: none;
}

/* ========== FAQ Top Answers ========== */
.livora-faq-top {
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.2);
    border-radius: var(--lv-radius-lg);
    padding: 24px;
    box-shadow: 0 16px 36px rgba(72, 56, 36, 0.08);
    margin-bottom: 30px;
}

.livora-faq-top-header h3 {
    margin: 0 0 6px;
    color: var(--lv-primary);
    font-size: 1.4rem;
}

.livora-faq-top-header p {
    margin: 0 0 16px;
    color: #6a5a4a;
    font-size: 0.95rem;
}

.livora-faq-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.livora-faq-top-item {
    text-align: right;
    border: 1px solid rgba(212, 160, 131, 0.2);
    border-radius: 16px;
    padding: 14px 16px;
    background: #fdf8f2;
    cursor: pointer;
    transition: var(--lv-transition);
}

.livora-faq-top-item strong {
    display: block;
    margin-bottom: 8px;
    color: #5c4a37;
}

.livora-faq-top-item span {
    color: #7a6a58;
    font-size: 0.9rem;
}

.livora-faq-top-item:hover {
    border-color: rgba(212, 160, 131, 0.45);
    box-shadow: 0 12px 24px rgba(72, 56, 36, 0.12);
    transform: translateY(-2px);
}

/* ========== Page-Specific Layouts (About / Contact / FAQ) ========== */
.livora-page-about-us .livora-section-about-mission .livora-section-content {
    column-count: 2;
    column-gap: 36px;
}

.livora-page-about-us .livora-values-grid {
    margin-top: 20px;
}

.livora-page-about-us .livora-value-item {
    background: #ffffff;
    border: 1px solid rgba(212, 160, 131, 0.22);
    box-shadow: 0 14px 30px rgba(72, 56, 36, 0.08);
}

.livora-page-about-us .livora-section-about-journey .livora-section-content {
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.16);
    border-radius: var(--lv-radius-md);
    padding: 24px;
}

.livora-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: livora-step;
}

.livora-step-list li {
    position: relative;
    padding: 12px 12px 12px 56px;
    margin-bottom: 12px;
    background: #fef9f3;
    border-radius: 14px;
    border: 1px solid rgba(212, 160, 131, 0.12);
}

.livora-step-list li::before {
    counter-increment: livora-step;
    content: counter(livora-step);
    position: absolute;
    right: 14px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lv-primary), var(--lv-secondary));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.livora-page-about-us .livora-home-tool-card,
.livora-page-contact-us .livora-home-tool-card {
    border: 1px solid rgba(212, 160, 131, 0.2);
    box-shadow: 0 18px 36px rgba(72, 56, 36, 0.1);
}

.livora-page-contact-us .livora-section-contact-channels .livora-value-item {
    border-right: 3px solid rgba(212, 160, 131, 0.7);
    background: #fff;
}

.livora-page-contact-us .livora-section-contact-support {
    background: linear-gradient(180deg, #fff9f3 0%, #ffffff 100%);
}

.livora-page-faq .livora-faq-category {
    background: linear-gradient(180deg, #ffffff 0%, #fdf7f1 100%);
}

.livora-page-faq .livora-question-item {
    border-color: rgba(212, 160, 131, 0.25);
}

/* ========== Layout Rhythm + Icon Pack ========== */
.livora-hero-title {
    font-size: var(--lv-heading-xl);
}

.livora-section {
    margin-bottom: var(--lv-section-gap);
    padding: var(--lv-section-padding);
}

.livora-section-title {
    font-size: var(--lv-heading-lg);
}

.livora-section-description {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.livora-value-icon,
.livora-stage-icon,
.livora-tier-icon,
.livora-category-icon,
.livora-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 160, 131, 0.2), rgba(200, 161, 101, 0.18));
    color: var(--lv-primary);
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(72, 56, 36, 0.08);
}

/* ========== Info Page Background Pattern ========== */
.livora-page-shipping-policy,
.livora-page-returns-refunds,
.livora-page-payment-methods,
.livora-page-privacy-policy,
.livora-page-terms-conditions,
.livora-page-authenticity-guarantee,
.livora-page-warranty-guarantee {
    background-image: radial-gradient(circle at 15% 20%, rgba(212, 160, 131, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 10%, rgba(200, 161, 101, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(212, 160, 131, 0.08) 0%, transparent 42%);
    background-attachment: local;
}

/* ========== Sticky FAQ Search ========== */
.livora-page-faq .livora-faq-toolbar {
    position: sticky;
    top: 110px;
    z-index: 20;
}

/* ========== Jump Bar (Discovery) ========== */
.livora-jump-bar {
    position: sticky;
    top: 110px;
    z-index: 40;
    margin: -10px 0 30px;
}

.livora-jump-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.25);
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: 0 12px 28px rgba(72, 56, 36, 0.08);
}

.livora-jump-title {
    font-weight: 600;
    color: var(--lv-primary);
    white-space: nowrap;
}

.livora-jump-links {
    display: flex;
    gap: 10px;
    flex: 1;
    overflow-x: auto;
    padding-bottom: 2px;
}

.livora-jump-links::-webkit-scrollbar {
    height: 4px;
}

.livora-jump-links::-webkit-scrollbar-thumb {
    background: rgba(212, 160, 131, 0.4);
    border-radius: 999px;
}

.livora-jump-chip {
    border: 1px solid rgba(212, 160, 131, 0.2);
    background: #fdf8f2;
    color: #5c4a37;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--lv-transition);
    white-space: nowrap;
}

.livora-jump-chip:hover,
.livora-jump-chip.is-active {
    background: linear-gradient(135deg, var(--lv-primary), var(--lv-secondary));
    color: #fff;
    border-color: transparent;
}

.livora-jump-target {
    scroll-margin-top: 140px;
}

/* ========== Compare Toggle UI ========== */
.livora-compare-item {
    position: relative;
}

.livora-compare-toggle {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    border: 1px solid rgba(212, 160, 131, 0.3);
    background: #fff;
    color: #5c4a37;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--lv-transition);
    z-index: 2;
}

.livora-compare-toggle:hover,
.livora-compare-toggle.is-active {
    background: linear-gradient(135deg, var(--lv-primary), var(--lv-secondary));
    color: #fff;
    border-color: transparent;
}

.livora-compare-item.is-selected {
    border-color: rgba(212, 160, 131, 0.6);
    box-shadow: 0 16px 36px rgba(72, 56, 36, 0.12);
}

.livora-compare-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1005;
}

.livora-compare-bar.is-active {
    opacity: 1;
    transform: translateY(0);
}

.livora-compare-bar-inner {
    pointer-events: auto;
    width: min(1100px, 92%);
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.25);
    border-radius: 20px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(72, 56, 36, 0.12);
}

.livora-compare-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.livora-compare-count {
    font-size: 0.85rem;
    color: #7a6a58;
}

.livora-compare-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.livora-compare-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(212, 160, 131, 0.25);
    background: #fdf7f1;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--lv-transition);
}

.livora-compare-chip i {
    font-style: normal;
    color: var(--lv-primary);
    font-size: 0.9rem;
}

.livora-compare-chip:hover {
    border-color: rgba(212, 160, 131, 0.5);
    background: #f7efe7;
}

.livora-compare-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.livora-compare-btn,
.livora-compare-clear {
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lv-transition);
}

.livora-compare-btn {
    background: linear-gradient(135deg, var(--lv-primary), var(--lv-secondary));
    color: #fff;
}

.livora-compare-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.livora-compare-clear {
    background: #f6efe7;
    color: #5c4a37;
}

.livora-compare-clear:hover {
    background: #efe2d6;
}

.livora-compare-panel {
    margin: 20px 0 40px;
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.2);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 44px rgba(72, 56, 36, 0.08);
    display: none;
}

.livora-compare-panel.is-open {
    display: block;
}

.livora-compare-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.livora-compare-panel-header h3 {
    margin: 0;
    color: var(--lv-primary);
    font-size: 1.4rem;
}

.livora-compare-close {
    border: 1px solid rgba(212, 160, 131, 0.4);
    background: #fff;
    color: #5c4a37;
    border-radius: 999px;
    padding: 6px 14px;
    cursor: pointer;
}

.livora-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.livora-compare-card {
    background: #fdf8f2;
    border: 1px solid rgba(212, 160, 131, 0.2);
    border-radius: 18px;
    padding: 16px;
}

.livora-compare-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.livora-compare-card-header strong {
    color: var(--lv-primary);
}

.livora-compare-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 131, 0.4);
    background: #fff;
    cursor: pointer;
    line-height: 1;
}

.livora-compare-card p {
    margin: 0;
    color: #5c4a37;
    font-size: 0.9rem;
}

/* ========== Internal Linking Cards ========== */
.livora-link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.livora-link-card {
    background: #ffffff;
    border-radius: var(--lv-radius-lg);
    border: 1px solid rgba(212, 160, 131, 0.18);
    padding: 20px;
    text-decoration: none;
    color: var(--lv-text);
    box-shadow: 0 14px 30px rgba(72, 56, 36, 0.08);
    transition: var(--lv-transition);
}

.livora-link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 160, 131, 0.4);
    box-shadow: 0 18px 36px rgba(72, 56, 36, 0.12);
}

.livora-link-card h4 {
    margin: 0 0 10px;
    color: var(--lv-primary);
    font-size: var(--lv-heading-sm);
}

.livora-link-card p {
    margin: 0;
    color: #5c4a37;
    font-size: 0.95rem;
}

.livora-link-card-title {
    display: block;
    margin: 0 0 10px;
    color: var(--lv-primary);
    font-size: var(--lv-heading-sm);
    font-weight: 700;
}

.livora-link-card-desc {
    display: block;
    margin: 0;
    color: #5c4a37;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ========== Product Page Enhancements ========== */
.livora-product-insights {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.livora-product-insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.livora-product-insight-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(212, 160, 131, 0.18);
    box-shadow: 0 12px 24px rgba(72, 56, 36, 0.08);
}

.livora-product-insight-card h4 {
    margin: 0 0 6px;
    color: var(--lv-primary);
    font-size: 0.95rem;
}

.livora-ingredient-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.livora-ingredient-tag {
    background: rgba(212, 160, 131, 0.14);
    color: #5c4a37;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.livora-product-qa-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(212, 160, 131, 0.2);
    padding: 18px;
    margin-top: 18px;
    box-shadow: 0 14px 28px rgba(72, 56, 36, 0.08);
}

.livora-product-qa-card a {
    color: var(--lv-primary);
    font-weight: 600;
    text-decoration: none;
}

/* ========== Policy Pages (Anchors + Summary) ========== */
.livora-policy-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    margin: 20px auto 40px;
    align-items: start;
}

.livora-policy-summary,
.livora-policy-nav {
    background: #fff;
    border: 1px solid rgba(212, 160, 131, 0.2);
    border-radius: var(--lv-radius-lg);
    padding: 22px;
    box-shadow: 0 14px 32px rgba(72, 56, 36, 0.08);
}

.livora-policy-summary-title,
.livora-policy-nav-title {
    margin: 0 0 16px;
    font-size: 1.2rem;
    color: var(--lv-primary);
}

.livora-policy-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.livora-policy-summary-card {
    background: #fef9f3;
    border: 1px solid rgba(212, 160, 131, 0.18);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #5c4a37;
}

.livora-policy-updated {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px dashed rgba(212, 160, 131, 0.3);
    font-size: 0.9rem;
    color: #7a6a58;
}

.livora-policy-nav-links {
    display: grid;
    gap: 10px;
}

.livora-policy-nav-links a {
    text-decoration: none;
    color: var(--lv-text);
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 131, 0.18);
    background: #fff;
    transition: var(--lv-transition);
}

.livora-policy-nav-links a:hover {
    border-color: rgba(212, 160, 131, 0.5);
    background: #fdf7f1;
    color: var(--lv-primary);
}

.livora-page-shipping-policy .livora-section,
.livora-page-returns-refunds .livora-section,
.livora-page-payment-methods .livora-section,
.livora-page-privacy-policy .livora-section,
.livora-page-terms-conditions .livora-section,
.livora-page-authenticity-guarantee .livora-section,
.livora-page-warranty-guarantee .livora-section {
    scroll-margin-top: 120px;
}

/* ========== Premium Info Pages (Policies / Guarantees) ========== */
.livora-page-shipping-policy .livora-section,
.livora-page-returns-refunds .livora-section,
.livora-page-payment-methods .livora-section,
.livora-page-privacy-policy .livora-section,
.livora-page-terms-conditions .livora-section,
.livora-page-authenticity-guarantee .livora-section,
.livora-page-warranty-guarantee .livora-section {
    background: linear-gradient(180deg, #ffffff 0%, #fdf6ef 100%);
    border: 1px solid rgba(212, 160, 131, 0.2);
    box-shadow: 0 20px 42px rgba(72, 56, 36, 0.08);
}

.livora-page-shipping-policy .livora-section-title,
.livora-page-returns-refunds .livora-section-title,
.livora-page-payment-methods .livora-section-title,
.livora-page-privacy-policy .livora-section-title,
.livora-page-terms-conditions .livora-section-title,
.livora-page-authenticity-guarantee .livora-section-title,
.livora-page-warranty-guarantee .livora-section-title {
    font-size: 2.2rem;
}

.livora-page-shipping-policy .livora-section-content,
.livora-page-returns-refunds .livora-section-content,
.livora-page-payment-methods .livora-section-content,
.livora-page-privacy-policy .livora-section-content,
.livora-page-terms-conditions .livora-section-content,
.livora-page-authenticity-guarantee .livora-section-content,
.livora-page-warranty-guarantee .livora-section-content {
    font-size: 1.08rem;
    line-height: 1.95;
}

.livora-page-shipping-policy .livora-section,
.livora-page-returns-refunds .livora-section,
.livora-page-payment-methods .livora-section,
.livora-page-privacy-policy .livora-section,
.livora-page-terms-conditions .livora-section,
.livora-page-authenticity-guarantee .livora-section,
.livora-page-warranty-guarantee .livora-section {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.livora-policy-intro {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.3fr);
}

.livora-page-shipping-policy .livora-bullet-list li,
.livora-page-returns-refunds .livora-bullet-list li,
.livora-page-payment-methods .livora-bullet-list li,
.livora-page-privacy-policy .livora-bullet-list li,
.livora-page-terms-conditions .livora-bullet-list li,
.livora-page-authenticity-guarantee .livora-bullet-list li,
.livora-page-warranty-guarantee .livora-bullet-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(212, 160, 131, 0.2);
}

.livora-page-shipping-policy .livora-bullet-list li:last-child,
.livora-page-returns-refunds .livora-bullet-list li:last-child,
.livora-page-payment-methods .livora-bullet-list li:last-child,
.livora-page-privacy-policy .livora-bullet-list li:last-child,
.livora-page-terms-conditions .livora-bullet-list li:last-child,
.livora-page-authenticity-guarantee .livora-bullet-list li:last-child,
.livora-page-warranty-guarantee .livora-bullet-list li:last-child {
    border-bottom: 0;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.livora-section {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .livora-page-wrapper::before,
    .livora-page-wrapper::after {
        width: 260px;
        height: 260px;
        opacity: 0.6;
    }

    .livora-section::before {
        top: 18px;
        height: calc(100% - 36px);
    }

    .livora-question-item,
    .livora-method-item {
        padding-right: 36px;
    }

    .livora-question-item::before,
    .livora-method-item::before {
        right: 16px;
        top: 22px;
    }

    .livora-page-about-us .livora-section-about-mission .livora-section-content {
        column-count: 1;
    }

    .livora-step-list li {
        padding-right: 44px;
    }

    .livora-faq-toolbar {
        padding: 18px;
    }

    .livora-policy-intro {
        grid-template-columns: 1fr;
    }

    .livora-page-centered {
        padding: 20px 15px;
    }
    
    .livora-hero-section {
        padding: 50px 20px;
    }
    
    .livora-hero-title {
        font-size: 2.5rem;
    }
    
    .livora-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .livora-section {
        padding: 30px 20px;
    }
    
    .livora-section-title {
        font-size: 2rem;
    }
    
    .livora-order-stages {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .livora-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .livora-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========== Elementor Template (Site-wide) ========== */
.livora-template-hero {
    background: linear-gradient(135deg, #f7efe6 0%, #f3e4d6 45%, #f9f4ee 100%);
    padding: 90px 0 50px;
    position: relative;
    overflow: hidden;
}

.livora-template-hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    right: -120px;
    top: -120px;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(2px);
}

.livora-template-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--lv-primary);
    text-align: center;
    margin: 0;
}

.livora-template-lead {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5a4c3f;
    max-width: 760px;
    margin: 16px auto 0;
    text-align: center;
}

.livora-template-content {
    padding: 40px 0 10px;
}

.livora-template-content .livora-dynamic-page {
    max-width: 1100px;
    margin: 0 auto;
}

.livora-template-cta-section {
    padding: 10px 0 60px;
}

.livora-template-cta {
    text-align: center;
    background: #f9f4ee;
    border: 1px solid rgba(87, 68, 52, 0.08);
    border-radius: 24px;
    padding: 50px 20px;
    margin: 40px auto 70px;
    max-width: 980px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.livora-template-cta h2 {
    font-size: 1.6rem;
    color: var(--lv-primary);
    margin: 0 0 12px;
}

.livora-template-cta p {
    color: #6a5a4a;
    margin: 0 auto 24px;
    max-width: 640px;
}

/* ========== Discovery Matrix ========== */
.livora-discovery-matrix {
    display: grid;
    gap: 24px;
    margin: 10px 0 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.livora-matrix-column {
    position: relative;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(87, 68, 52, 0.08);
    padding: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.livora-matrix-column::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 240, 233, 0.45), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.livora-matrix-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.livora-matrix-heading h3 {
    margin: 0 0 6px;
    color: var(--lv-primary);
    font-size: 1.2rem;
}

.livora-matrix-heading p {
    margin: 0;
    color: #6a5a4a;
    font-size: 0.95rem;
}

.livora-matrix-links {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.livora-matrix-card {
    display: block;
    text-decoration: none;
    color: #3f3328;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fdf9f4;
    border: 1px solid rgba(214, 164, 131, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.livora-matrix-card strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.livora-matrix-card span {
    display: block;
    font-size: 0.9rem;
    color: #6b5a49;
}

.livora-matrix-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(214, 164, 131, 0.45);
}

.livora-matrix-empty {
    background: #fbf7f1;
    border-radius: 14px;
    padding: 14px;
    color: #7a6a5b;
    font-size: 0.9rem;
}

.livora-matrix-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    text-decoration: none;
    color: var(--lv-primary);
    font-weight: 600;
}

/* ========== Brand Index ========== */
.livora-brand-index {
    margin-top: 20px;
}

.livora-brand-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(87, 68, 52, 0.08);
    padding: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.livora-brand-search {
    flex: 1 1 220px;
    min-width: 200px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(87, 68, 52, 0.15);
    background: #fff;
}

.livora-brand-country,
.livora-brand-skin {
    min-width: 160px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(87, 68, 52, 0.15);
    background: #fff;
}

.livora-brand-count {
    margin-inline-start: auto;
    color: #7a6a5b;
    font-size: 0.9rem;
}

.livora-brand-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 8px;
}

.livora-brand-letters a {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f6efe7;
    border: 1px solid rgba(214, 164, 131, 0.25);
    color: #6a5645;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.livora-brand-letters a:hover {
    background: #efe2d6;
    color: var(--lv-primary);
}

.livora-brand-letter-group {
    margin-top: 24px;
}

.livora-brand-letter-group h3 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    color: var(--lv-primary);
}

.livora-brand-cards {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.livora-brand-card {
    display: block;
    text-decoration: none;
    color: #3f3328;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(87, 68, 52, 0.08);
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.livora-brand-card h4 {
    margin: 0 0 6px;
}

.livora-brand-card p {
    margin: 0 0 10px;
    color: #6a5a4a;
    font-size: 0.9rem;
}

.livora-brand-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: #7a6a5b;
}

.livora-brand-meta span {
    background: #f9f2ea;
    border-radius: 999px;
    padding: 4px 10px;
}

.livora-brand-card:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 164, 131, 0.45);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

/* ========== Routine Bundles ========== */
.livora-routine-bundles {
    display: grid;
    gap: 26px;
    margin-top: 10px;
}

.livora-bundle-group-title {
    margin: 0 0 14px;
    font-size: 1.4rem;
    color: var(--lv-primary);
}

.livora-bundle-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.livora-bundle-btn.is-loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-inline-start: 8px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top-color: transparent;
    vertical-align: middle;
    animation: livoraSpin 0.8s linear infinite;
}

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

@media (max-width: 768px) {
    .livora-jump-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
    }

    .livora-compare-bar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .livora-compare-actions {
        width: 100%;
        justify-content: space-between;
    }

    .livora-compare-toggle {
        top: 10px;
        inset-inline-end: 10px;
    }

    .livora-brand-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .livora-brand-count {
        margin-inline-start: 0;
    }
}

/* ========== HFE Footer Light polish ========== */
.elementor-location-footer .elementor-3697 .elementor-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.elementor-location-footer .elementor-3697 .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.elementor-location-footer .elementor-3697 .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0 18px;
}

.elementor-location-footer .elementor-3697 .elementor-heading-title {
    margin-bottom: 12px;
}

.elementor-location-footer .elementor-3697 a {
    text-decoration: none;
}

.elementor-location-footer .elementor-3697 .elementor-icon-list-item {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .elementor-location-footer .elementor-3697 .elementor-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .elementor-location-footer .elementor-3697 .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
        padding: 0 10px;
    }
}

