/* ═══════════════════════════════════════════════
   Wróżka Danuta - Main Stylesheet v2.0
   Colors: Navy #1a1f3d, Gold #c4a55a, Cream #faf9f7
   Fonts: Cormorant Garamond (headings), Lato (body)
   ═══════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #e8e4dc;
    background-color: #1a1f3d;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ── Typography ────────────────────────────────── */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    font-style: italic;
    color: #c4a55a;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title--dark { color: #1a1f3d; }

.section-subtitle {
    font-size: 1rem;
    color: #b0aaa0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* ── Sections ──────────────────────────────────── */
.section { padding: 5rem 0; }

.section--dark { background-color: #1a1f3d; color: #e8e4dc; }
.section--navy { background-color: #141733; color: #e8e4dc; }
.section--light { background-color: #faf9f7; color: #333; }

/* ── Buttons ───────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--gold {
    background: #c4a55a;
    color: #1a1f3d;
}
.btn--gold:hover {
    background: #d4b86a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 165, 90, 0.3);
}

.btn--sm { padding: 10px 24px; font-size: 0.75rem; }

.btn--outline {
    background: transparent;
    border: 1px solid #c4a55a;
    color: #c4a55a;
}
.btn--outline:hover { background: #c4a55a; color: #1a1f3d; }

.btn--outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #e8e4dc;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }


/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26, 31, 61, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 165, 90, 0.15);
    transition: background 0.3s;
}

/* Push body content below fixed header */
body { padding-top: 80px; }
body.admin-bar { padding-top: 112px; }
body.admin-bar .site-header { top: 32px; }

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-header__logo { flex-shrink: 0; }
.site-header__logo img,
.site-logo-img { height: 55px; width: auto; }

.site-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #c4a55a;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
}
.site-logo-text strong {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e8e4dc;
    transition: color 0.3s;
}
.nav-link:hover { color: #c4a55a; }

.nav-link--cart {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-count {
    background: #c4a55a;
    color: #1a1f3d;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Burger */
.site-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.site-header__burger span {
    width: 24px; height: 2px;
    background: #e8e4dc;
    transition: 0.3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #141733;
    padding: 2rem;
    border-top: 1px solid rgba(196, 165, 90, 0.1);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
    padding: 12px 0;
    color: #e8e4dc;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover { color: #c4a55a; }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -80px;
    padding-top: 80px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 31, 61, 0.4) 0%,
        rgba(26, 31, 61, 0.6) 50%,
        rgba(26, 31, 61, 0.9) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    font-style: italic;
    color: #c4a55a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 2.5rem;
}


/* ═══════════════════════════════════════════════
   TAROT DIVIDER
   ═══════════════════════════════════════════════ */
.tarot-divider {
    text-align: center;
    padding: 2.5rem 0;
    background: #1a1f3d;
}
.tarot-divider__icon { display: inline-block; opacity: 0.5; }


/* ═══════════════════════════════════════════════
   ABOUT INTRO
   ═══════════════════════════════════════════════ */
.about-intro { text-align: center; padding: 5rem 0 4rem; }

.about-intro__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 600;
    font-style: italic;
    color: #c4a55a;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

.about-intro__text {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b0aaa0;
}


/* ═══════════════════════════════════════════════
   PRODUCTS GRID
   ═══════════════════════════════════════════════ */
.products-section { padding: 4rem 0; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.products-grid--shop {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #222750;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-card__badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    background: #c4a55a;
    color: #1a1f3d;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
}

.product-card__image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #1a1f3d;
}
.product-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }

.product-card__placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222750;
}

.product-card__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.product-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8e4dc;
    line-height: 1.3;
}

.product-card__excerpt {
    font-size: 0.85rem;
    color: #8a8577;
    line-height: 1.5;
    flex-grow: 1;
}

.product-card__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #c4a55a;
}

.products-section__more {
    text-align: center;
    margin-top: 3rem;
}


/* ═══════════════════════════════════════════════
   BANNER CTA (Relacja w Kartach)
   ═══════════════════════════════════════════════ */
.banner-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
}

.banner-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 31, 61, 0.85);
}

.banner-cta__content { position: relative; z-index: 2; }

.banner-cta__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    font-style: italic;
    color: #c4a55a;
    margin-bottom: 0.5rem;
}

.banner-cta__subtitle {
    font-size: 1.1rem;
    color: #b0aaa0;
    font-weight: 300;
    margin-bottom: 2rem;
}

.banner-cta__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.banner-cta__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c4a55a;
}


/* ═══════════════════════════════════════════════
   PAYMENTS
   ═══════════════════════════════════════════════ */
.payments { padding: 2.5rem 0; background: #222750; }

.payments__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.payments__icon { stroke: #c4a55a; flex-shrink: 0; }
.payments__text { font-size: 0.9rem; color: #b0aaa0; }


/* ═══════════════════════════════════════════════
   ABOUT BIO
   ═══════════════════════════════════════════════ */
.about-bio__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-bio__image img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-bio__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b0aaa0;
    margin-bottom: 2rem;
}


/* ═══════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════ */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.steps__item { text-align: center; }

.steps__num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #c4a55a;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.steps__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e8e4dc;
    margin-bottom: 0.5rem;
}

.steps__text { font-size: 0.9rem; color: #8a8577; line-height: 1.6; }


/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq { background: #faf9f7; }

.faq__list {
    max-width: 700px;
    margin: 2rem auto 0;
}

.faq__item {
    border-bottom: 1px solid #e0ddd6;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1f3d;
    text-align: left;
    gap: 1rem;
}
.faq__question svg { flex-shrink: 0; transition: transform 0.3s; color: #c4a55a; }
.faq__question[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq__answer p {
    padding: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}


/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats { padding: 4rem 0; }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats__number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #c4a55a;
    margin-bottom: 0.3rem;
}

.stats__label {
    font-size: 0.85rem;
    color: #8a8577;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ═══════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.blog-card {
    background: #222750;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card__image {
    aspect-ratio: 3/2;
    overflow: hidden;
}
.blog-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__content { padding: 1.5rem; }

.blog-card__date {
    font-size: 0.75rem;
    color: #8a8577;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8e4dc;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.blog-card__excerpt { font-size: 0.85rem; color: #8a8577; line-height: 1.5; }

.blog-card__link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #c4a55a;
    font-weight: 400;
    letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════
   PAGE HERO (subpages)
   ═══════════════════════════════════════════════ */
.page-hero {
    background: #141733;
    padding: 4rem 0;
    text-align: center;
}
.page-hero--sm { padding: 3rem 0; }

.page-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    font-style: italic;
    color: #c4a55a;
    margin-bottom: 0.5rem;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: #b0aaa0;
    font-weight: 300;
}


/* ═══════════════════════════════════════════════
   SHOP FILTERS
   ═══════════════════════════════════════════════ */
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.shop-filters__btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b0aaa0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    transition: all 0.3s;
}
.shop-filters__btn:hover,
.shop-filters__btn.is-active {
    color: #1a1f3d;
    background: #c4a55a;
    border-color: #c4a55a;
}


/* ═══════════════════════════════════════════════
   SINGLE PRODUCT
   ═══════════════════════════════════════════════ */
.single-product__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.single-product__image img {
    border-radius: 12px;
    width: 100%;
}

.single-product__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #c4a55a;
    margin-bottom: 1rem;
}

.single-product__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c4a55a;
    margin-bottom: 1.5rem;
}

.single-product__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #b0aaa0;
    margin-bottom: 2rem;
}

/* WooCommerce add to cart button */
.single_add_to_cart_button,
button.single_add_to_cart_button {
    background: #c4a55a !important;
    color: #1a1f3d !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 14px 36px !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.3s !important;
}
.single_add_to_cart_button:hover { background: #d4b86a !important; }


/* ═══════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════ */
.single-post__header { text-align: center; margin-bottom: 2.5rem; }
.single-post__date { font-size: 0.8rem; color: #8a8577; letter-spacing: 1px; text-transform: uppercase; }
.single-post__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #c4a55a;
    margin-top: 0.5rem;
}
.single-post__image { margin-bottom: 2.5rem; border-radius: 12px; overflow: hidden; }
.single-post__image img { width: 100%; }

.entry-content { color: #b0aaa0; line-height: 1.9; font-size: 1.05rem; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2, .entry-content h3 { color: #c4a55a; font-family: 'Cormorant Garamond', serif; margin: 2rem 0 1rem; }
.entry-content a { color: #c4a55a; text-decoration: underline; }


/* ═══════════════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════════════ */
.promo-banner {
    background: #c4a55a;
    padding: 12px 0;
    text-align: center;
}
.promo-banner__text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1f3d;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
    background: #0e1128;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(196, 165, 90, 0.1);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.site-footer__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c4a55a;
    margin-bottom: 1rem;
}

.site-footer__text { font-size: 0.85rem; color: #8a8577; line-height: 1.6; }

.site-footer__links li { margin-bottom: 0.5rem; }
.site-footer__links a {
    font-size: 0.85rem;
    color: #8a8577;
    transition: color 0.3s;
}
.site-footer__links a:hover { color: #c4a55a; }

.site-footer__bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.site-footer__bottom p {
    font-size: 0.8rem;
    color: #555;
}


/* ═══════════════════════════════════════════════
   WooCommerce overrides
   ═══════════════════════════════════════════════ */
.woocommerce-pagination { text-align: center; margin-top: 3rem; }
.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
    padding: 8px 14px;
    color: #b0aaa0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
}
.woocommerce-pagination .page-numbers li .current {
    background: #c4a55a;
    color: #1a1f3d;
    border-color: #c4a55a;
}

.woocommerce-message,
.woocommerce-info {
    background: #222750;
    border: none;
    border-left: 4px solid #c4a55a;
    color: #e8e4dc;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}
.woocommerce-message a,
.woocommerce-info a { color: #c4a55a; }


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .about-bio__grid { grid-template-columns: 1fr; gap: 2rem; }
    .single-product__grid { grid-template-columns: 1fr; gap: 2rem; }
    .steps__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .site-footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .hero { min-height: 70vh; }

    .site-header__nav-left,
    .site-header__nav-right { display: none; }
    .site-header__burger { display: flex; }

    .products-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .steps__grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__inner { grid-template-columns: 1fr; }

    .banner-cta__action { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
}
