body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #606161;
    background-color: #fff;
    padding-top: 80px;
}

body.menu-open {
    overflow: hidden;
}

/* Offset fixed header when admin bar is visible */
body.admin-bar .wcd-header {
    top: 32px;
}

body.admin-bar {
    padding-top: 112px;
}

@media (max-width: 782px) {
    body.admin-bar .wcd-header {
        top: 46px;
    }

    body.admin-bar {
        padding-top: 120px;
    }
}

a {
    color: #fdd835;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/* === Header === */
.wcd-header {
    position: fixed;
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border-bottom: 1px solid #eee;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11000;
    background: #fff;
    transition: top 0.3s ease;
}



.wcd-header .wcd-logo img {
    height: 36px;
}

.wcd-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.wcd-logo-link {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-decoration: none;
    max-width: none;
}

.wcd-logo-tagline {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.2;
    display: inline-block;
    white-space: nowrap;
}

.wcd-header .wcd-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: end;
}

/* Main categories navigation (desktop) */
.wcd-main-nav {
    justify-self: center;
}

.wcd-main-cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
}

.wcd-main-cats>li {
    position: relative;
    padding: 0 12px 12px;
    margin-bottom: -12px;
}

.wcd-main-cats>li+li {
    border-left: 2px solid #fdd835;
}

.wcd-main-cats a {
    color: #2f2f2f;
    text-decoration: none;
    display: inline-block;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.wcd-main-cats a:hover {
    color: #e1a700;
}

.wcd-main-cats li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(0);
    z-index: 2000;
    pointer-events: none;
}

/* Hover buffer so the dropdown doesn't close when moving to subitems */
.wcd-main-cats > li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.wcd-main-cats li:hover>ul,
.wcd-main-cats li:focus-within>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wcd-main-cats li ul li {
    padding: 0;
    border: none;
}

.wcd-main-cats li ul a {
    padding: 8px 14px;
    width: 100%;
}

.wcd-header .wcd-icons a,
.wcd-header .wcd-icons button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.wcd-header .wcd-icons img {
    height: 42px;
    width: 42px;
    object-fit: contain;
}

.wcd-cart-link {
    position: relative;
    display: inline-flex;
}

.wcd-cart-icon {
    position: relative;
    display: inline-flex;
}

.wcd-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fdd835;
    color: #0f0f0f;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    border: 1px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}



@media (max-width: 768px) {
    .wcd-mobile-menu.active {
        width: 85%;
        right: 0 !important;
    }

    .wcd-header {
        grid-template-columns: auto 1fr auto;
        padding: 0.75rem 1.2rem;
    }

    .wcd-header .wcd-logo img {
        height: 30px;
    }

    .wcd-header .wcd-icons {
        gap: 0.4rem;
        justify-content: flex-end;
    }

    .wcd-header .wcd-icons img {
        height: 30px;
        width: 30px;
    }

    .wcd-main-nav {
        display: none;
    }

    .wcd-logo-tagline {
        font-size: 0.82rem;
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    body {
        padding-top: 65px;
    }
}

.wcd-mobile-menu {
    position: fixed;
    right: -100% !important;
    width: 85%;
    max-width: 420px;
    top: 0;
    bottom: 0;
    height: 100vh;
    max-height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 12001;
    padding: 4.5rem 1.5rem 3.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.wcd-mobile-menu.active {
    right: 0 !important;
}

.wcd-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0f0f0f;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.wcd-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.wcd-mobile-nav li {
    margin-bottom: 1rem;
}

.wcd-mobile-nav a {
    display: block;
    padding: 0.5rem .7rem;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.wcd-mobile-nav a:hover {
    background: #fdd835;
    color: #000;
}

.wcd-mobile-nav.wcd-mobile-cats .mobile-cat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.wcd-mobile-subnav {
    list-style: none;
    padding-left: 0.75rem;
    margin-top: 0.35rem;
    display: none;
    gap: 0.35rem;
}

.wcd-mobile-subnav a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.55rem 0.9rem;
    background: #f9fafc;
    border-radius: 6px;
    border: 1px solid #eee;
}

.wcd-mobile-cats li.open>.wcd-mobile-subnav {
    display: grid;
}

.mobile-cat-toggle {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    color: #0f0f0f;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

/* === Search === */

.wcd-search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.wcd-search-modal.active {
    display: flex;
}

.wcd-search-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wcd-search-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.wcd-search-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.wcd-search-form .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.wcd-search-form .search-submit {
    background: #fdd835;
    color: #000;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1rem;
}

.wcd-search-form .search-submit:hover {
    background: #ffeb3b;
}

/* === Search pagination === */
.wcd-search-pagination {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.wcd-search-pagination .page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.wcd-search-pagination .page-numbers a,
.wcd-search-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #222;
    font-weight: 600;
}

.wcd-search-pagination .page-numbers a:hover {
    background: #fff9db;
    border-color: #fdd835;
    color: #0f0f0f;
}

.wcd-search-pagination .page-numbers .current {
    background: #fdd835;
    border-color: #fdd835;
    color: #0f0f0f;
}

/* === Single page === */

.single-product-page {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 20px;
}

.product-gallery {
    width: 40%;
}

.main-image {
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.thumbnail-gallery img {
    width: 70px;
    margin-right: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.product-info {
    width: 50%;
}

.title-divider {
    width: 50px;
    height: 3px;
    background: #000;
    border: none;
    margin: 5px 0 15px;
}

.quantity-input {
    width: 60px;
    height: 35px;
    text-align: center;
    margin-right: 10px;
}

.stock-price {
    font-size: 16px;
    margin: 10px 0;
}

.add-to-cart {
    background: #FFD700;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}


.woocommerce-account {
    background: #f7f8fb;
    padding: 80px 0 70px;
}

.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}

.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    grid-template-areas: "nav content";
    gap: 1.75rem;
    align-items: start;
}

.woocommerce-MyAccount-navigation {
    grid-area: nav;
    width: 80%;
    max-width: 320px;
    float: none;
    justify-self: start;
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 90px;
    overflow: visible;
    align-self: start;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: #f9fafc;
    border: 1px solid #e8e9ed;
    border-radius: 10px;
    font-weight: 600;
    color: #1f1f1f;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation a::after {
    content: '›';
    font-size: 1rem;
    color: #c5c7d0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.woocommerce-MyAccount-navigation a:hover {
    background: #fffef5;
    border-color: #f7ce13;
    box-shadow: 0 8px 18px rgba(247, 206, 19, 0.16);
    transform: translateY(-1px);
}

.woocommerce-MyAccount-navigation a:hover::after {
    color: #000;
    transform: translateX(3px);
}

.woocommerce-MyAccount-navigation .is-active a {
    background: #fdd835;
    border-color: #fdd835;
    color: #0f0f0f;
    box-shadow: 0 10px 24px rgba(253, 216, 53, 0.28);
}

.woocommerce-MyAccount-navigation .is-active a::after {
    color: #0f0f0f;
}

.woocommerce-MyAccount-content {
    grid-area: content;
    max-width: 100%;
    margin: 0;
    background: #fff;
    padding: 2.15rem;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    order: 2;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    margin-top: 0;
    color: #101010;
}

.woocommerce-MyAccount-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* === WooCommerce accent (replace default #1e85be with brand yellow) === */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button,
.woocommerce .woocommerce-message a.button,
.woocommerce .woocommerce-info a.button {
    background: #fdd835;
    border-color: #fdd835;
    color: #0f0f0f;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover,
.woocommerce .woocommerce-message a.button:hover,
.woocommerce .woocommerce-info a.button:hover {
    background: #ffe35c;
    border-color: #ffe35c;
    color: #0f0f0f;
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: #fdd835;
    border-left-color: #fdd835;
    background: #fff9db;
}

/* === Wishlist (YITH) === */
.woocommerce .wishlist-title h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #444;
    margin: 0 0 1rem;
    text-align: center;
}

.woocommerce .yith-wcwl-form {
    max-width: 1100px;
    margin: 1.5rem auto 3rem;
    padding: 0 1rem;
}

.woocommerce table.wishlist_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
}

.woocommerce table.wishlist_table th,
.woocommerce table.wishlist_table td {
    padding: 1rem 1.1rem;
    border: 1px solid #eef0f3;
    text-align: left;
    vertical-align: middle;
    font-size: 0.95rem;
    color: #333;
}

.woocommerce table.wishlist_table thead th {
    background: linear-gradient(180deg, #fffbe8 0%, #fff7d1 100%);
    font-weight: 700;
    color: #0f0f0f;
    white-space: nowrap;
    vertical-align: middle;
}

.woocommerce table.wishlist_table tbody tr:hover {
    background: #fffdf3;
}

.woocommerce table.wishlist_table .product-name a,
.woocommerce table.wishlist_table .product-price {
    color: #222;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce table.wishlist_table .product-price,
.woocommerce table.wishlist_table .product-stock-status {
    color: #4a4a4a;
}

.woocommerce table.wishlist_table .product-remove a {
    color: #e53935;
}

.woocommerce .wishlist-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: #666;
    font-weight: 600;
}

.woocommerce .wishlist_table .button,
.woocommerce .yith-wcwl-add-to-cart a.button {
    background: #fdd835;
    border: 1px solid #fdd835;
    color: #0f0f0f;
    border-radius: 10px;
    padding: 0.75rem 1.2rem;
    font-weight: 700;
}

.woocommerce .wishlist_table .button:hover,
.woocommerce .yith-wcwl-add-to-cart a.button:hover {
    background: #ffe35c;
    border-color: #ffe35c;
    color: #0f0f0f;
}

/* === Category / Archive === */
.woocommerce.archive .woocommerce-products-header {
    max-width: 1200px;
    margin: 0 auto 1.25rem;
    padding: 0 1rem;
}

.woocommerce.archive .woocommerce-products-header .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #444;
    margin: 0 0 0.75rem;
}

.woocommerce.archive .woocommerce-result-count,
.woocommerce.archive .woocommerce-ordering {
    margin: 0;
}

.woocommerce.archive .woocommerce-result-count {
    color: #606161;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
}

.woocommerce.archive .woocommerce-ordering select {
    background: #fff;
    border: 1.5px solid #fdd835;
    color: #0f0f0f;
    border-radius: 10px;
    padding: 0.6rem 2.4rem 0.6rem 0.85rem;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #0f0f0f 50%), linear-gradient(135deg, #0f0f0f 50%, transparent 50%);
    background-position: calc(100% - 18px) center, calc(100% - 12px) center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.woocommerce.archive .woocommerce-ordering select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(253, 216, 53, 0.25);
}

.woocommerce.archive .woocommerce-ordering select:hover {
    background: #fff9db;
}

.woocommerce.archive .woocommerce-ordering option {
    background: #fff;
    color: #0f0f0f;
}

.woocommerce.archive .woocommerce-ordering option:hover {
    background: #fdd835 !important;
    /* force over native blue highlight */
    color: #0f0f0f !important;
}

.woocommerce.archive .woocommerce-ordering option:active,
.woocommerce.archive .woocommerce-ordering option:checked {
    background: #fff !important;
    color: #0f0f0f !important;
}

.woocommerce.archive .woocommerce-result-count,
.woocommerce.archive .woocommerce-ordering {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce.archive .woocommerce-result-count+.woocommerce-ordering {
    margin-left: 0.75rem;
}

.woocommerce.archive .woocommerce-notices-wrapper {
    max-width: 1200px;
    margin: 0 auto 1rem;
    padding: 0 1rem;
}

.woocommerce.archive .woocommerce-message {
    border-left-width: 4px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

@media (max-width: 768px) {
    .woocommerce.archive .woocommerce-products-header {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.75rem;
        text-align: center;
        padding: 0 0.5rem;
    }

    .woocommerce.archive .woocommerce-result-count,
    .woocommerce.archive .woocommerce-ordering {
        justify-content: center;
        width: 100%;
    }

    .woocommerce.archive .woocommerce-ordering select {
        width: 100%;
        max-width: 320px;
    }
}

/* === Auth (Login/Register) === */
.woocommerce-account .u-columns {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    float: none;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 360px;
}

.woocommerce-form-login,
.woocommerce-form-register {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.woocommerce form .form-row {
    margin-bottom: 1rem;
}

.woocommerce form .form-row label {
    font-weight: 600;
    color: #1f1f1f;
    display: block;
    margin-bottom: 0.35rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="password"] {
    width: 100%;
    padding: 0.85rem 0.9rem;
    border: 1px solid #dcdde1;
    border-radius: 10px;
    background: #f9fafc;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce form .form-row input:focus {
    border-color: #f7ce13;
    box-shadow: 0 0 0 4px rgba(247, 206, 19, 0.2);
}

.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

.woocommerce .woocommerce-form-login .woocommerce-button,
.woocommerce .woocommerce-form-register .woocommerce-button {
    background: #fdd835;
    color: #0f0f0f;
    border: 1px solid #fdd835;
    padding: 0.95rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.woocommerce .woocommerce-form-login .woocommerce-button:hover,
.woocommerce .woocommerce-form-register .woocommerce-button:hover {
    background: #ffe57f;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

.woocommerce .lost_password a {
    color: #e1a700;
    font-weight: 600;
}

.woocommerce-account .u-columns p {
    line-height: 1.6;
    color: #4a4a4a;
}

.woocommerce-account h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (max-width: 960px) {
    .woocommerce-account {
        padding: 70px 0 50px;
    }

    .woocommerce-account .woocommerce {
        padding: 1.5rem 1rem 2.5rem;
    }

    .woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
        grid-template-columns: 1fr;
        grid-template-areas:
            "nav"
            "content";
        gap: 1.1rem;
    }

    .woocommerce-account .u-columns {
        flex-direction: column;
        padding: 0 0.25rem;
        gap: 1rem;
        align-items: stretch;
    }

    .woocommerce-MyAccount-navigation {
        position: relative;
        top: 0;
        padding: 0.75rem;
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        overflow: visible;
        padding-bottom: 0;
    }

    .woocommerce-MyAccount-navigation a {
        white-space: nowrap;
    }

    .woocommerce-MyAccount-content {
        padding: 1.75rem 1.4rem;
    }
}

/* === Search page === */

.wcd-search-results {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    min-height: 80vh;
}

.wcd-search-results .container {
    max-width: 960px;
    margin: 0 auto;
}

.wcd-search-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.wcd-search-section {
    margin-bottom: 2.5rem;
}

.wcd-search-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 1.25rem;
    text-align: left;
}

.wcd-search-products .products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.wcd-search-products .products > li,
.wcd-search-products .shop-card {
    list-style: none;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
    display: block;
    flex: 1 1 260px;
    max-width: 1fr;
}

.wcd-search-blog-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wcd-search-blog-grid .home-blog__thumb {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.wcd-search-blog-grid .home-blog__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcd-search-blog-grid .home-blog__body h3 a {
    color: #222;
    text-decoration: none;
}

.wcd-search-blog-grid .home-blog__body h3 a:hover {
    color: #e1a700;
}

.wcd-search-products .add_to_cart_button,
.wcd-search-products .button,
.wcd-search-products .woocommerce a.button {
    color: #fff;
}

.wcd-search-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.wcd-search-item {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

.wcd-search-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wcd-search-link {
    text-decoration: none;
    color: inherit;
}

.wcd-search-link h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.wcd-search-link p {
    color: #666;
    font-size: 0.95rem;
}

.wcd-no-results {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.wcd-search-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* === Footer === */

.wcd-footer {
    background-color: #fdd835;
    padding: 3rem 1.5rem;
    font-size: 1.1rem;
    color: #606161;
}

.wcd-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.wcd-footer-section {
    flex: 1 1 180px;
    min-width: 150px;
}

.wcd-footer-section h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.wcd-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wcd-footer-section ul li {
    margin-bottom: 0.5rem;
}

.wcd-footer-section ul li a {
    color: #606161;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wcd-footer-section ul li a:hover {
    color: #222;
}

.wcd-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 1rem;
}

.wcd-social-icons a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.wcd-social-icons a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}


.wcd-footer-logo img {
    max-height: 60px;
    margin: 1rem 0;
}

.wcd-footer-badges img {
    max-height: 70px;
    margin-right: 1rem;
    margin-top: 1rem;
}

.wcd-footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.85rem;
    color: #606161;
}

.wcd-footer-bottom img {
    max-height: 60px;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .wcd-footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .wcd-footer-section {
        width: 100%;
    }

    .wcd-footer-bottom {
        padding-bottom: 2rem;
    }
}

/* Product page */

.custom-product-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.gallery-container {
    flex: 1 1 45%;
    background: #f9f9fb;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.gallery-container img {
    max-width: 100%;
    display: block;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.thumbs {
    display: flex;
    gap: 0.5rem;
}

.thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumbs img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.details-container {
    flex: 1 1 50%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.details-container h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.details-container .short-desc {
    font-size: 16px;
    margin-bottom: 1.2rem;
    line-height: 1.55;
}

.product-purchase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.purchase-row {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.quantity-box .qty {
    width: 70px;
    text-align: center;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    padding: 0.65rem 0.4rem;
}

.quantity-box .qty_button {
    width: 38px;
    height: 40px;
    background: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.15s ease;
    color: #0f0f0f;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.quantity-box .qty_button:hover {
    background: #fff9db;
}

.info-line {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 16px;
}

.info-line .stock {
    font-weight: 700;
}

.info-line .in-stock {
    color: #2e7d32;
}

.info-line .out-of-stock {
    color: #c62828;
}

.info-line .price-text {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.btn-add {
    background-color: #fdd835;
    color: #000;
    padding: 0.9rem 1.2rem;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 6px;
    border-radius: 10px;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
    width: 100%;
}

.btn-add:hover {
    background: #ffe35c;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.3);
    transform: translateY(-1px);
}

/* Related products on product page */
.product-related {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 3rem;
}

.product-related .home-section-head {
    margin-bottom: 1rem;
}

/* Ascunde heading-ul standard "Produse similare" pentru a nu dubla titlul */
.single-product .related>h2,
.single-product .related.products>h2 {
    display: none;
}

/* === Cart === */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 2rem;
}

.woocommerce-cart .cart-collaterals {
    align-self: start;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.woocommerce-cart .cart_totals h2 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #222;
}

.woocommerce-cart table.shop_table {
    border: none;
    border-collapse: separate;
    border-spacing: 0 14px;
    width: 100%;
}

.woocommerce-cart table.shop_table thead {
    display: none;
}

.woocommerce-cart table.shop_table tbody tr {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.woocommerce-cart table.shop_table td {
    border: none;
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 90px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.woocommerce-cart table.shop_table td.product-name a {
    font-weight: 700;
    color: #222;
    text-decoration: none;
}

.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
    font-weight: 700;
    color: #000;
}

.woocommerce-cart .woocommerce-cart-form .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.woocommerce-cart .woocommerce-cart-form .quantity .qty {
    width: 64px;
    text-align: center;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    padding: 0.55rem 0.4rem;
}

.woocommerce-cart .woocommerce-cart-form .quantity .qty_button {
    width: 36px;
    height: 38px;
    background: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.woocommerce-cart .woocommerce-cart-form .quantity .qty_button:hover {
    background: #fff9db;
}

.woocommerce-cart .actions .coupon {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.woocommerce-cart .actions .coupon input.input-text {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
}

.woocommerce-cart .actions .button,
.woocommerce-cart .cart_totals .checkout-button {
    background: #fdd835;
    border: 1px solid #fdd835;
    color: #0f0f0f;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

/* Force proceed-to-checkout button to match theme */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout .button.checkout-button {
    display: inline-block;
    background: #fdd835 !important;
    border: 1px solid #fdd835 !important;
    color: #0f0f0f !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    padding: 0.9rem 1.2rem !important;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .button.checkout-button:hover {
    background: #ffe35c !important;
    border-color: #ffe35c !important;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

.woocommerce-cart .actions .button:hover,
.woocommerce-cart .cart_totals .checkout-button:hover {
    background: #ffe35c;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

.woocommerce-cart .cart_totals table {
    width: 100%;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    border: none;
    padding: 0.35rem 0;
}

.woocommerce-cart .cart_totals table tr.order-total th,
.woocommerce-cart .cart_totals table tr.order-total td {
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 960px) {
    .woocommerce-cart .woocommerce {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart table.shop_table {
        border-spacing: 0 10px;
    }
}

/* Empty cart styling */
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
    text-align: center;
}

.woocommerce-cart .cart-empty {
    font-size: 1.1rem;
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.woocommerce-cart .return-to-shop .button {
    background: #fdd835;
    border: 1px solid #fdd835;
    color: #0f0f0f;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.9rem 1.4rem;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.woocommerce-cart .return-to-shop .button:hover {
    background: #ffe35c;
    border-color: #ffe35c;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

.woocommerce-cart .cross-sells ul.products {
    margin-top: 1rem;
}

/* Cross-sells (empty cart and cart page) aligned with card design */
.woocommerce-cart .cross-sells ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 1.5rem auto 2rem;
    padding: 0 0.5rem;
}

.woocommerce-cart .cross-sells ul.products li.product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 12px 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 10px 0 4px;
}

.woocommerce-cart .cross-sells ul.products li.product .price {
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.woocommerce-cart .cross-sells ul.products li.product a.button {
    background: #fdd835;
    border: 1px solid #fdd835;
    color: #0f0f0f;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: block;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.woocommerce-cart .cross-sells ul.products li.product a.button:hover {
    background: #ffe35c;
    border-color: #ffe35c;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

.woocommerce-cart .cross-sells ul.products li.product img {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
}

/* Empty cart "New in store" block cart styles */
.woocommerce-cart .wc-block-grid__products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 1.5rem auto 2rem;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .woocommerce-cart .wc-block-grid__products {
        grid-template-columns: 1fr;
    }
}

.woocommerce-cart .wc-block-grid__product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 12px 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: none;
}

/* Force 4 columns layout for Woo block grid in empty cart */
.woocommerce-cart .wc-block-grid.has-4-columns .wc-block-grid__products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .woocommerce-cart .wc-block-grid.has-4-columns .wc-block-grid__products {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .woocommerce-cart .wc-block-grid__product {
        padding: 18px 16px 20px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-cart .wc-block-grid__product-image img {
        max-height: 220px;
    }

    .woocommerce-cart .wc-block-grid__product-title {
        font-size: 16px;
    }

    .woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link {
        min-width: 220px;
        padding: 0.9rem 1.2rem;
    }
}

.woocommerce-cart .wc-block-grid.has-4-columns .wc-block-grid__product {
    max-width: none;
    width: auto;
    flex: initial;
}


.woocommerce-cart .wc-block-grid__product-image img {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
}

.woocommerce-cart .wc-block-grid__product-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 10px 0 4px;
}

.woocommerce-cart .wc-block-grid__product-price {
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link {
    background: #fdd835;
    border: 1px solid #fdd835;
    color: #0f0f0f;
    font-weight: 700;
    border-radius: 0;
    padding: 0.85rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
    min-width: 200px;
}

.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
    background: #ffe35c;
    border-color: #ffe35c;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

/* Cross-sells fallback (ensure same card look everywhere) */
.woocommerce .cross-sells h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #222;
}

.woocommerce .cross-sells ul.products {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 1rem auto 2rem;
    max-width: 1200px;
}

.woocommerce .cross-sells ul.products li.product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 12px 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.woocommerce .cross-sells ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 10px 0 4px;
}

.woocommerce .cross-sells ul.products li.product .price {
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.woocommerce .cross-sells ul.products li.product a.button {
    background: #fdd835;
    border: 1px solid #fdd835;
    color: #0f0f0f;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: block;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.woocommerce .cross-sells ul.products li.product a.button:hover {
    background: #ffe35c;
    border-color: #ffe35c;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

.woocommerce .cross-sells ul.products li.product img {
    max-height: 180px;
    width: auto;
    margin: 0 auto;
}

/* === Blog === */
.blog-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.blog-hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.blog-hero h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: #222;
}

.blog-hero__desc {
    color: #555;
    line-height: 1.6;
}

.blog-archive .blog-hero h1 {
    display: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-archive .blog-grid {
    grid-template-columns: 1fr;
}

.blog-card {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
}

.blog-card__thumb {
    height: 100%;
}

.blog-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.blog-card__content {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: 100%;
    min-height: 190px;
    justify-content: center;
}

.blog-card__meta {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.blog-card__meta .dot {
    font-size: 16px;
}

.blog-card__title {
    margin: 0;
    font-size: 1.15rem;
    color: #222;
}

.blog-card__title a {
    text-decoration: none;
    color: inherit;
}

.blog-card__excerpt {
    color: #555;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__link {
    color: #e1a700;
    font-weight: 700;
    text-decoration: none;
}

.blog-pagination {
    margin-top: 2rem;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 4px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
}

.blog-pagination .page-numbers.current {
    background: #fdd835;
    border-color: #fdd835;
    color: #000;
}

.blog-single {
    background: #f7f8fb;
    padding: 2rem 1rem 3rem;
}

.blog-single__container {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-single__card {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.blog-single__thumb img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.blog-single__body {
    padding: 1.5rem 1.75rem 2rem;
}

.blog-single__meta {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.blog-single__meta .dot {
    font-size: 18px;
}

.blog-single__title {
    margin: 0.3rem 0 1rem;
    font-size: 2rem;
    color: #222;
}

.blog-single__content {
    line-height: 1.7;
    color: #444;
}

.blog-single__content h2,
.blog-single__content h3 {
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
}

.blog-single__content p {
    margin-bottom: 1rem;
}

.blog-empty {
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .blog-single__thumb img {
        height: 240px;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-card__thumb {
        height: 220px;
    }
}

/* === About page === */
.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.about-team {
    margin: 0 0 1.75rem;
}

.about-team__head {
    text-align: center;
    margin-bottom: 1rem;
}

.about-team__eyebrow {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e1a700;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.about-team__card {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    text-align: center;
}

.about-team__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: #f4f4f4;
    border: 1px dashed #e0e0e0;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-team__name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
}

.about-team__role {
    margin: 0.4rem 0 0;
    color: #555;
    font-size: 0.95rem;
}

.about-team__note {
    margin: 1rem 0 0;
    text-align: center;
    color: #555;
    font-weight: 600;
}

.about-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
    align-items: center;
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
}

.about-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-hero__text h1 {
    margin: 0 0 0.6rem;
    font-size: 2rem;
    color: #222;
}

.about-hero__text p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.about-body {
    display: grid;
    gap: 1.5rem;
}

.about-section {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 1.75rem;
}

.about-section h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #222;
}

.about-section p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.9rem;
}

/* === Contact page === */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-info h1 {
    margin: 0 0 1rem;
    font-size: 2rem;
    color: #222;
}

.contact-block {
    margin-bottom: 1.25rem;
}

.contact-block h2 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e1a700;
}

.contact-block p {
    margin: 0 0 0.4rem;
    color: #444;
    line-height: 1.6;
}

.contact-page a {
    color: #222;
}

.contact-page a:hover {
    color: #000;
}

.contact-map__frame {
    height: 100%;
    min-height: 320px;
    border-radius: 12px;
    border: 1px solid #e8e9ed;
    overflow: hidden;
    background: #f7f7f7;
    width: 100%;
    box-sizing: border-box;
}

.contact-map__frame iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block;
}

.contact-map__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 1.5rem 0.75rem 2.5rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .contact-info {
        text-align: left;
    }

    .contact-info h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    .contact-block {
        margin-bottom: 1rem;
    }

    .contact-map__frame {
        min-height: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
}

/* === Homepage === */
.home-wrapper {
    padding-bottom: 2rem;
}

.home-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(90deg, #fffdf5 0%, #fff9e0 100%);
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 540px;
}

.hero-split .home-hero__content {
    padding: 2.25rem 2.5rem;
}

.hero-split .home-hero__image {
    background: #f7f1df;
}

.home-hero__content .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e1a700;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.home-hero__content .eyebrow-logo {
    display: block;
    height: 150px;
    width: auto;
    margin: 0 0 0.6rem;
}

.home-hero__content .hero-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.6rem;
}

.home-hero__content .hero-badges .eyebrow-logo {
    margin: 0;
    width: 153px;
    height: 153px;
    object-fit: contain;
}

.home-hero__content h1 {
    font-size: 2.35rem;
    margin: 0 0 0.75rem;
    color: #222;
}

.home-hero__content .lead {
    margin: 0 0 1.25rem;
    color: #555;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.home-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 18px 18px 0;
}

.home-featured {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.featured-card {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.featured-card__image {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #7ccf00;
    color: #0f0f0f;
    font-weight: 800;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    letter-spacing: 0.02em;
}

.featured-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    align-items: flex-start;
}

.featured-card__body h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #222;
}

.featured-card__body p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    flex: 1;
}

.featured-card .btn-secondary {
    align-self: center;
    background: #fdd835;
    border-color: #fdd835;
    color: #0f0f0f;
    padding: 1.05rem 1.7rem;
    font-weight: 700;
    min-width: 180px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.featured-card .btn-secondary:hover {
    background: #ffe35c;
    border-color: #ffe35c;
}

.btn-primary {
    background: #fdd835;
    color: #0f0f0f;
    border-radius: 10px;
    padding: 0.85rem 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #fdd835;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.btn-primary:hover {
    background: #ffe35c;
    border-color: #ffe35c;
    box-shadow: 0 10px 20px rgba(253, 216, 53, 0.25);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: #0f0f0f;
    border: 1.5px solid #fdd835;
    padding: 0.85rem 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.btn-secondary:hover {
    background: #fff9db;
    box-shadow: 0 10px 18px rgba(253, 216, 53, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-split .home-hero__content {
        padding: 1.5rem 1.25rem;
    }

    .home-hero__content .eyebrow-logo {
        height: 90px;
        margin-bottom: 0.5rem;
    }

    .home-hero__content .hero-badges {
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .home-hero__content .hero-badges .eyebrow-logo {
        width: 90px;
        height: 90px;
    }

    .home-hero__image img {
        border-radius: 0;
    }

    .featured-card__image {
        height: 340px;
    }
}

.home-highlights {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.home-highlights__item {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.home-highlights__item strong {
    color: #000;
}

.home-highlights__item p {
    margin: 0.35rem 0 0;
    color: #555;
}

.home-section-head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.home-section-head h2 {
    margin: 0 0 0.4rem;
    color: #222;
    font-size: 1.6rem;
}

.home-section-head p {
    margin: 0;
    color: #555;
}

.home-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2rem;
}

.home-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.home-category {
    position: relative;
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 16px;
    padding: 0;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.home-category:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.home-category__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

.home-category__title {
    position: relative;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.home-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2.5rem;
}

.home-products__grid .products {
    margin: 0;
}

.home-icons {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem 2rem;
}

.home-icons__row {
    background: #fffdf5;
    border: 1px solid #f0e4b0;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 14px;
    align-items: center;
    justify-items: center;
    margin: 0;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-icon img {
    height: 170px;
    width: auto;
    display: block;
    opacity: 1;
    filter: none;
}

@media (max-width: 768px) {
    .home-icons {
        padding: 0.5rem 0.75rem 1.5rem;
    }

    .home-icons__row {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap: 16px 16px;
        width: fit-content;
        max-width: 100%;
        padding: 0.85rem 1rem;
        margin: 0 auto;
        justify-content: center;
        justify-items: center;
    }

    .home-icon img {
        height: 100px;
    }
}

.home-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.home-about__text h2 {
    margin: 0 0 0.6rem;
    color: #222;
}

.home-about__text p {
    color: #555;
    line-height: 1.65;
    margin-bottom: 0.9rem;
}

.home-about__image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.home-blog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2.5rem;
}

.home-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.home-blog__card {
    background: #fff;
    border: 1px solid #e8e9ed;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.home-blog__thumb img,
.home-blog__thumb {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.home-blog__body {
    padding: 0.9rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.home-blog__meta {
    color: #666;
    font-size: 0.9rem;
}

.home-blog__body h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #222;
}

.home-blog__body p {
    margin: 0;
    color: #555;
    line-height: 1.45;
}

.home-blog__meta {
    font-size: 0.85rem;
    color: #888;
}

@media (min-width: 1100px) {
    .home-blog__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.home-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 3rem;
}

.home-cta__card {
    background: linear-gradient(120deg, #fffbe8, #fff9d0);
    border: 1px solid #fdd835;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.home-cta__card h2 {
    margin: 0 0 0.4rem;
    color: #222;
}

.home-cta__card p {
    margin: 0 0 0.9rem;
    color: #555;
}

.woocommerce .woocommerce-products-header__title.page-title,
.woocommerce-products-header__title.page-title,
.post-type-archive-product .page-title,
.tax-product_cat .page-title {
    display: none !important;
}

.home-video {
    background: #f9edbe;
    padding: 2.5rem 1rem 3rem;
    margin: 0;
}

.home-video .home-section-head {
    margin-bottom: 1.25rem;
}

.home-video__frame {
    max-width: 900px;
    height: 480px;
    margin: 0 auto;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    background: #000;
}

@media (max-width: 768px) {
    .home-video__frame {
        height: 300px;
    }
}

.home-banner.honey-fair {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2.5rem;
}

.honey-fair__content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.25rem;
    background: linear-gradient(120deg, #fffef2, #fff8dc);
    border: 1px solid #fdd835;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    align-items: center;
}

.honey-fair__text h2 {
    margin: 0.1rem 0 0.5rem;
    color: #222;
}

.honey-fair__text p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.honey-fair__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.honey-fair__images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

@media (max-width: 960px) {
    .honey-fair__content {
        grid-template-columns: 1fr;
    }

    .honey-fair__images {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .honey-fair__images img {
        height: 140px;
    }
}

.full-desc {
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1.25rem;
}

.full-desc h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: #222;
}

.full-desc .desc-content {
    line-height: 1.65;
    color: #4a4a4a;
}

.full-desc .desc-toggle {
    margin-top: 0.6rem;
    background: none;
    border: none;
    padding: 0;
    color: #f7ce13;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.full-desc .desc-content {
    color: #4a4a4a;
}

.full-desc .desc-more {
    display: none;
}

.full-desc.is-open .desc-more {
    display: block;
}

.product-faq {
    margin-top: 1.25rem;
    border-top: 1px solid #eee;
    padding-top: 1.25rem;
}

.product-faq h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: #222;
}

.product-faq__list {
    display: grid;
    gap: 0.5rem;
}

.product-faq__item {
    border-bottom: 1px solid #e6e6e6;
    padding: 0.25rem 0;
}

.product-faq__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    color: #222;
    padding: 0.6rem 0;
}

.product-faq__summary::-webkit-details-marker {
    display: none;
}

.product-faq__icon {
    width: 12px;
    height: 12px;
    border-right: 1.5px solid #222;
    border-bottom: 1.5px solid #222;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
}

.product-faq__item[open] .product-faq__icon {
    transform: rotate(-135deg);
}

.product-faq__answer {
    padding: 0 0 0.75rem;
    color: #4a4a4a;
    line-height: 1.6;
    transform-origin: top;
    will-change: opacity, transform;
}

.product-faq__item[open] .product-faq__answer {
    animation: wcdFaqReveal 0.16s ease-out;
}

@keyframes wcdFaqReveal {
    from {
        opacity: 0.75;
        transform: translateY(-2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-faq__icon {
        transition: none;
    }

    .product-faq__item[open] .product-faq__answer {
        animation: none;
    }
}

.woocommerce-product-gallery__image a {
    pointer-events: none;
    cursor: default;
}

/* Oprește zoom-ul din galeria de produs */
.woocommerce-product-gallery__trigger {
    display: none !important;
}

.woocommerce-product-gallery .zoomImg {
    display: none !important;
}

.woocommerce-product-gallery__image img {
    pointer-events: none !important;
}

/* Override slick widths from plugin to keep gallery responsive */
.woocommerce-product-gallery .slick-track {
    display: flex !important;
    align-items: center;
}

.woocommerce-product-gallery .slick-slide {
    width: auto !important;
}

.woocommerce-product-gallery {
    width: 100%;
}

.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image {
    width: 100%;
}

.woocommerce-product-gallery__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-product-gallery__wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 520px;
}

.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .slick-slide {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .slick-slide img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 520px !important;
    height: auto !important;
    object-fit: contain;
    margin: 0 auto;
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    gap: 0.5rem;
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.5rem 0.25rem 0;
    margin: 0;
    list-style: none;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 80px;
    float: none !important;
    height: 80px;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* WPGS plugin thumbs */
.woocommerce-product-gallery .wpgs-nav .slick-slide {
    width: 80px !important;
    height: 80px !important;
}

.woocommerce-product-gallery .wpgs-nav .slick-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

.woocommerce-product-gallery .slick-list {
    overflow: hidden;
}

.woocommerce-product-gallery .slick-slide img {
    height: auto !important;
    object-fit: contain;
}

/* Allow main image to keep natural width while thumbnails stay 100% */
.woocommerce-product-gallery__image img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* Ensure thumbs slider keeps natural width */
.woocommerce-product-gallery .flex-control-thumbs .slick-track {
    display: flex !important;
    width: auto !important;
}

.woocommerce-product-gallery .flex-control-thumbs .slick-slide {
    width: auto !important;
    height: auto !important;
}

/* Re-apply fixed thumb sizing for WPGS after generic slick overrides */
.woocommerce-product-gallery .wpgs-nav .slick-track {
    align-items: stretch !important;
    justify-content: flex-start !important;
}

.woocommerce-product-gallery .wpgs-nav .slick-slide,
.woocommerce-product-gallery .wpgs-nav .flex-control-thumbs .slick-slide {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
}

@media (max-width: 768px) {
    .woocommerce-product-gallery__wrapper img {
        max-height: 360px;
    }

    /* Mobile fixes: keep gallery centered and full width */
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100% !important;
        float: none !important;
    }

    .woocommerce-product-gallery,
    .woocommerce-product-gallery__wrapper,
    .woocommerce-product-gallery__image {
        width: 100% !important;
        margin: 0 auto;
    }

    .woocommerce-product-gallery .slick-track {
        justify-content: center;
    }

    .woocommerce-product-gallery .flex-control-thumbs {
        display: none !important;
        /* ascunde thumbnails pe mobil */
    }

    /* Ascunde complet track-ul/sliderul de thumbs pe mobil */
    .woocommerce-product-gallery .flex-control-nav,
    .woocommerce-product-gallery .flex-control-thumbs.slick-slider,
    .woocommerce-product-gallery .flex-control-thumbs .slick-list {
        display: none !important;
    }

    /* Ascunde orice carusel/thumb suplimentar din plugin */
    .woocommerce-product-gallery .wpgs-nav,
    .woocommerce-product-gallery .wpgs-thumbnails,
    .woocommerce-product-gallery .wpgs-carousel,
    .woocommerce-product-gallery .wpgs-slide,
    .woocommerce-product-gallery .slick-dots,
    .woocommerce-product-gallery .woocommerce-product-gallery__wrapper+div {
        display: none !important;
    }

    /* Ascunde lista slick de la nav (thumb slider) pe mobil */
    .woocommerce-product-gallery .slick-slider.wpgs-nav,
    .woocommerce-product-gallery .slick-slider.wpgs-nav .slick-list.draggable,
    .woocommerce-product-gallery .flex-control-thumbs .slick-list.draggable {
        display: none !important;
    }

    /* Prevent slick inline offsets on mobile */
    .woocommerce-product-gallery .slick-track {
        transform: none !important;
        width: 100% !important;
        display: block !important;
    }

    .woocommerce-product-gallery .slick-slide {
        position: relative !important;
        left: 0 !important;
        width: 100% !important;
        display: none !important;
    }

    .woocommerce-product-gallery .slick-slide.slick-current {
        display: block !important;
    }

    .woocommerce-product-gallery__image,
    .woocommerce-product-gallery__image img {
        max-height: 420px;
    }
}

@media(max-width:768px) {
    .custom-product-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-container,
    .details-container {
        padding: 1rem;
    }
}


/* Pagina shop */

.woocommerce ul.products {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    width: 100%;
    justify-items: stretch;
}

.woocommerce ul.products li.product {
    height: 100%;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
}

.woocommerce .products ul::before,
.woocommerce .products ul::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }

    .product-card {
        min-height: 0;
    }

    .product-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .product-bottom .price {
        margin-top: 6px;
    }
}

@media (min-width: 1100px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Shop pagination (lista produse) */
.woocommerce nav.woocommerce-pagination {
    margin: 2rem 0 2.5rem;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    margin: 0;
    padding: 0.35rem;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 9px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #1e1e1e;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: #fdd835;
    background: #fff9dc;
    color: #111;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #fdd835;
    border-color: #fdd835;
    color: #111;
}

@media (max-width: 768px) {
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        min-width: 36px;
        height: 36px;
    }
}

.shop-card {
    list-style: none;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    display: block;
}

.product-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 99px;
    height: 99px;
    z-index: 2;
    background: transparent;
}

.product-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    box-shadow: none;
}

.product-badge--left {
    left: -20px;
    right: auto;
}

.product-badge--single {
    top: 10px;
    right: 10px;
    width: 150px;
    height: 150px;
}

.product-badge--single.product-badge--left {
    left: 10px;
    right: auto;
}

@media (max-width: 768px) {
    .product-badge {
        top: -12px;
        right: -12px;
        width: 72px;
        height: 72px;
    }

    .product-badge--single {
        top: 6px;
        right: 6px;
        width: 110px;
        height: 110px;
    }

    .product-badge--left {
        left: -12px;
        right: auto;
    }

    .product-badge--single.product-badge--left {
        left: 6px;
        right: auto;
    }
}

.gallery-container {
    position: relative;
}

.product-badges {
    margin-top: 1rem;
    background: #fffdf5;
    border: 1px solid #f0e4b0;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 14px;
    align-items: center;
    justify-items: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.product-badges__item img {
    height: 99px;
    width: auto;
    display: block;
}

/* === Product social reviews === */
.product-reviews {
    max-width: 1200px;
    margin: 2rem auto 3rem;
    padding: 0 1rem;
}

.product-insights {
    display: block !important;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 3rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.product-insights__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    border-top: 1px solid #e6e6e6;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #fff;
}

.product-insights__tab {
    border: 0;
    border-right: 1px solid #ececec;
    border-top: 3px solid transparent;
    background: transparent;
    color: #222;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1rem 1.25rem;
    cursor: pointer;
}

.product-insights__tab:last-child {
    border-right: 0;
}

.product-insights__tab:not(.is-active) {
    border-top-color: #fdd835;
}

.product-insights__tab.is-active {
    background: transparent;
}

.product-insights__panel {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0 0 12px 12px;
    padding: 1.2rem;
    overflow: hidden;
    min-height: 340px;
}

.product-insights.has-tabs .product-insights__panel {
    display: none;
}

.product-insights.has-tabs .product-insights__panel.is-active {
    display: block;
    width: 100%;
}

.product-insights .home-section-head {
    margin-bottom: 0.9rem;
}

.product-reviews__scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    width: 100%;
    min-width: 0;
    padding: 0.35rem 0.15rem 0.55rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.product-reviews__scroller::-webkit-scrollbar {
    height: 8px;
}

.product-reviews__scroller::-webkit-scrollbar-thumb {
    background: #d5d5d5;
    border-radius: 99px;
}

.product-review-card {
    flex: 0 0 360px;
    max-width: 420px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    scroll-snap-align: start;
    min-height: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-review-card.is-open {
    height: auto;
}

.product-review-card__head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
}

.product-review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #e9ede5;
    color: #3b3b3b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.product-review-card__name {
    font-weight: 700;
    color: #222;
}

.product-review-card__stars {
    display: flex;
    gap: 2px;
    color: #c7c7c7;
    margin: 0.25rem 0 0.6rem;
    font-size: 0.95rem;
}

.product-review-card__stars .is-on {
    color: #f7ce13;
}

.product-review-card__text {
    color: #555;
    line-height: 1.55;
    font-size: 0.95rem;
}

.js-card-text {
    overflow: hidden;
}

.card-text-preview-line {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.js-card-text .card-text-more {
    display: none;
}

.js-card-text.is-open .card-text-preview-line {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
}

.js-card-text.is-open .card-text-more {
    display: block;
}

.review-text-toggle {
    margin-top: 0.25rem;
    align-self: flex-start;
    border: 0;
    background: none;
    color: #bf9900;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

/* Honey Q&A cards (horizontal scroll) */
.honey-qa {
    margin: 0;
    padding: 0;
}

.honey-qa__scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    width: 100%;
    min-width: 0;
    padding: 0.35rem 0.15rem 0.55rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.honey-qa__scroller::-webkit-scrollbar {
    height: 8px;
}

.honey-qa__scroller::-webkit-scrollbar-thumb {
    background: #d5d5d5;
    border-radius: 99px;
}

.honey-qa__card {
    flex: 0 0 360px;
    max-width: 420px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    scroll-snap-align: start;
    min-height: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.honey-qa__card.is-open {
    height: auto;
}

.honey-qa__question {
    margin: 0 0 0.55rem;
    font-size: 1.02rem;
    line-height: 1.35;
    color: #222;
}

.honey-qa__answer {
    margin: 0;
    color: #555;
    line-height: 1.55;
    font-size: 0.95rem;
}

/* Product YouTube preview */
.product-video-preview {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto 2.2rem !important;
    padding: 0 1rem !important;
    box-sizing: border-box;
}

.product-video-preview .home-section-head {
    margin-bottom: 0.9rem;
}

.product-video-preview .home-section-head h2 {
    font-size: 1.65rem;
}

.product-video-preview__card {
    display: block;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 1.15rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-video-preview__card:hover {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.product-video-preview__thumb {
    position: relative;
    display: block;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f3;
    aspect-ratio: 16 / 9;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto;
}

.product-video-preview__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.product-video-preview__play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.68);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.product-video-preview__play::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-38%, -50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid #fff;
}

.product-video-preview__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .product-insights__tabs {
        grid-template-columns: 1fr 1fr;
    }

    .product-insights__tab {
        font-size: 0.95rem;
        padding: 0.8rem 0.75rem;
        border-right: 1px solid #ececec;
    }

    .product-insights__tab:last-child {
        border-right: 0;
    }

    .product-insights {
        padding: 0 0.6rem;
    }

    .product-insights__panel {
        padding: 0.9rem;
        min-height: 0;
    }

    .product-badges {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 12px;
    }

    .product-badges__item img {
        height: 70px;
    }

    .honey-qa__card {
        flex-basis: 82vw;
        max-width: 82vw;
    }

    .product-review-card {
        flex-basis: 82vw;
        max-width: 82vw;
        min-height: 0;
        height: auto;
    }

    .honey-qa__card {
        min-height: 0;
        height: auto;
    }

    .product-video-preview {
        padding: 0 0.6rem;
    }

    .product-video-preview__card {
        padding: 0.85rem;
    }

    .product-video-preview__thumb {
        max-width: 100%;
    }

    .product-video-preview .home-section-head h2 {
        font-size: 1.35rem;
    }

    .product-video-preview__play {
        width: 54px;
        height: 54px;
    }
}
.product-image img {
    max-height: 180px;
    object-fit: contain;
    margin: 0 auto;
}

/* Apicosmetice hover: swap to gallery image */
body.tax-product_cat-api-cosmetice .product-image {
    position: relative;
}

.product-image--swap .product-image__primary,
.product-image--swap .product-image__secondary {
    display: block;
    width: 100%;
}

.product-image--swap .product-image__secondary {
    display: none;
}

.product-image--swap .product-image__primary img,
.product-image--swap .product-image__secondary img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-image--swap:hover .product-image__primary {
    display: none;
}

.product-image--swap:hover .product-image__secondary {
    display: block;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    margin: 12px 0 6px;
    text-transform: uppercase;
    color: #000;
}

.product-short-desc {
    display: none;
}

.product-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    margin: 10px 0;
}

.product-bottom .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    justify-self: center;
    min-width: 120px;
    background: #fff;
}

.qty_button {
    background: #fff;
    border: none;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.15s ease;
}

.product-bottom .quantity .qty {
    width: 52px;
    text-align: center;
    border: 0;
    padding: 0.45rem 0.35rem;
}

.product-bottom .price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.product-bottom .quantity .qty_button:hover {
    background: #fff9db;
}

/* Neutral buttons/touch highlight for qty controls (including archive/recomandate/noutati) */
.qty_button,
.qty_button:focus,
.quantity .qty_button,
.quantity .qty_button:focus,
.quantity input.qty:focus,
.woocommerce .quantity .qty_button,
.woocommerce .quantity .qty_button:focus,
.woocommerce .quantity input.qty:focus {
    color: #0f0f0f;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    box-shadow: none;
}

/* Hide native number input spinners */
input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.qty,
.quantity input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.add_to_cart_button {
    background: #FFD700;
    border: none;
    padding: 10px;
    margin-top: auto;
    font-weight: bold;
    cursor: pointer;
}


.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
    container-type: inline-size;
    width: 100% !important;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.woocommerce-cart,
.woocommerce-checkout {
    width: 100% !important;
    margin: 0 auto !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    display: block !important;
    width: 100% !important;
}

@container (max-width: 700px) {

    .woocommerce-cart,
    .woocommerce-checkout {
        padding: 10px !important;
    }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 80%;
}

@media (max-width: 768px) {

    .woocommerce-account .woocommerce-MyAccount-content,
    .woocommerce-account .woocommerce-MyAccount-navigation {
        float: none;
        width: 80%;
    }
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 80%;
}

/* Honey Fair banner */
.honey-fair {
    margin-top: 2.5rem;
}

.honey-fair__wrap {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.5rem;
    align-items: center;

    padding: clamp(16px, 3vw, 28px);
    border-radius: 18px;

    background: linear-gradient(90deg, #fff7dc 0%, #ffffff 70%);
    border: 1px solid rgba(234, 187, 74, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);

    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.honey-fair__wrap::before {
    content: "";
    position: absolute;
    inset: -80px;
    background-image: radial-gradient(rgba(0, 0, 0, .08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .18;
    transform: rotate(-6deg);
    pointer-events: none;
}

.honey-fair__left {
    position: relative;
    z-index: 1;
}

.honey-fair__badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(244, 197, 66, .25);
    border: 1px solid rgba(244, 197, 66, .35);
    margin-bottom: 10px;
}

.honey-fair__title {
    margin: 0 0 8px 0;
}

.honey-fair__desc {
    margin: 0 0 16px 0;
    opacity: .85;
    max-width: 52ch;
}

.honey-fair__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
}

.honey-fair__right {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    align-items: center;
}

.honey-fair__img {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1 / 1;
}

.honey-fair__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.honey-fair__wrap:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .honey-fair__wrap {
        grid-template-columns: 1fr;
    }

    .honey-fair__right {
        grid-template-columns: 1fr 1fr;
    }
}

.wc-block-cart .wc-block-cart__submit-container {
    background: #fdd835;
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
    color: #0f0f0f;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    background: #fdd835;
}

.wc-block-cart .wc-block-cart__submit-container {
    background: #fdd835;
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
    color: #0f0f0f;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    background: #fdd835;
}

body.error404 .bee404 {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 24px auto;
    background: #fff;
}

body.error404 .bee404::before {
    content: none;
}

body.error404 .bee404-kicker {
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .65;
    margin-bottom: 8px;
}

body.error404 .bee404-code {
    font-weight: 800;
    line-height: 1;
    font-size: clamp(72px, 10vw, 140px);
    color: rgba(27, 27, 27, .10);
    margin-bottom: 10px;
}

body.error404 .bee404-title {
    font-size: clamp(28px, 3vw, 44px);
    margin: 0 0 8px;
}

body.error404 .bee404-lead {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 52ch;
}

body.error404 .bee404-illus {
    color: #1B1B1B;
    display: inline-block;
    padding: 8px;
}

body.error404 .bee404-svg {
    max-width: 100%;
    height: auto;
}

body.error404 .bee404-bee {
    transform-origin: 12px 55px;
    animation: beeFloat 2.8s ease-in-out infinite;
}

body.error404 .bee404-path {
    animation: dashMove 2.2s linear infinite;
}

@keyframes beeFloat {
    0% {
        transform: translate(0, 0) rotate(-2deg);
    }

    50% {
        transform: translate(0, -8px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0) rotate(-2deg);
    }
}

@keyframes dashMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -48;
    }
}
