/*
  NOVASCHMUCK — Premium Jewelry Design System 2026
  Class-Based Only — No wildcard, no tag, no body/img/p selectors
  GEO: Deutschland (DE)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ========================
   CSS CUSTOM PROPERTIES
======================== */

:root {
    --gold: #C9A84C;
    --gold-light: #E2C275;
    --gold-pale: #F5E6B8;
    --gold-dark: #8B6914;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E2C275 50%, #C9A84C 100%);
    --text-main: #1A1714;
    --text-muted: #6B6460;
    --text-light: #9E9894;
    --bg-white: #FFFFFF;
    --bg-cream: #FAF9F7;
    --bg-light: #F5F3EF;
    --bg-dark: #0F0D0B;
    --bg-dark-2: #1A1714;
    --border-color: #E8E4DC;
    --border-gold: #C9A84C;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);
    --serif-font: 'Cormorant Garamond', serif;
    --sans-font: 'Jost', sans-serif;
    --max-width: 1140px;
    --border-radius: 4px;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================
   BASE / RESET
======================== */

.site-body {
    font-family: var(--sans-font);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* ========================
   LOADING OVERLAY
======================== */

.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
    box-sizing: border-box;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-ring {
    width: 44px;
    height: 44px;
    border: 2.5px solid var(--border-color);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
    box-sizing: border-box;
}

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

/* ========================
   HEADER / NAV
======================== */

.top-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 68px;
}

.logo-link {
    font-family: var(--serif-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.logo-accent {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--sans-font);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    width: 100%;
}

.header-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 13px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    border: 1px solid var(--border-color);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* ========================
   DISCLOSURE BANNER
======================== */

.disclosure-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    text-align: center;
    box-sizing: border-box;
}

.disclosure-text {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
}

/* ========================
   HERO SECTION
======================== */

.hero-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,13,11,0.97) 0%, rgba(26,23,20,0.92) 40%, rgba(139,105,20,0.15) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.35;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-text {
    flex: 1;
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    padding: 5px 14px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 20px;
}

.hero-title {
    font-family: var(--serif-font);
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--bg-white);
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.01em;
}

.hero-title-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    margin: 0 0 2.5rem 0;
    line-height: 1.8;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust-row {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.hero-trust-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    display: block;
}

.hero-product-card {
    flex-shrink: 0;
    width: 300px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-sizing: border-box;
}

.hero-product-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: 1rem;
}

.hero-product-name {
    font-family: var(--serif-font);
    font-size: 1.1rem;
    color: var(--bg-white);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.hero-product-price {
    font-family: var(--serif-font);
    font-size: 1.6rem;
    color: var(--gold-light);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.hero-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.hero-star {
    color: var(--gold);
    font-size: 0.85rem;
}

.hero-star-count {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-left: 4px;
}

/* ========================
   ARTICLE META
======================== */

.article-meta {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
    box-sizing: border-box;
}

.editorial-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.63rem;
    font-weight: 600;
    padding: 4px 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.breadcrumb-link:hover {
    opacity: 0.75;
}

.breadcrumb-sep {
    color: var(--border-color);
    font-size: 0.7rem;
}

.meta-info {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
}

.meta-item {
    display: inline-block;
}

.meta-divider {
    color: var(--gold-light);
}

/* ========================
   TYPOGRAPHY
======================== */

.heading-xl {
    font-family: var(--serif-font);
    font-size: 2.8rem;
    line-height: 1.15;
    margin: 0 0 1.25rem 0;
    color: var(--text-main);
    font-weight: 600;
    box-sizing: border-box;
}

.heading-lg {
    font-family: var(--serif-font);
    font-size: 1.9rem;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-main);
    font-weight: 600;
    box-sizing: border-box;
}

.heading-md {
    font-family: var(--serif-font);
    font-size: 1.35rem;
    margin: 0 0 0.75rem 0;
    color: var(--text-main);
    font-weight: 600;
    box-sizing: border-box;
}

.heading-sm {
    font-family: var(--sans-font);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--gold);
    margin: 0 0 0.5rem 0;
}

.text-p {
    margin: 0 0 1.5rem 0;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-main);
    box-sizing: border-box;
}

.strong-text {
    font-weight: 600;
}

.muted-text {
    color: var(--text-muted);
}

.accent-text {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.gold-divider {
    width: 48px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1rem 0;
    display: block;
    border-radius: 1px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

/* ========================
   QUOTE / HIGHLIGHT BLOCK
======================== */

.quote-block {
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    background: var(--bg-cream);
    font-family: var(--serif-font);
    font-style: italic;
    font-size: 1.3rem;
    margin: 2.5rem 0;
    border-radius: 0 4px 4px 0;
    color: var(--text-main);
    box-sizing: border-box;
    line-height: 1.6;
}

/* ========================
   PRODUCT DETAIL SECTION
======================== */

.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin: 2rem 0 3rem 0;
    box-sizing: border-box;
}

.product-gallery {
    position: sticky;
    top: 84px;
    box-sizing: border-box;
}

.gallery-main-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    background: var(--bg-cream);
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.gallery-main-img:hover {
    transform: scale(1.01);
}

.gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    box-sizing: border-box;
}

.gallery-thumb-btn {
    border: 2px solid transparent;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.gallery-thumb-btn:hover {
    border-color: var(--gold-light);
}

.gallery-thumb-btn.thumb-active {
    border-color: var(--gold);
}

.gallery-thumb-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.gallery-badge-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.gallery-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    background: var(--bg-light);
}

.gallery-badge-gold {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: var(--gold-pale);
}

.product-details {
    box-sizing: border-box;
}

.product-brand-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 1.25rem 0;
    box-sizing: border-box;
}

.price-main {
    font-family: var(--serif-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-main);
    box-sizing: border-box;
}

.price-vat {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    box-sizing: border-box;
}

.product-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.6;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    display: block;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    color: var(--gold);
    font-size: 1rem;
}

.rating-score {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================
   BUTTONS / CTA
======================== */

.button {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: var(--border-radius);
    font-family: var(--sans-font);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-sizing: border-box;
    border: none;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    width: 100%;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-secondary {
    background: var(--bg-white);
    border: 1.5px solid var(--gold);
    color: var(--gold-dark);
    width: 100%;
    margin-top: 0.75rem;
}

.btn-secondary:hover {
    background: var(--gold-pale);
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--bg-white);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 0.92rem;
}

/* ========================
   COMPARISON GRID
======================== */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
    box-sizing: border-box;
}

.comp-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
    background: var(--bg-white);
    transition: var(--transition);
}

.comp-card:hover {
    box-shadow: var(--shadow);
}

.highlight-card {
    background: linear-gradient(135deg, #FAF9F7 0%, #F5E6B8 100%);
    border: 2px solid var(--gold);
    position: relative;
}

.best-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    box-sizing: border-box;
}

.list-item {
    margin-bottom: 0.65rem;
    padding-left: 1.4rem;
    position: relative;
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.6;
}

.list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.list-item-x::before {
    background: #c0392b;
}

/* ========================
   COMPARISON TABLE
======================== */

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-sizing: border-box;
    font-size: 0.88rem;
}

.table-head-row {
    background: var(--bg-dark);
}

.table-th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.table-th-gold {
    color: var(--gold-light);
}

.table-td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 300;
    vertical-align: middle;
}

.table-tr:last-child .table-td {
    border-bottom: none;
}

.table-tr:nth-child(even) .table-td {
    background: var(--bg-cream);
}

.table-check {
    color: #27ae60;
    font-weight: 700;
    font-size: 1rem;
}

.table-cross {
    color: #c0392b;
}

.table-label {
    font-weight: 600;
    color: var(--text-main);
}

/* ========================
   REVIEW CARDS
======================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    box-sizing: border-box;
}

.review-card {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    box-sizing: border-box;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.review-star {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0 0 1rem 0;
    font-style: italic;
}

.review-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.review-date {
    font-size: 0.73rem;
    color: var(--text-light);
    margin-top: 2px;
    display: block;
}

.review-verified {
    font-size: 0.65rem;
    color: #27ae60;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 0.5rem;
}

/* ========================
   FAQ
======================== */

.faq-list {
    margin: 2rem 0;
    box-sizing: border-box;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--sans-font);
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-icon {
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 0 1.25rem 0;
}

/* ========================
   CONTENT SECTIONS
======================== */

.content-section {
    padding: 5rem 0;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

.content-section-dark {
    background: var(--bg-dark);
    border-top: none;
}

.content-section-cream {
    background: var(--bg-cream);
}

.section-header {
    margin-bottom: 3rem;
    max-width: 640px;
}

.section-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.dark-heading {
    color: var(--bg-white);
}

.dark-subtitle {
    color: rgba(255,255,255,0.6);
}

/* ========================
   TRUST / FEATURES ROW
======================== */

.trust-bar {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    background: var(--bg-cream);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.trust-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    box-sizing: border-box;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
    background: var(--bg-white);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--gold-light);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature-title {
    font-family: var(--serif-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 0.5rem 0;
    display: block;
}

.feature-desc {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================
   IMAGES
======================== */

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

.img-full {
    width: 100%;
    border-radius: 6px;
    margin: 2rem 0;
    display: block;
    box-shadow: var(--shadow);
}

.img-centered {
    max-width: 520px;
    width: 100%;
    display: block;
    margin: 2rem auto;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

/* ========================
   CTA BOX
======================== */

.cta-box-wrapper {
    background: linear-gradient(135deg, #0F0D0B 0%, #1A1714 70%, #2A2018 100%);
    padding: 4rem;
    border-radius: 8px;
    margin: 4rem 0;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.2);
}

.cta-box-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.8;
}

.cta-heading {
    color: var(--bg-white);
    margin-top: 0;
}

.cta-subtext {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    font-size: 1rem;
    padding: 1.25rem 3rem;
    width: auto;
    display: inline-block;
    box-shadow: var(--shadow-gold);
}

.disclaimer-text {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35);
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================
   EDITORIAL / CONTENT AREA
======================== */

.editorial-body {
    box-sizing: border-box;
    padding-bottom: 2rem;
}

.section-wrapper {
    margin-bottom: 3rem;
    box-sizing: border-box;
}

/* ========================
   CONTACT SECTION
======================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin: 2rem 0;
    align-items: start;
}

.contact-info-block {
    box-sizing: border-box;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.97rem;
    color: var(--text-main);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value:hover {
    color: var(--gold-dark);
}

/* ========================
   FORMS
======================== */

.form-section {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    box-sizing: border-box;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--sans-font);
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-btn-full {
    width: 100%;
}

/* ========================
   COOKIE BANNER
======================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark-2);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 1.25rem 1.5rem;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-sizing: border-box;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    min-width: 240px;
    margin: 0;
}

.cookie-link {
    color: var(--gold-light);
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-btn-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.6rem 1.4rem;
    font-family: var(--sans-font);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    padding: 0.6rem 1rem;
    font-family: var(--sans-font);
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.4);
}

/* ========================
   FOOTER
======================== */

.site-footer {
    background: var(--bg-dark);
    padding: 5rem 0 2rem 0;
    margin-top: 5rem;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-col {
    box-sizing: border-box;
}

.footer-logo {
    font-family: var(--serif-font);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--bg-white);
    text-decoration: none;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-contact-link {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: var(--gold-light);
}

.footer-col-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    display: block;
    margin-bottom: 1.25rem;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 0.65rem;
}

.footer-link {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

.footer-disclosure {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.3);
    margin: 0.75rem 0 0 0;
    line-height: 1.6;
    max-width: 540px;
}

/* ========================
   LEGAL PAGES
======================== */

.legal-body {
    padding: 3rem 1.5rem 5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    box-sizing: border-box;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
}

.legal-section:last-child {
    border-bottom: none;
}

.line-break {
    display: block;
}

/* ========================
   UTILITY / MISC
======================== */

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2rem; }
.d-block { display: block; }

.separator-line {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 3rem 0;
}

.info-box {
    background: linear-gradient(135deg, #FAF9F7, #F5E6B8);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    box-sizing: border-box;
}

.info-box-title {
    font-family: var(--serif-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 0 0 0.5rem 0;
}

.info-box-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ========================
   ANIMATIONS
======================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeInUp 0.65s ease forwards;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

/* ========================
   RESPONSIVE
======================== */

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .hero-content {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3.5rem 0;
    }

    .hero-product-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .heading-xl {
        font-size: 2.1rem;
    }

    .heading-lg {
        font-size: 1.65rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-box-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .trust-bar {
        gap: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand-col {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 480px) {
    .header-badge {
        display: none;
    }

    .heading-xl {
        font-size: 1.8rem;
    }

    .price-main {
        font-size: 2rem;
    }

    .gallery-thumbs {
        gap: 0.5rem;
    }

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

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

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 100%;
    }
}
