/* ═══════════════════════════════════════
   THEME PARFUMS — Main CSS
   Design: Luxe minimaliste — Elijah × Notes-de-Parfums
   Palette: noir #121212 / blanc / or #C9A84C
   Fonts: Inter (body), Titan One (titles)
   ═══════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #121212;
    --white: #ffffff;
    --gold: #C9A84C;
    --gold-light: #d4b966;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-700: #404040;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Inter', sans-serif;
    --container: 1400px;
    --header-h: 64px;
    --banner-h: 36px;
    --radius: 0px;
    --radius-sm: 0px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html { overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.tp-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Buttons ─── */
.tp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 0;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.tp-btn-primary {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}
.tp-btn-primary:hover {
    background: var(--white);
    color: var(--black);
}

.tp-btn-outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}
.tp-btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.tp-btn-hero {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 16px 44px;
    font-size: 11px;
    letter-spacing: 0.15em;
}
.tp-btn-hero:hover {
    background: var(--white);
    color: var(--black);
}

.tp-btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}
.tp-btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

.tp-btn-full { width: 100%; }
.tp-btn-sm { padding: 8px 16px; font-size: 10px; }
.tp-btn-lg { padding: 16px 40px; font-size: 12px; }

/* ─── Top Banner ─── */
/* Announcement banner — Elijah style */
.tp-top-banner {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .tp-top-banner {
        font-size: 0.7rem;
        padding: 8px 12px;
        min-height: 33px;
        letter-spacing: 0.04em;
    }
}
.tp-top-banner strong { font-weight: 700; color: var(--gold); }

/* ─── Header — Elijah style (compact) ─── */
.tp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #f0f0f0;
    height: 56px;
    transition: background var(--transition), box-shadow var(--transition);
}
@media (max-width: 768px) {
    .tp-header {
        height: 50px;
    }
}

.tp-header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.tp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

/* Logo a gauche */
.tp-header-logo {
    flex: 0 0 auto;
}
.tp-header-logo a, .tp-logo-text {
    font-family: var(--font-title);
    font-size: 20px;
    color: var(--black);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.tp-header-logo img { max-height: 44px; width: auto; }

/* Desktop Nav — centre */
.tp-nav-desktop {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 1024px) {
    .tp-nav-desktop { display: block; }
}

.tp-nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.tp-nav-list li { position: relative; }

.tp-nav-list > li > a {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 0;
    transition: color var(--transition);
    position: relative;
}
.tp-nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.tp-nav-list > li > a:hover { color: var(--black); }
.tp-nav-list > li > a:hover::after { width: 100%; }

/* Dropdown */
.tp-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}
.tp-nav-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tp-nav-list .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}
.tp-nav-list .sub-menu a:hover {
    background: var(--gray-50);
    color: var(--gold);
    padding-left: 26px;
}

/* Header actions a droite */
.tp-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.tp-header-icon {
    position: relative;
    padding: 4px;
    color: var(--black);
    transition: color var(--transition);
}
.tp-header-icon:hover { color: var(--gold); }

.tp-cart-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

/* Mobile menu toggle */
.tp-mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.tp-mobile-menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: all var(--transition);
}
@media (min-width: 1024px) {
    .tp-mobile-menu-toggle { display: none; }
}

/* ─── Mobile Menu ─── */
.tp-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85vw;
    max-width: 360px;
    height: 100vh;
    background: var(--black);
    color: var(--white);
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.tp-mobile-menu.open { left: 0; }

.tp-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tp-mobile-menu-header .tp-logo-text { color: var(--white); font-size: 16px; }
.tp-mobile-menu-header img { max-height: 36px; filter: brightness(0) invert(1); }

.tp-mobile-menu-close {
    color: var(--white);
    font-size: 24px;
    padding: 4px;
    opacity: 0.6;
    transition: opacity var(--transition);
}
.tp-mobile-menu-close:hover { opacity: 1; }

.tp-mobile-nav { padding: 16px 0; }
.tp-mobile-nav-list > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.tp-mobile-nav-list > li > a {
    display: block;
    padding: 16px 24px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition);
}
.tp-mobile-nav-list > li > a:hover { color: var(--gold); }
.tp-mobile-nav-list .sub-menu { padding-left: 16px; }
.tp-mobile-nav-list .sub-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 12px;
    opacity: 0.6;
    text-transform: none;
    letter-spacing: 0.02em;
}
.tp-mobile-nav-list .sub-menu a:hover { opacity: 1; color: var(--gold); }

.tp-mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(2px);
}
.tp-mobile-menu-overlay.open { display: block; }

/* ─── Search Overlay ─── */
.tp-search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(18,18,18,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.tp-search-overlay.open { display: flex; }

.tp-search-overlay-inner {
    width: 90%;
    max-width: 640px;
    position: relative;
}
.tp-search-form {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.tp-search-input {
    flex: 1;
    padding: 16px 0;
    font-size: 18px;
    border: none;
    background: transparent;
    color: var(--white);
    border-radius: 0;
    font-family: var(--font-body);
    outline: none;
}
.tp-search-input::placeholder { color: rgba(255,255,255,0.4); }
.tp-search-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--white);
    font-size: 32px;
    opacity: 0.6;
    transition: opacity var(--transition);
}
.tp-search-close:hover { opacity: 1; }

/* ═══════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════ */
.tp-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
@media (max-width: 768px) {
    .tp-hero { height: 70vh; }
}

.tp-hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.tp-hero-slide.active { opacity: 1; }

.tp-hero-slide-1 { background-color: #1a0e06; background-image: url('../images/hero-slide-1.jpg'); background-size: cover; background-position: center; }
.tp-hero-slide-2 { background-color: #1a0a06; background-image: url('../images/hero-slide-2.jpg'); background-size: cover; background-position: center; }
.tp-hero-slide-3 { background-color: #1a150e; background-image: url('../images/hero-slide-3.jpg'); background-size: cover; background-position: center top; }

.tp-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}

.tp-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.tp-hero-eyebrow {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 20px;
}

.tp-hero-content h1,
.tp-hero-content .tp-hero-title {
    font-family: var(--font-title);
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 1;
    max-width: none;
}
.tp-hero-content p {
    font-size: clamp(13px, 1.5vw, 16px);
    max-width: 480px;
    margin-bottom: 36px;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 0.04em;
}

/* Hero nav — minimaliste */
.tp-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.tp-hero-nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}
.tp-hero-prev { left: 24px; }
.tp-hero-next { right: 24px; }

/* Hero progress bar doree */
.tp-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}
.tp-hero-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s linear;
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.tp-section {
    padding: 80px 0;
}
@media (max-width: 768px) {
    .tp-section { padding: 52px 0; }
}

/* Titre de section : uppercase + accent dore */
.tp-section-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.tp-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.tp-section-header .tp-section-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

.tp-section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-top: 8px;
}

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

.tp-section-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 12px;
    text-align: center;
}

/* ─── Products Horizontal Scroll ─── */
.tp-products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.tp-products-scroll::-webkit-scrollbar { display: none; }

.tp-product-card-scroll {
    flex: 0 0 200px;
    scroll-snap-align: start;
}
@media (max-width: 480px) {
    .tp-product-card-scroll { flex: 0 0 160px; }
}

/* ─── Product Card ─── */
.tp-product-card,
.tp-product-card-scroll {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tp-product-card:hover,
.tp-product-card-scroll:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

.tp-product-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.tp-product-card-img {
    display: block;
    width: 100%;
    overflow: hidden;
    background: var(--gray-100);
}
.tp-product-card-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-width: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tp-product-card:hover .tp-product-card-img img,
.tp-product-card-scroll:hover .tp-product-card-img img {
    transform: scale(1.04);
}

.tp-product-card-body {
    padding: 12px 12px 10px;
    flex: 1;
}

.tp-card-atc {
    display: block;
    text-align: center;
    background: #121212;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 12px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}
.tp-card-atc:hover {
    background: #333;
    color: #fff !important;
}

.tp-product-card-title,
.woocommerce-loop-product__title {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.3;
    color: rgb(18, 18, 18);
    margin-top: 0;
}

.tp-product-card-inspiration {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-style: italic;
    color: #666666;
    display: block;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tp-inspo-label {
    color: var(--gold);
    font-weight: 600;
    font-size: inherit;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}

.tp-product-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gold);
}
.tp-rating-count { color: var(--gray-500); font-size: 11px; }

.tp-product-card-price,
.woocommerce ul.products li.product .price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
    color: rgb(18, 18, 18);
    margin-top: 6px;
    text-align: left !important;
}

/* Badge Epuise */
.tp-badge-out {
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 0;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Badge nouveau */
.tp-badge-new {
    position: absolute;
    top: 10px;
    right: 0;
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 0;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Stock low badge */
.tp-stock-low {
    color: #b91c1c;
    font-size: 12px;
    font-weight: 600;
    margin: 6px 0;
    letter-spacing: 0.03em;
}

/* ─── Bundle Promo Section ─── */
.tp-section-bundle-promo {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.tp-bundle-promo-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 52px 48px;
}
@media (max-width: 768px) {
    .tp-bundle-promo-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
}

.tp-bundle-promo-text h2 {
    font-family: var(--font-title);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.tp-bundle-promo-text p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 24px;
    max-width: 400px;
    line-height: 1.7;
}

.tp-bundle-promo-bottles {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}
.tp-bundle-bottle {
    width: 56px;
    height: 76px;
    background: var(--gold);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 22px;
    transition: transform var(--transition);
}
.tp-bundle-bottle:hover { transform: translateY(-4px); }

/* ─── Reassurance ─── */
.tp-section-reassurance {
    border-top: 1px solid var(--gray-200);
    padding: 48px 0;
}

.tp-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
@media (max-width: 768px) {
    .tp-reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
    .tp-reassurance-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

.tp-reassurance-icon {
    color: var(--gold);
    margin-bottom: 12px;
}

.tp-reassurance-item h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
}
.tp-reassurance-item p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ─── Trust Badges (product page) ─── */
.tp-trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid var(--gray-200);
}
.tp-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-700);
    letter-spacing: 0.03em;
}
.tp-trust-badge svg, .tp-trust-badge i {
    color: var(--gold);
}

/* ═══════════════════════════════════════
   SHOP / ARCHIVE PRODUCT
   ═══════════════════════════════════════ */
.tp-main-content {
    padding: 32px 0 80px;
}

/* Product grid (WooCommerce + Related + Upsells + Homepage) */
.woocommerce ul.products,
.related.products ul.products,
.up-sells ul.products,
.tp-section ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    padding: 0 !important;
    list-style: none !important;
    margin: 0 0 2em !important;
}
@media (max-width: 1024px) {
    .woocommerce ul.products,
    .related.products ul.products,
    .up-sells ul.products,
    .tp-section ul.products { grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }
}
@media (max-width: 768px) {
    .woocommerce ul.products,
    .related.products ul.products,
    .up-sells ul.products,
    .tp-section ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

.woocommerce ul.products li.product,
.related.products ul.products li.product,
.up-sells ul.products li.product,
.tp-section ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 24px;
    padding: 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.woocommerce-breadcrumb a { color: var(--gray-500); transition: color var(--transition); }
.woocommerce-breadcrumb a:hover { color: var(--gold); }

/* Sort / Result count */
.woocommerce-ordering select {
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 12px;
    background: var(--white);
    outline: none;
    cursor: pointer;
}

.woocommerce-result-count {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}

/* Pagination */
.woocommerce-pagination {
    margin-top: 48px;
    text-align: center;
}
.woocommerce-pagination ul {
    display: inline-flex;
    gap: 4px;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    border-radius: 0;
    font-size: 12px;
    transition: all var(--transition);
    letter-spacing: 0.04em;
}
.woocommerce-pagination ul li a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.woocommerce-pagination ul li span.current {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ═══════════════════════════════════════
   SINGLE PRODUCT
   ═══════════════════════════════════════ */
.single-product .tp-main-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 32px 24px 80px;
}

/* Product layout is defined in the Notes-de-Parfums section below */

.woocommerce div.product .product_title {
    font-family: var(--font-title);
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.1;
}

.woocommerce div.product .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.woocommerce div.product .price del {
    color: var(--gray-300);
    font-size: 16px;
    font-weight: 400;
}
.woocommerce div.product .price ins {
    text-decoration: none;
    color: var(--black);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Add to cart */
.woocommerce div.product form.cart {
    margin: 20px 0;
    display: flex;
    gap: 0;
    align-items: stretch;
}

.woocommerce div.product form.cart .qty {
    width: 56px;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid var(--gray-200);
    border-right: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

/* Old ATC button — see Elijah-style below */

/* Product tabs — positioned in right column */

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 28px;
    padding-top: 8px;
}
.woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}
.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    color: var(--gray-500);
}
.woocommerce-tabs ul.tabs li.active a {
    border-bottom-color: var(--gold);
    color: var(--black);
}
.woocommerce-tabs ul.tabs li a:hover { color: var(--black); }

/* Note bars (progress bars descriptions) */
.woocommerce div.product .description div[style*="display:flex"] {
    transition: all var(--transition);
}
.woocommerce div.product .description div[style*="display:flex"]:hover div[style*="border-radius:4px"] {
    filter: brightness(1.1);
}

/* ═══════════════════════════════════════
   SIDE CART
   ═══════════════════════════════════════ */
.tp-side-cart {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 95vw;
    height: 100vh;
    background: var(--white);
    z-index: 9995;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--gray-200);
}
.tp-side-cart.open { right: 0; }

.tp-side-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}
.tp-side-cart-header h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.tp-side-cart-close {
    font-size: 22px;
    color: var(--gray-500);
    transition: color var(--transition);
    cursor: pointer;
}
.tp-side-cart-close:hover { color: var(--black); }

.tp-side-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.tp-side-cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    transition: background var(--transition);
}
.tp-side-cart-item:hover { background: var(--gray-50); }

.tp-side-cart-item-img {
    width: 72px;
    height: 96px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100);
}
.tp-side-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-side-cart-item-info { flex: 1; min-width: 0; }
.tp-side-cart-item-name {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin-bottom: 4px;
}
.tp-side-cart-item-variant {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.tp-side-cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}
.tp-side-cart-item-remove {
    font-size: 10px;
    color: var(--gray-500);
    text-decoration: underline;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color var(--transition);
}
.tp-side-cart-item-remove:hover { color: var(--black); }

.tp-side-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gray-200);
}
.tp-side-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.tp-side-cart-subtotal span:first-child {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}
.tp-side-cart-subtotal span:last-child {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.tp-side-cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(18,18,18,0.4);
    z-index: 9994;
    display: none;
    backdrop-filter: blur(1px);
}
.tp-side-cart-overlay.open { display: block; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.tp-footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 36px;
}

.tp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
@media (max-width: 768px) {
    .tp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .tp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.tp-footer-logo { margin-bottom: 20px; }
.tp-footer-logo .tp-logo-text {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tp-footer-logo img { max-height: 36px; filter: brightness(0) invert(1); }

.tp-footer-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
}

.tp-footer-social {
    display: flex;
    gap: 16px;
}
.tp-footer-social a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
    font-size: 14px;
}
.tp-footer-social a:hover { color: var(--gold); }

.tp-footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: var(--white);
}
.tp-footer-col ul li { margin-bottom: 12px; }
.tp-footer-col ul a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tp-footer-col ul a:hover { color: var(--gold); }

.tp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.tp-footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tp-payment-icons {
    display: flex;
    gap: 8px;
}
.tp-payment-icons img { opacity: 0.5; transition: opacity var(--transition); }
.tp-payment-icons img:hover { opacity: 0.9; }

.tp-footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tp-footer-geo {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-top: 8px;
}
.tp-footer-geo a {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    transition: color var(--transition);
}
.tp-footer-geo a:hover { color: rgba(255,255,255,0.5); }

/* ─── Scroll to Top ─── */
.tp-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 900;
    border: 1px solid rgba(255,255,255,0.1);
}
.tp-scroll-top.visible { opacity: 1; visibility: visible; }
.tp-scroll-top:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ─── Toast Notifications ─── */
.tp-toast-container {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tp-toast {
    background: rgba(20,20,20,0.25) !important;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    box-shadow: none;
    animation: tpToastIn 0.3s ease, tpToastOut 0.3s ease 2.7s forwards;
    max-width: 300px;
    border-left: 2px solid var(--gold);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
@keyframes tpToastIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tpToastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-8px); } }

/* ─── Fly-to-cart ─── */
.tp-fly-to-cart { pointer-events: none; }
.tp-fly-to-cart img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes tpCartBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.45); }
    60%  { transform: scale(0.88); }
    80%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}
.tp-cart-bounce { animation: tpCartBounce 0.5s cubic-bezier(0.36,0.07,0.19,0.97); }

/* ─── Cookie Banner ─── */
.tp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 16px 0;
    z-index: 9990;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.08);
}
.tp-cookie-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.tp-cookie-inner p {
    font-size: 12px;
    color: var(--gray-700);
    flex: 1;
    letter-spacing: 0.02em;
}
.tp-cookie-inner a { color: var(--gold); text-decoration: underline; }
.tp-cookie-actions { display: flex; gap: 10px; }

/* ─── Newsletter Popup ─── */
.tp-newsletter-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tp-newsletter-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(18,18,18,0.65);
    backdrop-filter: blur(4px);
}
.tp-newsletter-content {
    position: relative;
    background: var(--white);
    padding: 48px;
    border-radius: 0;
    max-width: 440px;
    width: 90%;
    text-align: center;
}
.tp-newsletter-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 22px;
    color: var(--gray-500);
    transition: color var(--transition);
    cursor: pointer;
}
.tp-newsletter-close:hover { color: var(--black); }

.tp-newsletter-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 12px;
}

.tp-newsletter-content h3 {
    font-family: var(--font-title);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.tp-newsletter-content p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}
.tp-newsletter-form { display: flex; gap: 0; }
.tp-newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-right: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
}
.tp-newsletter-input:focus { border-color: var(--black); }
.tp-newsletter-small {
    font-size: 10px;
    color: var(--gray-500);
    margin-top: 14px;
    letter-spacing: 0.04em;
}

/* ─── Spinner ─── */
.tp-spinner {
    width: 20px; height: 20px;
    border: 1.5px solid var(--gray-200);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: tpSpin 0.7s linear infinite;
    margin: 0 auto;
}
@keyframes tpSpin { to { transform: rotate(360deg); } }

/* ─── 404 Page ─── */
.tp-404 {
    text-align: center;
    padding: 100px 24px;
}
.tp-404 h1 {
    font-family: var(--font-title);
    font-size: 96px;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1;
}
.tp-404 p {
    font-size: 16px;
    color: var(--gray-700);
    margin: 20px 0 36px;
    letter-spacing: 0.04em;
}

/* ─── WooCommerce overrides ─── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: 2px solid var(--gold);
    border-radius: 0;
    background: var(--gray-50);
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--gold);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--black);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: 0;
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: var(--font-body);
    transition: all var(--transition);
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--white);
    color: var(--black);
}

/* ─── FOMO ─── */
.tp-fomo {
    margin: 10px 0;
    padding: 10px 0;
}
.tp-fomo-viewers {
    font-size: 12px;
    color: #b91c1c;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}
.tp-fomo-dot {
    width: 7px;
    height: 7px;
    background: #b91c1c;
    border-radius: 50%;
    display: inline-block;
    animation: tpPulse 1.5s ease infinite;
    flex-shrink: 0;
}
@keyframes tpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
.tp-fomo-sales {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* ─── Sticky ATC Mobile ─── */
.tp-sticky-atc {
    display: none;
}
@media (max-width: 768px) {
    .tp-sticky-atc {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #121212;
        padding: 12px 16px;
        z-index: 999;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        border: none;
    }
    .tp-sticky-atc-info {
        flex: 1;
        min-width: 0;
        color: #fff;
    }
    .tp-sticky-atc-name {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: rgba(255,255,255,0.7);
    }
    .tp-sticky-atc-price {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: #fff;
    }
    .tp-sticky-atc .tp-btn {
        white-space: nowrap;
        flex-shrink: 0;
        background: #fff !important;
        color: #121212 !important;
        border: none !important;
        border-radius: 6px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 12px 20px !important;
    }
}

/* ─── Progress / Note bars ─── */
.tp-note-bar {
    margin: 4px 0;
}
.tp-note-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray-700);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tp-note-bar-track {
    height: 3px;
    background: var(--gray-200);
    width: 100%;
}
.tp-note-bar-fill {
    height: 100%;
    background: var(--gold);
    transition: width 0.6s ease;
}

/* ─── Stars rating ─── */
.tp-stars { color: var(--gold); letter-spacing: 1px; }
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before { color: var(--gold); }

/* ─── Utility ─── */
.tp-gold { color: var(--gold); }
.tp-uppercase { text-transform: uppercase; letter-spacing: 0.08em; }
.tp-text-center { text-align: center; }
.tp-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 40px 0;
}
.tp-divider-gold {
    height: 1px;
    background: var(--gold);
    margin: 40px 0;
    opacity: 0.4;
}

/* ═══════════════════════════════════════
   SINGLE PRODUCT — Notes-de-Parfums style
   ═══════════════════════════════════════ */

.single-product .tp-main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px 60px;
}

/* Breadcrumb */
.single-product .woocommerce-breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.single-product .woocommerce-breadcrumb a {
    color: #888;
    transition: color 0.2s;
}
.single-product .woocommerce-breadcrumb a:hover {
    color: var(--black);
}

/* Old grid — removed, see Elijah section below */

/* Old product layout — REMOVED. All product page CSS is in the Elijah section below. */

/* Hide WooCommerce default tabs — replaced by custom accordion in summary */
.woocommerce-tabs {
    display: none !important;
}

/* Old hide rules — moved to Elijah section below */

/* ═══════════════════════════════════════
   PRODUCT ACCORDION — in summary column
   ═══════════════════════════════════════ */
.tp-product-accordion {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
}
.tp-pacc-item {
    border-bottom: 1px solid #e0e0e0;
}
.tp-pacc-item:last-child {
    border-bottom: none;
}
.tp-pacc-trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #121212 !important;
    background: none !important;
    border: none !important;
    cursor: pointer;
    font-family: var(--font-body);
}
.tp-pacc-trigger:hover {
    color: #C9A84C !important;
}
.tp-pacc-icon {
    font-size: 18px;
    font-weight: 300;
    color: #888;
    flex-shrink: 0;
}
.tp-pacc-content {
    padding: 0 0 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    overflow: hidden;
}
.tp-pacc-content p {
    margin-bottom: 6px;
    font-size: 13px;
}
.tp-pacc-content h3,
.tp-pacc-content strong {
    font-size: 12px;
    color: #121212;
}
/* Note bars inside accordion */
.tp-pacc-content div[style*="display:flex"] {
    margin: 3px 0 !important;
}

/* Specs table */
.tp-specs-table {
    width: 100%;
    font-size: 13px;
}
.tp-specs-table td {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.tp-specs-table td:first-child {
    color: #888;
    width: 40%;
}
.tp-specs-table td:last-child {
    font-weight: 600;
    color: #121212;
}

/* Related products are now OUTSIDE the product grid (moved via PHP hook) */
.related.products,
.up-sells {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
}
.tp-reviews-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
}

/* ═══════════════════════════════════════
   PRODUCT PAGE — Elijah-identical styling
   ═══════════════════════════════════════ */

/* Container */
.single-product .tp-main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px 60px;
}

/* Hide breadcrumb, zoom, meta, trust, FOMO, payment, tabs, quantity */
.single-product .woocommerce-breadcrumb,
.single-product .tp-trust-badges,
.single-product .tp-fomo,
.single-product .product_meta,
.single-product #wc-stripe-express-checkout-element,
.single-product [id*="stripe-express"],
.single-product [id*="payment-request"],
.single-product .wc-stripe-payment-request-wrapper,
.single-product .tp-footer-payment,
.single-product #payment,
.single-product .woocommerce-checkout-payment,
.woocommerce-tabs,
.woocommerce div.product div.images .woocommerce-product-gallery__trigger,
.woocommerce div.product div.images a::after {
    display: none !important;
}
.woocommerce div.product div.images a {
    cursor: default;
    pointer-events: none;
}

/* Two column grid — image larger like Elijah */
.woocommerce div.product {
    display: grid !important;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Left — Image column (scrollable, pas sticky) */
.woocommerce div.product div.images,
.woocommerce div.product .woocommerce-product-gallery {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    float: none !important;
    position: static;
    opacity: 1 !important;
}
.woocommerce-product-gallery { opacity: 1 !important; }

/* Custom gallery — 2 images empilées */
.tp-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tp-product-gallery__item {
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}
.tp-product-gallery__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #f5f5f5;
}

/* Right — Summary: sticky, s'arrête au bas de la galerie */
.woocommerce div.product div.summary {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: 110px;
    align-self: start;
}

@media (max-width: 768px) {
    .woocommerce div.product div.images,
    .woocommerce div.product .woocommerce-product-gallery {
        grid-column: 1 !important;
        grid-row: 1 !important;
        position: static !important;
    }
    .woocommerce div.product div.summary {
        grid-column: 1 !important;
        grid-row: 2 !important;
        position: static !important;
    }
}

/* ─── 1. Stars — small, orange, like Elijah ─── */
.tp-fragrantica-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.tp-fragrantica-stars {
    display: flex;
    align-items: center;
    gap: 0;
}
.tp-fr-star {
    font-size: 16px;
    line-height: 1;
}
.tp-fr-star.full { color: #f5a623; }
.tp-fr-star.half { color: #f5a623; opacity: 0.45; }
.tp-fr-star.empty { color: #e0e0e0; }
.tp-fragrantica-score,
.tp-fragrantica-sep { display: none !important; }
.tp-fragrantica-count {
    font-size: 13px;
    font-weight: 700;
    color: #121212;
}

/* ═══════════════════════════════════
   HIÉRARCHIE TYPOGRAPHIQUE — Luxe minimaliste
   ═══════════════════════════════════ */

/* Background page produit */
.single-product .tp-main-content { background: #ffffff; }
body.single-product { background: #ffffff; }

/* ─── 1. Nom du produit ─── */
.woocommerce div.product .product_title,
.tp-title-price-row .product_title {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1.05;
    color: rgb(18, 18, 18);
    margin: 0 0 4px;
    display: inline;
}

/* ─── Ligne titre + prix ─── */
.tp-title-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}
.tp-title-price-row .product_title { flex: 1; }

/* ─── 2. Prix ─── */
.tp-price-inline {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
    color: rgb(18, 18, 18);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ─── 3. Notes olfactives (short description) ─── */
.tp-short-desc {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-style: italic;
    color: #666666;
    display: block;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.6;
}
.tp-product-ml,
.tp-card-ml {
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-transform: uppercase;
}
/* Hide WooCommerce default title/price (we render our own) */
.woocommerce div.product .summary > .product_title,
.woocommerce div.product .summary > .price,
.woocommerce div.product .summary > .woocommerce-product-details__short-description {
    display: none !important;
}
.woocommerce div.product .price del {
    color: #aaa;
    font-size: 16px;
    font-weight: 400;
}
.woocommerce div.product .price ins { text-decoration: none; }

/* ─── 4. Short description ─── */
.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 13px;
    color: #737373;
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    clear: both;
}

/* ─── 5. Bundle selector ─── */
.tp-bundle-selector {
    margin: 20px 0 24px;
    padding: 20px 0;
}
.tp-bundle-selector-options {
    display: flex;
    gap: 10px;
}
/* ─── Bundle buttons — Elijah size-selector identical ─── */
.tp-bundle-selector {
    margin: 8px 0 10px;
}
.tp-bundle-selector-options {
    display: flex;
    gap: 8px;
    padding-top: 14px; /* espace pour les badges flottants */
}
button.tp-bundle-opt {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 8px !important;
    border: 1px solid #d4d4d4 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #121212 !important;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s, color 0.12s;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    box-shadow: none !important;
    height: 42px;
    overflow: visible !important;
}
button.tp-bundle-opt:hover {
    border-color: #999 !important;
}
button.tp-bundle-opt.active {
    background: #121212 !important;
    color: #fff !important;
    border-color: #121212 !important;
}
/* Badge -10% / -20% flottant au-dessus du bouton */
.tp-bundle-opt-sub {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #C9A84C;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    display: block;
    opacity: 1;
    margin: 0;
    line-height: 1.6;
}
button.tp-bundle-opt.active .tp-bundle-opt-sub {
    background: #C9A84C;
    opacity: 1;
}

/* ─── Order Bump inside accordion — visible on all screens ─── */
.tp-pacc-trigger-static {
    cursor: default !important;
    padding: 14px 0 8px !important;
}
.tp-pacc-trigger-static:hover {
    color: #121212 !important;
}
.tp-bump-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.tp-bump-img {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}
.tp-bump-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.tp-bump-info { flex: 1; min-width: 0; }
.tp-bump-name {
    font-size: 13px; font-weight: 600; color: #121212; margin-bottom: 2px;
}
.tp-bump-inspo {
    font-size: 11px; color: #666666; font-style: italic; text-transform: none; margin-bottom: 4px;
}
.tp-bump-price {
    font-size: 13px; font-weight: 600; color: #121212; margin-bottom: 8px;
}
.tp-bump-card .tp-btn-sm {
    font-size: 10px !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
}

/* ─── 6. Progress bar (shipping) ─── */
.tp-product-progress-bar {
    margin: 12px 0 20px;
    padding: 12px 0;
}

/* ─── 7. Add to Cart button ─── */
.woocommerce div.product form.cart {
    margin: 0 0 0;
    display: block;
}
.woocommerce div.product form.cart .qty { display: none; }
.woocommerce div.product form.cart .single_add_to_cart_button {
    width: 100%;
    background: #121212;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 44px;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #2a2a2a;
}
.woocommerce div.product form.cart .single_add_to_cart_button::after {
    content: '';
    display: inline-block;
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ─── 8. Product Accordion ─── */
.tp-product-accordion {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
}
.tp-pacc-item { border-bottom: 1px solid #e0e0e0; }
.tp-pacc-trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #121212 !important;
    background: none !important;
    border: none !important;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.tp-pacc-trigger:hover { color: #C9A84C !important; }
.tp-pacc-icon { font-size: 18px; font-weight: 300; color: #888; flex-shrink: 0; }
.tp-pacc-content {
    padding: 0 0 14px;
    font-size: 13px; line-height: 1.6; color: #555;
    overflow: hidden;
}
.tp-pacc-content p { margin-bottom: 6px; font-size: 13px; }
.tp-pacc-content h3, .tp-pacc-content strong { font-size: 12px; color: #121212; }
.tp-pacc-content div[style*="display:flex"] { margin: 3px 0 !important; }
.tp-specs-table { width: 100%; font-size: 13px; }
.tp-specs-table td { padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.tp-specs-table td:first-child { color: #888; width: 40%; }
.tp-specs-table td:last-child { font-weight: 600; color: #121212; }

/* ─── 9. Sticky ATC Mobile ─── */
.tp-sticky-atc { display: none; }
@media (max-width: 768px) {
    .tp-sticky-atc {
        display: flex;
        position: fixed;
        bottom: 0; left: 0;
        width: 100%;
        background: #121212;
        padding: 12px 16px;
        z-index: 999;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        border: none;
    }
    .tp-sticky-atc-info { flex: 1; min-width: 0; color: #fff; }
    .tp-sticky-atc-name {
        font-size: 11px; font-weight: 600; text-transform: uppercase;
        letter-spacing: 0.06em; display: block;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        color: rgba(255,255,255,0.7);
    }
    .tp-sticky-atc-price { font-size: 16px; font-weight: 700; color: #fff; }
    .tp-sticky-atc .tp-btn {
        white-space: nowrap; flex-shrink: 0;
        background: #fff !important; color: #121212 !important;
        border: none !important; border-radius: 6px !important;
        font-size: 12px !important; font-weight: 700 !important;
        text-transform: uppercase; letter-spacing: 0.08em;
        padding: 12px 20px !important;
    }
}

/* ─── Tablette 769–1024px ─── */
@media (min-width: 769px) and (max-width: 1024px) {
    .tp-title-price-row .product_title,
    .woocommerce div.product .product_title {
        font-size: 1.8rem !important;
        letter-spacing: 0 !important;
    }
    .tp-price-inline { font-size: 1.4rem; letter-spacing: 0; }
    .tp-short-desc { font-size: 1rem; letter-spacing: 0; }
}

/* ─── 10-11. Image mobile full-bleed ─── */
@media (max-width: 768px) {
    .single-product .tp-main-content {
        padding: 0 !important;
        max-width: 100% !important;
    }
    .woocommerce div.product {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    .woocommerce div.product div.images,
    .woocommerce div.product .woocommerce-product-gallery {
        position: static !important;
        top: auto !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent;
    }

    /* Galerie mobile — scroll horizontal bord à bord, sans espace */
    .tp-product-gallery-wrapper {
        overflow: hidden;
    }
    .tp-product-gallery {
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 6px !important;
        padding: 0 !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .tp-product-gallery::-webkit-scrollbar { display: none; }
    .tp-product-gallery__item {
        flex: 0 0 78vw !important;
        width: 78vw !important;
        border-radius: 0 !important;
        scroll-snap-align: start;
        aspect-ratio: 1;
        overflow: hidden;
    }
    .tp-product-gallery__img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .woocommerce div.product div.summary {
        grid-column: 1;
        padding: 16px 16px 0 !important;
    }
    .tp-title-price-row {
        flex-direction: row;
        gap: 12px;
    }
    .tp-title-price-row .product_title,
    .woocommerce div.product .product_title {
        font-size: 1.6rem !important;
        font-weight: 600 !important;
        letter-spacing: 0 !important;
    }
    .tp-price-inline {
        font-size: 1.2rem;
        letter-spacing: 0;
    }
    .tp-short-desc {
        font-size: 0.75rem;
        letter-spacing: 0;
    }
    .tp-fragrantica-rating {
        margin-bottom: 12px;
    }
    .tp-fr-star {
        font-size: 14px;
    }
    .tp-fragrantica-count {
        font-size: 11px;
    }
    button.tp-bundle-opt {
        height: 44px !important;
        font-size: 12px !important;
        padding: 10px 6px !important;
    }
    .tp-price-inline {
        font-size: 20px;
    }
    .tp-fragrantica-rating { flex-wrap: wrap; gap: 6px; }
    .tp-fr-star { font-size: 18px; }
    .tp-fragrantica-count { font-size: 11px; }
    .tp-bundle-selector-options { gap: 8px; }
    button.tp-bundle-opt {
        padding: 12px 8px !important;
        min-height: 48px; font-size: 11px !important;
    }
    .tp-pacc-trigger { padding: 12px 0 !important; font-size: 12px !important; }
    .single-product { padding-bottom: 70px; }
    .tp-product-accordion { margin-left: 0; margin-right: 0; }
    .related.products, .tp-reviews-section { padding: 20px 16px !important; }
    .tp-reviews-header {
        flex-direction: column; align-items: center; gap: 12px; text-align: center;
    }
}

/* ─── 13. Reviews section ─── */
.related.products, .up-sells {
    max-width: 1200px; margin: 0 auto;
    padding: 40px 20px; border-top: 1px solid #e0e0e0;
}
.tp-reviews-section {
    max-width: 1200px; margin: 40px auto;
    padding: 40px 20px; border-top: 1px solid #e0e0e0;
}
.tp-reviews-header {
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px; margin-bottom: 28px;
}
.tp-reviews-title {
    font-size: 20px; font-weight: 700; color: #121212; margin: 0;
}
.tp-reviews-count { font-weight: 400; color: #888; font-size: 16px; }
.tp-review-write-btn { border-radius: 8px !important; padding: 12px 24px !important; white-space: nowrap; }
.tp-reviews-list { display: flex; flex-direction: column; gap: 20px; }
.tp-review-item {
    padding: 20px; border: 1px solid #e0e0e0; border-radius: 10px; background: #fafafa;
}
.tp-review-meta {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 10px;
}
.tp-review-author { font-weight: 600; font-size: 14px; color: #121212; }
.tp-review-date { font-size: 13px; color: #999; }
.tp-review-stars { display: flex; gap: 2px; }
.tp-star-full { color: #C9A84C; font-size: 15px; }
.tp-star-empty { color: #d4d4d4; font-size: 15px; }
.tp-review-text { font-size: 14px; color: #444; line-height: 1.6; margin: 0; }
.tp-reviews-empty { color: #888; font-size: 14px; text-align: center; padding: 32px 0; }
.tp-review-notice { font-size: 12px; color: #aaa; text-align: center; margin: 0; }

/* Review popup */
.tp-review-popup {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 10003;
    display: flex; align-items: center; justify-content: center;
}
.tp-review-popup-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.5);
}
.tp-review-popup-content {
    position: relative; background: #fff;
    padding: 32px; max-width: 480px; width: 90%;
    border-radius: 12px; display: flex; flex-direction: column; gap: 14px;
}
.tp-review-popup-close {
    position: absolute; top: 12px; right: 16px;
    font-size: 24px; color: #888;
    background: none; border: none; cursor: pointer;
}
.tp-review-popup-content h3 {
    font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 4px;
}
#tp-review-popup-stars { display: flex; justify-content: center; gap: 8px; }
#tp-review-popup-stars span { font-size: 36px; color: #d4d4d4; cursor: pointer; transition: color 0.15s; }
.tp-review-input, .tp-review-textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid #e0e0e0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 14px; resize: vertical;
}
.tp-review-textarea { min-height: 80px; }

/* ─── 14. Related products ─── */
.related.products h2, .up-sells h2 {
    font-size: 18px; font-weight: 700; margin-bottom: 24px;
}

/* ─── Prefers Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .tp-toast { animation: none !important; }
    .tp-hero-slide { transition: none !important; }
}

/* ─── Byline auteur articles ─── */
.tp-article-byline {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 16px;
}
.tp-article-byline strong { color: var(--black); }

/* ─── H1 boutique ─── */
.tp-shop-title {
    font-family: var(--font-title);
    font-size: clamp(24px, 4vw, 40px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.tp-shop-subtitle {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 32px;
}

/* Note bars labels */
.woocommerce div.product .description div[style*="display:flex"] span {
    font-size: 13px !important;
}

/* ─── Blog / Articles ─── */

/* Contenu article : espacement et lisibilité */
.tp-page-content {
    font-size: 15px;
    line-height: 1.85;
    color: #333;
}
.tp-page-content p {
    margin-bottom: 1.5rem;
}
.tp-page-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 500;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0ebe4;
}
.tp-page-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 500;
    color: #1a1a1a;
    margin: 2rem 0 0.75rem;
}
/* Mots-clés en doré — <strong> dans les articles */
.tp-page-content strong {
    color: var(--gold);
    font-weight: 600;
}
.tp-page-content em {
    font-style: italic;
    color: #555;
}
.tp-page-content ul,
.tp-page-content ol {
    margin: 0 0 1.5rem 1.5rem;
    line-height: 1.85;
}
.tp-page-content li {
    margin-bottom: 0.5rem;
}
.tp-page-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.tp-page-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}
/* Grille images produits insérée dans les articles */
.tp-blog-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 2rem 0;
}
.tp-blog-product-grid a {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    background: #fdf9f5;
    border: 1px solid #ede8e0;
    border-radius: 8px;
    padding: 12px;
    transition: box-shadow 0.2s;
}
.tp-blog-product-grid a:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.tp-blog-product-grid img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0;
}
.tp-blog-product-grid span {
    font-size: 11px;
    color: #555;
    line-height: 1.4;
}
@media (max-width: 480px) {
    .tp-blog-product-grid { grid-template-columns: repeat(2, 1fr); }
}
