/* ═══════════════════════════════════════════════
   Heavenly Scents From Hell — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
    --black: #050505;
    --deep-black: #090706;
    --charcoal: #141414;
    --stone: #1E1E1E;
    --dark-gray: #2A2A2A;
    --gold: #C59A2E;
    --gold-muted: #9F7828;
    --bronze: #A96A45;
    --copper-dark: #7A432C;
    --blood-red: #7A0000;
    --hell-red: #D71919;
    --crimson: #4B0505;
    --flame: #FF5A00;
    --cream: #F4D38A;
    --smoke: #9A9A9A;
    --parchment: #E8D6B0;
    --font-display: 'Cinzel Decorative', 'Cinzel', serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', 'Lora', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ── Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: .6rem 1.4rem;
    font-family: var(--font-heading);
    font-size: .9rem;
    text-decoration: none;
    z-index: 100000;
    border-radius: 0 0 6px 6px;
    transition: top .2s;
}
.skip-link:focus {
    top: 0;
    outline: none;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    width: auto;
    position: static !important;
}
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

body {
    background-color: var(--black);
    color: var(--parchment);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    background-image: radial-gradient(ellipse at 50% 0%, #1a0a05 0%, var(--black) 70%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--gold); font-weight: 700; line-height: 1.2; }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; }

a { color: var(--parchment); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--gold); }

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

.section-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── Buttons ── */
.btn {
    display: inline-block; padding: 14px 32px; font-family: var(--font-heading);
    font-size: .85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid transparent; cursor: pointer; transition: all .3s ease; text-align: center;
}
.btn--primary {
    background: var(--hell-red); color: #fff; border-color: var(--hell-red);
}
.btn--primary:hover {
    background: #ff2222; color: #fff; box-shadow: 0 0 20px rgba(215,25,25,.5); transform: translateY(-2px);
}
.btn--outline {
    background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn--outline:hover {
    background: rgba(197,154,46,.1); box-shadow: 0 0 15px rgba(197,154,46,.25);
}

/* ── Announcement Bar ── */
.announcement-bar {
    background: var(--deep-black); border-bottom: 1px solid var(--dark-gray);
    padding: 8px 0; text-align: center; font-family: var(--font-heading);
    font-size: .7rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase;
}
.announcement-bar__inner { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.announcement-bar__sep { opacity: .4; font-size: .6rem; }

/* ── Site Header ── */
.site-header { background: rgba(5,5,5,.95); border-bottom: 1px solid rgba(197,154,46,.15); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 40px; max-width: 1400px; margin: 0 auto; }

.nav-left .nav-menu { list-style: none; display: flex; gap: 28px; }
.nav-left .nav-menu li a { font-family: var(--font-heading); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--parchment); }
.nav-left .nav-menu li a:hover { color: var(--gold); }

.site-header .site-branding .site-logo { height: 80px; width: auto; max-height: 80px; transition: filter .3s; }
.site-header .site-branding .site-logo:hover { filter: drop-shadow(0 0 10px rgba(197,154,46,.5)); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.header-search { position: relative; }
.header-search input {
    background: transparent; border: 1px solid var(--dark-gray); color: var(--parchment);
    padding: 8px 36px 8px 14px; border-radius: 20px; font-family: var(--font-body);
    font-size: .85rem; width: 200px; transition: border-color .3s;
}
.header-search input:focus { border-color: var(--gold); outline: none; }
.header-search button { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gold); cursor: pointer; }

.header-actions { display: flex; gap: 14px; align-items: center; }
.header-action { color: var(--gold); transition: color .3s; position: relative; }
.header-action:hover { color: var(--cream); }
.cart-count {
    position: absolute; top: -6px; right: -8px; background: var(--hell-red); color: #fff;
    font-size: .6rem; min-width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
}

.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: all .3s; }

/* ── Hero Section ── */
.hero-section {
    min-height: 80vh; display: flex; align-items: center;
    padding: 60px 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(122,0,0,.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(197,154,46,.08) 0%, transparent 50%),
                var(--black);
}
.hero-section__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 0 60px; width: 100%; gap: 40px; }

.hero-content { max-width: 550px; }
.hero-title { font-family: var(--font-display); margin-bottom: 24px; }
.hero-title__line1 { display: block; font-size: 4rem; color: var(--gold); text-shadow: 0 4px 20px rgba(0,0,0,.8); }
.hero-title__line2 { display: block; font-size: 4rem; color: var(--hell-red); text-shadow: 0 4px 20px rgba(0,0,0,.8); }
.hero-subtitle { font-size: 1.15rem; color: var(--parchment); margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-emblem { flex-shrink: 0; }
.hero-emblem__img { max-width: 460px; }

/* ── Section Headings ── */
.section-heading { text-align: center; margin-bottom: 50px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.section-heading__title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 3px; }
.section-heading__ornament { color: var(--gold-muted); font-size: .8rem; }
.section-heading::before, .section-heading::after { content: ''; flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-muted), transparent); }

/* ── Best Sellers ── */
.best-sellers { padding: 80px 0; }
.best-sellers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.product-card {
    background: var(--stone); border: 1px solid var(--dark-gray); position: relative;
    transition: all .4s ease; overflow: hidden;
}
.product-card:hover { border-color: var(--gold-muted); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.6), 0 0 20px rgba(197,154,46,.08); }
.product-card__link { display: block; color: inherit; }
.product-card__image { aspect-ratio: 1; overflow: hidden; background: var(--charcoal); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__placeholder { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: var(--charcoal); }

.product-card__info { padding: 18px; }
.product-card__name { font-family: var(--font-heading); font-size: 1rem; color: var(--parchment); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.product-card__notes { display: block; font-size: .8rem; color: var(--smoke); margin-bottom: 8px; }
.product-card__rating { margin-bottom: 8px; }
.star { color: var(--dark-gray); font-size: .9rem; }
.star--filled { color: var(--gold); }
.product-card__review-count { font-size: .75rem; color: var(--smoke); margin-left: 4px; }
.product-card__price { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); font-weight: 700; }

.product-card__add {
    position: absolute; bottom: 18px; right: 18px; width: 36px; height: 36px;
    border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: var(--gold); transition: all .3s; background: transparent;
}
.product-card__add:hover { background: var(--gold); color: var(--black); }

.section-cta { text-align: center; margin-top: 40px; }

/* ── Cursed Bundles ── */
.cursed-bundles { padding: 80px 0; background: var(--deep-black); border-top: 1px solid var(--dark-gray); border-bottom: 1px solid var(--dark-gray); }
.cursed-bundles__inner { display: flex; align-items: center; gap: 60px; }
.cursed-bundles__image { flex: 1; }
.cursed-bundles__placeholder { width: 100%; aspect-ratio: 4/3; background: var(--charcoal); border: 1px solid var(--dark-gray); display: flex; align-items: center; justify-content: center; }
.cursed-bundles__content { flex: 1; }
.cursed-bundles__label { font-family: var(--font-heading); font-size: .75rem; letter-spacing: 3px; color: var(--smoke); text-transform: uppercase; display: block; margin-bottom: 8px; }
.cursed-bundles__title { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); margin-bottom: 12px; }
.cursed-bundles__text { margin-bottom: 20px; }
.cursed-bundles__features { list-style: none; margin-bottom: 30px; }
.cursed-bundles__features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--cream); font-size: .95rem; }

/* ── Scent Notes ── */
.scent-notes { padding: 80px 0; }
.scent-notes__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.scent-note-tile {
    padding: 28px 12px; border: 1px solid var(--dark-gray); background: rgba(30,30,30,.5);
    text-align: center; transition: all .3s; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scent-note-tile:hover { border-color: var(--gold); background: rgba(197,154,46,.05); transform: translateY(-4px); }
.scent-note-tile__name { font-family: var(--font-heading); font-size: .7rem; letter-spacing: 2px; color: var(--parchment); }

/* ── Story Section ── */
.story-section { padding: 80px 0; border-top: 1px solid var(--dark-gray); }
.story-section__inner { display: flex; align-items: center; gap: 40px; }
.story-section__image { flex: 1; }
.story-section__placeholder { width: 100%; aspect-ratio: 4/3; background: var(--charcoal); border: 1px solid var(--dark-gray); display: flex; align-items: center; justify-content: center; }
.story-section__content { flex: 1.2; }
.story-section__label { font-family: var(--font-heading); font-size: .75rem; letter-spacing: 3px; color: var(--smoke); display: block; margin-bottom: 8px; }
.story-section__title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 16px; }
.story-section__text { margin-bottom: 28px; line-height: 1.9; }
.story-section__features { flex: .8; display: flex; flex-direction: column; gap: 24px; }
.feature-badge { display: flex; align-items: center; gap: 14px; font-family: var(--font-heading); font-size: .75rem; letter-spacing: 1.5px; color: var(--cream); line-height: 1.4; }

/* ── Newsletter ── */
.newsletter-section { padding: 60px 0; background: radial-gradient(ellipse at center, rgba(122,0,0,.12), transparent 70%); }
.newsletter-section__inner { text-align: center; max-width: 500px; margin: 0 auto; }
.newsletter-section__title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 12px; }
.newsletter-section__text { margin-bottom: 24px; color: var(--smoke); }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; background: transparent; border: 1px solid var(--dark-gray); border-right: none; padding: 12px 16px; color: var(--parchment); font-family: var(--font-body); font-size: .95rem; }
.newsletter-form input:focus { border-color: var(--gold); outline: none; }
.newsletter-form .btn { border-radius: 0; }

/* ── Footer ── */
.footer-widgets { background: var(--deep-black); border-top: 2px solid var(--dark-gray); padding: 60px 0; }
.footer-widgets__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 30px; }
.footer-logo { width: 100px; margin-bottom: 14px; }
.footer-desc { font-size: .85rem; color: var(--smoke); margin-bottom: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--gold); transition: color .3s; }
.footer-social a:hover { color: var(--cream); }

.footer-col__title { font-family: var(--font-heading); font-size: .85rem; letter-spacing: 2px; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .9rem; color: var(--smoke); }
.footer-col a:hover { color: var(--gold); }

.footer-col--newsletter p { font-size: .85rem; color: var(--smoke); margin-bottom: 14px; }
.footer-newsletter-form { display: flex; }
.footer-newsletter-form input { flex: 1; background: transparent; border: 1px solid var(--dark-gray); padding: 10px 14px; color: var(--parchment); font-family: var(--font-body); }
.footer-newsletter-form button { background: var(--dark-gray); border: 1px solid var(--dark-gray); color: var(--gold); padding: 10px 14px; cursor: pointer; transition: all .3s; }
.footer-newsletter-form button:hover { background: var(--gold); color: var(--black); }

.footer-bottom { padding: 20px 40px; border-top: 1px solid var(--dark-gray); font-size: .8rem; color: var(--smoke); background: var(--black); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--smoke); font-size: .75rem; transition: color .3s; }
.footer-legal a:hover { color: var(--gold); }
.footer-credit { font-size: .7rem; color: var(--smoke); }
.footer-credit a { color: var(--gold-muted); transition: color .3s; }
.footer-credit a:hover { color: var(--gold); }

/* ── 404 ── */
.error-404__inner { text-align: center; padding: 120px 20px; }
.error-404__title { font-family: var(--font-display); font-size: 8rem; color: var(--hell-red); text-shadow: 0 0 40px rgba(215,25,25,.3); }
.error-404__subtitle { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 20px; }
.error-404__actions { margin-top: 30px; display: flex; justify-content: center; gap: 16px; }

/* ── Page / Single Content ── */
.page-content, .single-content, .archive-content, .search-content { padding: 60px 0; }
.entry-title { margin-bottom: 24px; }
.entry-content { font-size: 1.05rem; line-height: 1.9; }
.entry-content p { margin-bottom: 1.2em; }
.entry-meta { font-size: .85rem; color: var(--smoke); margin-bottom: 30px; }
.entry-featured { margin-bottom: 30px; border: 1px solid var(--dark-gray); }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: var(--stone); border: 1px solid var(--dark-gray); transition: border-color .3s; }
.post-card:hover { border-color: var(--gold-muted); }
.post-card__content { padding: 20px; }
.post-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.post-card__title a { color: var(--gold); }
.post-card__excerpt { font-size: .9rem; color: var(--smoke); margin-bottom: 12px; }
.post-card__link { font-family: var(--font-heading); font-size: .75rem; letter-spacing: 1.5px; color: var(--hell-red); text-transform: uppercase; }

.search-title span { color: var(--gold); }
