/*
Theme Name: Handmade by Geora
Theme URI: https://handmadebygeora.ro/
Author: Handmade by Geora
Author URI: https://handmadebygeora.ro/
Description: Custom theme for refurbished & handmade furniture by Geora.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: handmadebygeora
*/

:root {
    --color-bg: #FAF9F7;
    --color-primary: #6D4C41;
    --color-accent: #8BC34A;
    --color-text: #2C2C2C;
    --color-light: #ffffff;
    --color-border: #E0D9D0;
    --color-muted: #8a8175;
    --max-width: 1200px;
    --font-title: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Global reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;

    /* sticky footer layout */
    display: flex;
    flex-direction: column;

    /* subtle paper background */
    background:
        url('https://www.toptal.com/designers/subtlepatterns/uploads/paper.png'),
        linear-gradient(180deg, #faf7f2, #efe7dd);
    background-size: 600px, cover;
    background-attachment: fixed;
}

/* Layout helpers */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding-left: 80px;
    padding-right: 80px;
}

.section--light {
    background: transparent;
    padding: 80px 0;
}

.section--muted {
    background-color: #f1ebe4;
}

.section__title {
    font-family: var(--font-title);
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.section__subtitle {
    font-size: 15px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.section__description {
    max-width: 640px;
    margin-bottom: 32px;
}

/* Top bar */

.top-bar {
    background-color: #eee0d1;
    font-size: 13px;
    color: #5d5146;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === TRANSPARENT LUXURY HEADER === */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo + tagline */

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-title a,
.site-title {
    font-family: var(--font-title);
    font-weight: 700 !important;
    font-size: 32px !important;
    background: linear-gradient(90deg, #f6ead8, #d3b17a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.site-title a:hover {
    opacity: 0.9;
}

.site-header .site-branding {
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.55));
}

.site-tagline {
    font-size: 11px;
    color: #e8dfd8;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* Nav */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    font-size: 13px;
    text-decoration: none;
    color: #f7f3ef;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    padding-bottom: 4px;
}

/* linie fină sub link la hover / current */
.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--color-primary);
    transition: width 0.2s ease-out;
}

.main-navigation a:hover {
    color: #ffffff;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Buton nav – Request */

.nav-request-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: #8BC34A;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    margin-left: 20px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.2s ease;
    white-space: nowrap;
}

.nav-request-btn:hover {
    background: #7CB342;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

/* Global buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* STICKY FOOTER – footer mereu jos când pagina e scurtă */

.site-footer {
    margin-top: auto;
}

/* ===== HERO – FULL-WIDTH BACKGROUND IMAGE, CLEAN VERSION ===== */

.hero {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    color: #ffffff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40); /* overlay discret */
}

.hero__inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 130px 16px 150px;
    display: flex;
    align-items: center;
}

.hero__content--simple {
    max-width: 620px;
    background: rgba(0, 0, 0, 0.50);
    padding: 35px 38px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
}

/* Title */
.hero__title {
    font-family: var(--font-title);
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

/* Paragraph */
.hero__text {
    font-size: 18px;
    line-height: 1.55;
    color: #ececec;
}

/* Mobile HERO adjustments */
@media (max-width: 768px) {
    .hero__inner {
        padding: 90px 16px 110px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__content--simple {
        padding: 26px;
    }
}

/* Features / Advantages */

.features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: var(--color-light);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--color-border);
}

.feature-card__icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-card__title {
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-card__text {
    font-size: 14px;
    color: var(--color-muted);
}

/* Collections */

.collections {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: #ddd;
}

.collection-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.collection-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.collection-card__link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA – send furniture */

.cta-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.cta-box__note {
    font-size: 13px;
    color: var(--color-muted);
    margin-top: 8px;
}

.cta-box__side {
    background-color: #f6efe7;
    border-radius: 12px;
    padding: 16px;
    font-size: 13px;
}

/* Before & After cards */

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ba-card {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    font-size: 13px;
}

.ba-card__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ba-card__images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ba-card__labels {
    position: relative;
    top: -26px;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 11px;
    color: #fff;
}

.ba-card__label {
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 8px;
    border-radius: 999px;
}

.ba-card__body {
    padding: 0 14px 14px;
}

/* Process */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.process-step {
    border-radius: 12px;
    border: 1px solid var(--color-border);
    padding: 16px;
    background-color: #fff;
}

.process-step__number {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial {
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--color-border);
    font-size: 14px;
}

.testimonial__name {
    margin-top: 8px;
    font-weight: 600;
}

.testimonial__rating {
    font-size: 13px;
    color: #c39a3f;
}

/* About section */

.about {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.about__image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.about__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Footer */

.site-footer {
    background-color: #2b2520;
    color: #f5eee5;
    padding-top: 40px;
}

.footer-widgets {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    font-size: 14px;
}

.footer-title {
    font-family: var(--font-title);
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #f5eee5;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #3a332e;
    padding: 12px 16px;
    font-size: 12px;
    text-align: center;
    color: #b8afa8;
}

/* Footer contact + social */

.footer-contact-info {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Bara aurie elegantă */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #f6d9a8, #d8b57a, #f6d9a8);
    margin: 10px 0 14px;
    opacity: 0.7;
}

/* Iconițele centrate */
.footer-social-centered {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.footer-social-label {
    margin: 8px 0 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f6d9a8;
    text-shadow: 0 0 6px rgba(255, 220, 160, 0.35);
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 220, 160, 0.25);
}

.footer-social--icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border: 2px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: 0.2s ease;
}

/* Hover efect frumos */
.social-icon:hover {
    transform: translateY(-2px);
    border-color: #fff;
}

/* INSTAGRAM */
.social-icon.ig {
    background: radial-gradient(circle at 30% 30%, #feda77, #d62976, #962fbf, #4f5bd5);
    position: relative;
}

.social-icon.ig::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 4px;
    position: absolute;
}

.social-icon.ig::before {
    content: "";
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* FACEBOOK */
.social-icon.fb {
    background: #1877f2;
    position: relative;
}

.social-icon.fb::after {
    content: "f";
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 4px;
}

/* TIKTOK */
.social-icon.tk {
    background: #000;
    position: relative;
}

.social-icon.tk::after {
    content: "♪";
    font-size: 18px;
    font-weight: bold;
    color: #00f2ea;
    text-shadow: 1px 1px 0 #ff0050;
    position: absolute;
    top: 4px;
}

/* REQUEST modal */

.request-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.request-modal.is-open {
    display: block;
}

.request-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.request-modal__content {
    position: relative;
    max-width: 980px;
    max-height: 90vh;
    margin: 40px auto;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.request-modal__iframe {
    width: 100%;
    height: 90vh;
    border: none;
}

/* buton X */
.request-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

/* ghost button */
.btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(140, 98, 57, 0.45);
    background: transparent;
    color: #6D4C41;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.btn--ghost:hover {
    background: rgba(140, 98, 57, 0.08);
}

/* strong request button */

.btn-request-strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #A17548, #CDAE7A);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-request-strong:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.32);
}

.btn-request-strong:active {
    transform: translateY(0px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}

/* fără underline pe butoanele stil capsulă */
a.btn-ba-more,
a.btn-ba-more:hover,
a.btn-ba-more:focus,
a.btn-ba-more:active,
.btn-request-strong,
.btn-request-strong:hover {
    text-decoration: none !important;
}

/* Before & After – buton "More" */

.ba-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-ba-more {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #A17548, #CDAE7A);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    transition: .2s ease-in-out;
}

.btn-ba-more:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

.ba-description-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ba-description-row .section__description {
    flex: 1 1 auto;
    margin-bottom: 0;
}

.btn-ba-more.btn-right {
    white-space: nowrap;
}

/* Section separator */

.section-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(181,150,120,0) 0%,
        rgba(181,150,120,0.35) 50%,
        rgba(181,150,120,0) 100%
    );
    margin: 60px 0;
}

/* Responsive */

@media (max-width: 900px) {
    .hero__inner {
        padding-top: 110px;
    }

    .features,
    .collections,
    .ba-grid,
    .process-steps,
    .testimonials,
    .footer-widgets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-box,
    .about {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-navigation {
        width: 100%;
        justify-content: space-between;
    }

    .main-navigation ul {
        gap: 14px;
        flex-wrap: wrap;
    }

    .nav-request-btn {
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .top-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .site-tagline {
        display: none;
    }

    .main-navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nav-request-btn {
        align-self: stretch;
        text-align: center;
        width: 100%;
    }

    .features,
    .collections,
    .ba-grid,
    .process-steps,
    .testimonials,
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

.handmade {
    padding: 80px 0;
}

.handmade__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.handmade__content {
    flex: 2;
    text-align: left;
}

.handmade__text {
    max-width: 560px;
}

.handmade__side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.handmade__photo img {
    width: 180px;
    height: 180px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}


.handmade__btn {
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Responsiv pentru mobil */
@media (max-width: 900px) {
    .handmade__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .handmade__side {
        align-items: flex-start;
    }

    .handmade__photo img {
        width: 100%;
        max-width: 320px;
    }
}

/* === PAGE HERO (sub-header pentru titluri de pagină) === */
/* === PAGE HERO – Elegant Wide Background === */
/* === PAGE HERO – full width (content), subtire, fara bara aurie === */

.page-hero {
    margin-top: 70px;
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

.page-hero__inner {
    width: 100%;
    max-width: var(--max-width);   /* la fel de lung ca restul paginii */
    padding: 16px 24px;            /* subtire, mai putin padding */

    /* crem foarte deschis, mai putin „galben” */
    background: rgba(249, 245, 240, 0.92);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border-radius: 14px;
    border: 1px solid rgba(180,160,135,0.22);

    text-align: left;
}

/* eyebrow */
.page-hero__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #8d7d6a;
    margin: 0 0 3px;
}

/* titlu */
.page-hero__title {
    margin: 0;
    font-family: var(--font-title);
    font-size: 26px;
    line-height: 1.2;
    color: #2b241f;
}

/* scoatem complet bara aurie de sub card */
.page-hero__inner::after {
    content: none;
}

/* mobil */
@media (max-width: 768px) {
    .page-hero {
        margin-top: 60px;
    }

    .page-hero__inner {
        padding: 14px 18px;
        border-radius: 12px;
    }

    .page-hero__title {
        font-size: 22px;
    }
}

/* ===== CARD PENTRU TOATĂ ZONA DE COMENTARII ===== */
/* ===== CARD PENTRU TOT BLOCUL DE COMENTARII (functioneaza si pt tema clasica si pt bloc) ===== */

#comments,
.comments-area,
.wp-block-comments {
    max-width: var(--max-width);   /* la fel ca restul conținutului (ex. 1200px) */
    margin: 50px auto 70px;
    padding: 24px 40px 32px;      /* puțin mai mult padding lateral, arată mai aerisit */

    background: rgba(249, 245, 240, 0.96);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border-radius: 18px;
    border: 1px solid rgba(180,160,135,0.28);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* TITLU – fara banda proprie, doar text frumos în interiorul cardului */
#comments .comments-title,
.wp-block-comments .wp-block-comments-title {
    background: transparent !important;
    padding: 0 0 12px !important;
    margin: 0 0 18px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: left;

    font-family: var(--font-title);
    font-size: 22px;
    color: #2b241f;
}

/* LISTA DE COMENTARII */
#comments .comment-list,
.wp-block-comments .wp-block-comment-template {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(0,0,0,0.08);
}

#comments .comment-list > li,
.wp-block-comments .wp-block-comment {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* FORMULAR "Leave a Reply" / "Reply" */
#comments .comment-respond,
.wp-block-comments .comment-respond {
    margin-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 16px;
}

#comments .comment-reply-title,
.wp-block-comments .comment-reply-title {
    font-family: var(--font-title);
    font-size: 20px;
    margin: 0 0 8px;
}

/* CAMPURI FORMULAR */
#comments .comment-form textarea,
#comments .comment-form input[type="text"],
#comments .comment-form input[type="email"],
.wp-block-comments .comment-form textarea,
.wp-block-comments .comment-form input[type="text"],
.wp-block-comments .comment-form input[type="email"] {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 10px 14px;
    font-size: 14px;
}

/* BUTON POST COMMENT */
#comments .comment-form .form-submit input[type="submit"],
.wp-block-comments .comment-form .form-submit input[type="submit"] {
    margin-top: 10px;
    padding: 10px 26px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(135deg, #A17548, #CDAE7A);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: .2s ease;
}

#comments .comment-form .form-submit input[type="submit"]:hover,
.wp-block-comments .comment-form .form-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}


/* ===== STRUCTURA REPLY (fir de comentarii) ===== */

/* Comentariile copil (răspunsuri) — indent + bară verticală */
#comments .children,
.wp-block-comments .children {
    margin-left: 34px; /* deplasează reply-ul spre dreapta */
    padding-left: 18px;
    border-left: 2px solid rgba(161, 117, 72, 0.25); /* bară aurie soft */
}

/* Distanta între comentarii */
#comments .comment,
.wp-block-comments .wp-block-comment {
    margin-bottom: 18px;
}

/* Bara devine mai accentuată la niveluri mai adânci */
#comments .children .children,
.wp-block-comments .children .children {
    border-left: 2px solid rgba(161, 117, 72, 0.35);
    margin-left: 28px;
}

/* Avatare și text aliniate mai frumos cu indentul */
#comments .children article,
.wp-block-comments .children article {
    padding-left: 4px;
}
/* ===== INDENT + BARA VERTICALA PENTRU REPLIES ===== */

/* Structura standard WP: ol.children sub comentariul părinte */
#comments .comment-list .children,
.wp-block-comments .comment-list .children {
    margin-left: 32px;
    padding-left: 18px;
    border-left: 2px solid rgba(161, 117, 72, 0.25);
}

/* Siguranță: dacă tema folosește doar clasele depth-2 / depth-3 */
#comments .comment.depth-2,
#comments .comment.depth-3,
#comments .comment.depth-4,
.wp-block-comments .comment.depth-2,
.wp-block-comments .comment.depth-3,
.wp-block-comments .comment.depth-4 {
    margin-left: 32px;
    padding-left: 18px;
    border-left: 2px solid rgba(161, 117, 72, 0.25);
}

/* Răspunsuri la răspunsuri – bară un pic mai pronunțată */
#comments .comment.depth-3,
#comments .comment.depth-4,
.wp-block-comments .comment.depth-3,
.wp-block-comments .comment.depth-4 {
    border-left-color: rgba(161, 117, 72, 0.4);
}
/* -------------------------
   WOOCOMMERCE MY ACCOUNT
--------------------------*/

.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 40px auto 80px !important;

    background: rgba(249, 245, 240, 0.96);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    padding: 35px 45px;
    border-radius: 18px;
    border: 1px solid rgba(180,160,135,0.28);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Titlul "My account" */
.woocommerce-account .entry-title {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 25px;
}
/* Meniu – scoatem bullet points */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 0 25px 0;
}

/* Link-urile din meniu */
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 14px;
    margin-bottom: 6px;

    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);

    font-family: var(--font-body);
    color: var(--color-text);
    text-decoration: none;

    transition: all 0.25s ease;
}

/* Hover */
.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--color-accent);
    color: white;
    transform: translateX(4px);
}

/* Item selectat */
.woocommerce-MyAccount-navigation ul .is-active a {
    background: var(--color-primary);
    color: #fff;
    border-color: rgba(0,0,0,0.1);
}
.woocommerce-MyAccount-content {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
}

.woocommerce-MyAccount-content a {
    color: var(--color-primary);
    font-weight: 500;
}

.woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}
.woocommerce-MyAccount-content .button,
.woocommerce a.button {
    background: var(--color-primary);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce a.button:hover {
    background: #573c31;
}
/* ==== FIX WIDTH & LAYOUT FOR PRODUCT CARDS ==== */

/* Folosim flex normal, nu grid forțat */
.woocommerce ul.products {
    max-width: 1100px;
    margin: 30px auto 80px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
    justify-content: flex-start; /* sau center dacă vrei centrat */
}

/* Card produs – lățime normală */
.woocommerce ul.products li.product {
    width: 260px;              /* lățime fixă card */
    max-width: 100%;
    list-style: none;
    background: rgba(249, 245, 240, 0.96);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 18px;
    border: 1px solid rgba(180,160,135,0.28);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    padding: 18px 18px 22px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover card */
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

/* Imagine produs – nu o mai „strivim” */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;          /* important: scoate înălțimea fixă */
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 14px;
}

/* Titlu produs */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 8px;
}

/* Preț */
.woocommerce ul.products li.product .price {
    display: block;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
}

/* Buton */
.woocommerce ul.products li.product .button {
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.15s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #573c31;
    transform: translateY(-1px);
}

/* Scoatem violetul urât de link */
.woocommerce ul.products li.product a {
    text-decoration: none;
}
/* 1. Layout: tabs + related să fie sub produs, pe toată lățimea */
.single-product div.product .woocommerce-tabs,
.single-product div.product .related {
    grid-column: 1 / -1; /* ocupă ambele coloane ale grid-ului */
}

/* 2. Related products – revine la stil simplu, fără card bej */

.single-product .related ul.products {
    max-width: 100%;
    margin: 20px 0 0 0 !important;
    display: block;          /* lăsăm WooCommerce să facă grid-ul lui */
}

/* scoatem card-ul bej / umbre / padding mare */
.single-product .related ul.products li.product {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;

    width: auto;             /* nu mai forțăm lățimea */
    max-width: none;
}

/* imagine normală, fără colțuri exagerate */
.single-product .related ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0;
    box-shadow: none;
}

/* buton normal, un pic mai mic */
.single-product .related ul.products li.product .button {
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
}
/* ================================
   SINGLE PRODUCT – MAIN GRID LAYOUT
   ================================ */

.single-product div.product {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 40px;
}

/* Mobil – o singură coloană */
@media (max-width: 768px) {
    .single-product div.product {
        grid-template-columns: 1fr;
    }
}

/* ================================
   FIX MAIN PRODUCT IMAGE SIZE
   ================================ */

.single-product .woocommerce-product-gallery {
    max-width: 500px !important;
    margin: 0 auto 20px;
}

.single-product .woocommerce-product-gallery img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ================================
   DESCRIERE + RELATED PRODUCTS SUB DESCRIERE
   ================================ */

.single-product div.product .woocommerce-tabs,
.single-product div.product .related {
    grid-column: 1 / -1; /* ambele coloane: full width */
}

/* ================================
   RELATED PRODUCTS – RESTAURARE STIL SIMPLU
   ================================ */

.single-product .related ul.products {
    max-width: 100%;
    margin: 10px 0 0 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* scoatem cardul bej, umbre, borduri — îl facem simplu */
.single-product .related ul.products li.product {
    width: 200px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
}

/* imagine simplă */
.single-product .related ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: none;
}

/* titlu related */
.single-product .related ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    margin-top: 6px;
    margin-bottom: 4px;
}

/* preț related */
.single-product .related ul.products li.product .price {
    font-size: 14px;
    margin-bottom: 6px;
}

/* buton related – mic și discret */
.single-product .related ul.products li.product .button {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 999px;
}
/* Card pentru taburile Description */
.single-product .woocommerce-tabs {
    background: #faf7f2;
    border: 1px solid rgba(180,160,135,0.25);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}
/* ================================
   SINGLE PRODUCT – PRICE + ADD TO CART
   ================================ */

/* Prețul produsului */
.single-product .summary .price {
    font-size: 22px;
    font-weight: 600;
    color: #6D4C41; /* culoarea brandului */
    margin-bottom: 15px;
    display: block;
}

/* Cantitatea – fă-o mai frumoasă */
.single-product .quantity input.qty {
    width: 55px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 16px;
    text-align: center;
}

/* Buton ADD TO CART */
.single-product .single_add_to_cart_button {
    background: #6D4C41 !important; /* culoarea brandului */
    color: #fff !important;
    padding: 10px 26px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    margin-left: 10px; /* mic spațiu între qty și buton */
}

.single-product .single_add_to_cart_button:hover {
    background: #573c31 !important;
    transform: translateY(-2px);
}

/* Aliniere frumoasă a qty + button */
.single-product .summary form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* ================================
   RELATED PRODUCTS – CARD ELEGANT
   ================================ */


/* Titlul "Related products" */
.single-product .related > h2 {
    margin: 0 0 18px;
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    color: #2b241f;
    text-align: left;
}


/* Lista de produse în interiorul cardului */
.single-product .related ul.products {
    max-width: 100%;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* Card mic pentru fiecare produs related */
.single-product .related ul.products li.product {
    width: 220px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(180,160,135,0.20);
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    padding: 14px 14px 18px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-product .related ul.products li.product:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

/* Imagine produs */
.single-product .related ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    margin-bottom: 10px;
}
/* Titlu + preț + buton (stil discret) */
.single-product .related ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    margin: 6px 0 4px;
}

.single-product .related ul.products li.product .price {
    font-size: 14px;
    margin-bottom: 8px;
    color: #6D4C41;
    font-weight: 600;
}

.single-product .related ul.products li.product .button {
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 999px;
}

/* Mobil – produsele una sub alta / două pe rând */
@media (max-width: 640px) {
    .single-product .related ul.products {
        justify-content: center;
    }

    .single-product .related ul.products li.product {
        width: 100%;
        max-width: 260px;
    }
}
/* ================================
   SINGLE PRODUCT – TOP INFO CARD
   ================================ */

.single-product div.product {
    background: rgba(250, 247, 242, 0);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border: 1px solid rgba(180,160,135,0.22);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);

    padding: 35px 35px 45px;
    margin-top: 40px;   /* spațiu de respirat */
}

/* Pentru mobil – padding mai mic */
@media (max-width: 768px) {
    .single-product div.product {
        padding: 22px 20px 28px;
    }
}
