:root {
    /* Colors - Journal Authentique */
    --color-primary: #1A237E;
    /* Deep Blue */
    --color-secondary: #D6C7B1;
    --color-cta: #8E6E5D;
    --color-gold: #C5A059;
    /* Royal Gold */
    --color-gold-light: #F4E7D3;
    --color-background: #FDFBF7;
    --color-text: #2D2926;
    --color-white: #FFFFFF;
    --color-paper: #F9F4ED;
    --color-night-sky: #0D1117;

    /* Typography */
    --font-heading: 'Caveat', cursive;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-polaire: 0 4px 15px rgba(0, 0, 0, 0.15);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 18px;
    /* Slightly larger for editorial feel */
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

.font-accent {
    font-family: var(--font-accent);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: 800px;
    /* Narrower for better reading experience on blog */
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-3xl) 0;
}

/* Textures */
.texture-paper {
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    /* Subtle paper texture */
}

/* Components */
.btn-primary {
    display: inline-block;
    background-color: var(--color-cta);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

.card-journal {
    background: var(--color-paper);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--space-xl);
    border-radius: 2px;
    box-shadow: var(--shadow-md);
    position: relative;
    margin-bottom: var(--space-2xl);
}

.card-journal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/paper.png');
    opacity: 0.5;
    pointer-events: none;
}

/* Gift Sections */
.gift-title {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
}

.gift-focus {
    border: 2px solid var(--color-secondary);
    background-color: var(--color-white);
    padding: var(--space-2xl);
    overflow: hidden;
}

.badge-lina {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #D4AF37;
    /* Gold accent */
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.gift-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.photo-polaire {
    background: white;
    padding: 12px 12px 35px 12px;
    box-shadow: var(--shadow-polaire);
    transform: rotate(-1.5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.photo-polaire img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #E5E7EB;
    border-radius: 1px;
}

.photo-polaire:hover {
    transform: rotate(0deg) scale(1.02);
}

.check-list li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.meta-list {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    font-style: italic;
    opacity: 0.7;
}

.gift-verdict {
    margin-top: var(--space-xl);
    text-align: center;
    border-top: 1px dashed var(--color-secondary);
    padding-top: var(--space-xl);
}

/* Specific page tweaks for the header */
.main-header {
    padding: 0;
    border-bottom: none;
    background: linear-gradient(135deg, var(--color-night-sky) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Subtle stars pattern in header */
.main-header::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.blogger-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.pic-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
    transition: transform 0.3s ease;
}

.pic-img:hover {
    transform: scale(1.05);
}

.blog-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-tagline {
    font-size: 1.1rem;
    color: var(--color-gold-light);
    font-style: italic;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    font-style: italic;
    color: var(--color-cta);
    opacity: 0.9;
}

.emphasize {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin: var(--space-md) 0 !important;
    border-left: 3px solid var(--color-gold);
    padding-left: var(--space-md);
}

/* Placeholder specialized per gift */
.placeholder-mushaf {
    background: #DBCDC4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
}

.placeholder-veilleuse {
    background: #C4D3DB;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.testimonial-item {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stars {
    color: #D4AF37;
    margin-bottom: var(--space-xs);
}

.quote {
    font-style: italic;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.author {
    font-weight: 600;
    font-size: 0.85rem;
    text-align: right;
    color: var(--color-primary);
}

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

.faq-item {
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: var(--space-md);
}

.faq-item h3 {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.stock-warning {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    color: #C53030;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin: var(--space-lg) 0;
    font-weight: 600;
}

.signature {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .section-padding {
        padding: var(--space-xl) 0;
    }
}