/* ============================================================
   SHOP LAYOUT — Le Pétrinal Sépia v2.2
   Sidebar catégories gauche + grille produits redessinée
   ============================================================ */

/* -----------------------------------------------------------
   EN-TÊTE DE PAGE BOUTIQUE
   ----------------------------------------------------------- */
.shop-layout-page {
    padding-bottom: 4rem;
}

.shop-page-header {
    text-align: center;
    padding: 3.2rem 0 2.6rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.shop-page-header > * {
    position: relative;
    z-index: 1;
}

.shop-page-header.has-background-image {
    min-height: 500px;
    padding: 5.6rem 1.4rem 4.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(180deg, rgba(74, 50, 40, 0.78) 0%, rgba(74, 50, 40, 0.6) 100%),
        var(--shop-header-background-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.shop-header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.shop-header-ornament .orn-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.shop-header-ornament .orn-line:last-child {
    background: linear-gradient(270deg, transparent, var(--gold));
}
.shop-header-ornament .orn-cross {
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.8;
}

.shop-page-header.has-background-image .shop-header-ornament .orn-line {
    background: linear-gradient(90deg, transparent, rgba(245, 230, 211, 0.95));
}

.shop-page-header.has-background-image .shop-header-ornament .orn-line:last-child {
    background: linear-gradient(270deg, transparent, rgba(245, 230, 211, 0.95));
}

.shop-page-header.has-background-image .shop-header-ornament .orn-cross {
    color: rgba(245, 230, 211, 0.95);
}

.shop-page-title {
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin: 0 0 0.6rem;
    line-height: 1.15;
}

.shop-page-subtitle {
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.shop-page-header.has-background-image .shop-page-title {
    color: var(--text-white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.shop-page-header.has-background-image .shop-page-subtitle {
    color: rgba(245, 230, 211, 0.9);
}

.content-area .shop-page-live-count {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.95rem;
    color: rgb(74, 163, 100);
}

.shop-page-live-count .shop-online-count-label {
    color: rgb(74, 163, 100);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.shop-online-count {
    min-width: 1.6rem;
    text-align: center;
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: 1.5rem;
    color: rgb(74, 163, 100);
}

.shop-page-header.has-background-image .shop-page-live-count,
.shop-page-header.has-background-image .shop-page-live-count .shop-online-count-label {
    color: rgba(226, 245, 214, 0.96);
}

.shop-page-header.has-background-image .shop-online-count {
    color: rgb(179, 225, 153);
}

/* -----------------------------------------------------------
   LAYOUT PRINCIPAL : SIDEBAR + PRODUITS
   ----------------------------------------------------------- */
.shop-layout-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.6rem;
    align-items: start;
    background: linear-gradient(180deg, rgba(235, 224, 207, 0.88) 0%, rgba(245, 230, 211, 0.65) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

/* -----------------------------------------------------------
   SIDEBAR
   ----------------------------------------------------------- */
.shop-sidebar {
    position: sticky;
    top: 104px; /* sous le header sticky */
    align-self: start;
    height: auto;
    max-height: none;
    overflow: visible;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-muted) transparent;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 0.3rem;
}

.shop-sidebar::-webkit-scrollbar {
    width: 4px;
}
.shop-sidebar::-webkit-scrollbar-track { background: transparent; }
.shop-sidebar::-webkit-scrollbar-thumb {
    background: var(--gold-muted);
    border-radius: 2px;
}

/* Bloc générique sidebar */
.sidebar-block {
    background: linear-gradient(180deg, rgba(235, 224, 207, 0.95) 0%, rgba(245, 230, 211, 0.9) 100%);
    border: 1px solid var(--border-strong);
    padding: 1.4rem 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(74, 50, 40, 0.08);
    box-sizing: border-box;
}

.sidebar-search-block {
    flex: 0 0 auto;
    min-height: 126px;
    padding: 1.55rem 1.45rem;
    overflow: visible;
}

.sidebar-categories-block {
    flex: 0 0 720px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.sidebar-other-shops-block {
    flex: 0 0 auto;
    min-height: 302px;
    padding: 1.55rem 1.45rem 1.35rem;
}

/* Trait doré en haut de chaque bloc */
.sidebar-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.5;
}

/* Titre de bloc sidebar */
.sidebar-block-title {
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

/* Defensive reset to avoid default list bullets in sidebar */
.shop-sidebar .sidebar-cat-list,
.shop-sidebar .sidebar-subcat-list,
.shop-sidebar .sidebar-cat-list li,
.shop-sidebar .sidebar-subcat-list li,
.shop-sidebar .sidebar-subcat-list ul {
    list-style: none !important;
    margin: 0;
    padding-left: 0;
}

.sidebar-title-icon {
    font-size: 0.65rem;
    opacity: 0.8;
}

/* -----------------------------------------------------------
   RECHERCHE SIDEBAR
   ----------------------------------------------------------- */
.search-input-wrap {
    position: relative;
    display: flex;
    min-height: 46px;
}

.shop-search-input {
    width: 100%;
    min-height: 46px;
    box-sizing: border-box;
    padding: 0.72rem 3rem 0.72rem 0.9rem;
    background: rgba(245, 230, 211, 0.95);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text-primary);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.shop-search-input::placeholder { color: var(--text-dim); }
.shop-search-input:focus {
    border-color: var(--gold);
    background: var(--bg-raised);
    box-shadow: 0 0 0 2px var(--gold-faint);
}

.search-submit-btn {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 44px;
    min-height: 46px;
    background: var(--gold);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    border-radius: 0 2px 2px 0;
    transition: background 0.22s, transform 0.22s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-submit-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

/* -----------------------------------------------------------
   LISTE CATÉGORIES
   ----------------------------------------------------------- */
.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-categories-block > .sidebar-cat-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-muted) transparent;
}

.sidebar-categories-block > .sidebar-cat-list::-webkit-scrollbar {
    width: 5px;
}

.sidebar-categories-block > .sidebar-cat-list::-webkit-scrollbar-track {
    background: rgba(166, 124, 82, 0.08);
    border-radius: 5px;
}

.sidebar-categories-block > .sidebar-cat-list::-webkit-scrollbar-thumb {
    background: var(--gold-muted);
    border-radius: 5px;
}

.sidebar-cat-item {
    border-bottom: 1px solid var(--border);
}
.sidebar-cat-item:last-child { border-bottom: none; }

.sidebar-cat-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.3rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.95rem;
    transition: color 0.22s, padding-left 0.22s;
    position: relative;
    min-width: 0;
}
.sidebar-cat-link:hover {
    color: var(--text-primary);
    padding-left: 0.55rem;
}

.sidebar-cat-item.active > .sidebar-cat-link {
    color: var(--gold);
    font-weight: 600;
}
.sidebar-cat-item.active > .sidebar-cat-link .cat-bullet {
    color: var(--gold);
    transform: scale(1.3);
}

.cat-bullet {
    font-size: 0.45rem;
    color: var(--brown-muted);
    flex-shrink: 0;
    transition: color 0.22s, transform 0.22s;
}

.sidebar-shop-icon {
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.9rem;
    transition: color 0.22s, transform 0.22s;
}

.sidebar-cat-link:hover .sidebar-shop-icon {
    color: var(--gold-hover);
    transform: translateY(-1px);
}

.sidebar-other-shops-block .sidebar-cat-link {
    justify-content: center;
    padding: 0.95rem 0.3rem;
}

.sidebar-other-shops-block .sidebar-cat-link:hover {
    padding-left: 0.3rem;
}

.sidebar-shop-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 38px;
    margin: 0 auto;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.sidebar-other-shops-block .sidebar-cat-link:hover .sidebar-shop-image {
    transform: translateY(-1px) scale(1.02);
    opacity: 0.96;
}

.cat-name {
    flex: 1;
    line-height: 1.35;
    min-width: 0;
    overflow-wrap: anywhere;
}

.cat-count {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.68rem;
    color: var(--text-dim);
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.1rem 0.5rem;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.22s;
}
.sidebar-cat-link:hover .cat-count,
.sidebar-cat-item.active > .sidebar-cat-link .cat-count,
.sidebar-subcat-link:hover .cat-count,
.sidebar-subcat-item.active > .sidebar-subcat-link .cat-count {
    background: var(--gold-faint);
    border-color: var(--gold-muted);
    color: var(--gold);
}

/* Sous-catégories */
.sidebar-subcat-list {
    list-style: none;
    padding: 0.2rem 0 0.4rem 1.2rem;
    margin: 0;
    border-top: 1px dashed var(--border);
}

.sidebar-subcat-list .sidebar-subcat-list {
    margin: 0.05rem 0 0.25rem 0.45rem;
    padding: 0.05rem 0 0.2rem 0.75rem;
    border-top: none;
    border-left: 1px dashed var(--border);
}

.sidebar-subcat-list .sidebar-subcat-list .sidebar-subcat-list {
    margin-left: 0.35rem;
    padding-left: 0.65rem;
}

.sidebar-subcat-item { }

.sidebar-subcat-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.3rem;
    text-decoration: none;
    color: var(--text-muted);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.88rem;
    font-style: italic;
    transition: color 0.2s, padding-left 0.2s;
    min-width: 0;
}
.sidebar-subcat-link:hover {
    color: var(--gold);
    padding-left: 0.4rem;
}
.sidebar-subcat-item.active > .sidebar-subcat-link {
    color: var(--gold);
}

.sidebar-subcat-item.current-cat-ancestor > .sidebar-subcat-link {
    font-weight: 600;
}

.sidebar-subcat-link-depth-2,
.sidebar-subcat-link-depth-3,
.sidebar-subcat-link-depth-4 {
    font-size: 0.82rem;
    font-style: normal;
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
}

.sidebar-subcat-link-depth-3,
.sidebar-subcat-link-depth-4 {
    font-size: 0.78rem;
}

.sidebar-subcat-link .cat-name {
    flex: 1;
    line-height: 1.3;
    min-width: 0;
    overflow-wrap: anywhere;
}

.subcat-bullet {
    color: var(--gold-muted);
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.sidebar-subcat-link-depth-2 .subcat-bullet,
.sidebar-subcat-link-depth-3 .subcat-bullet,
.sidebar-subcat-link-depth-4 .subcat-bullet {
    font-size: 0.85rem;
}

/* Ornement bas sidebar */
.sidebar-ornament-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0.4rem;
    justify-content: center;
}
.orn-line-sm {
    flex: 1;
    height: 1px;
    max-width: 40px;
    background: linear-gradient(90deg, transparent, var(--gold-muted));
}
.orn-line-sm:last-child {
    background: linear-gradient(270deg, transparent, var(--gold-muted));
}
.orn-diamond-sm {
    width: 5px;
    height: 5px;
    background: var(--gold-muted);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* WooCommerce price filter widget dans sidebar */
.shop-sidebar .widget_price_filter { padding: 0; }
.shop-sidebar .widget_price_filter .price_slider_wrapper { padding: 0; }
.shop-sidebar .widget_price_filter .ui-slider {
    background: var(--border);
    height: 3px;
    border: none;
    border-radius: 2px;
    margin: 0.8rem 0;
}
.shop-sidebar .widget_price_filter .ui-slider-range {
    background: var(--gold);
    height: 3px;
}
.shop-sidebar .widget_price_filter .ui-slider-handle {
    background: var(--gold);
    border: 2px solid var(--bg-base);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    top: -6px;
    outline: none;
    cursor: grab;
    box-shadow: var(--shadow-gold);
}
.shop-sidebar .widget_price_filter .price_slider_amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.9rem;
    gap: 0.5rem;
}
.shop-sidebar .widget_price_filter .price_slider_amount .price_label {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.shop-sidebar .widget_price_filter .price_slider_amount button {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0.42rem 0.85rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.22s;
}
.shop-sidebar .widget_price_filter .price_slider_amount button:hover {
    background: var(--gold-hover);
}

/* -----------------------------------------------------------
   ZONE PRODUITS
   ----------------------------------------------------------- */
.shop-layout-page .shop-content-area {
    min-width: 0; /* empêche le débordement dans la grille */
    background: rgba(245, 230, 211, 0.72);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1rem 1.3rem;
}

.shop-search-results-summary {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.3rem;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(245, 230, 211, 0.96) 0%, rgba(235, 224, 207, 0.86) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    box-shadow: 0 6px 16px rgba(74, 50, 40, 0.08);
}

.shop-search-results-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity: 0.65;
}

.shop-search-results-summary__content {
    min-width: 0;
}

.shop-search-results-summary__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.42rem;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.shop-search-results-summary__eyebrow::before {
    content: '◆';
    font-size: 0.42rem;
    color: var(--gold-muted);
}

.shop-search-results-summary__title {
    margin: 0;
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    overflow-wrap: anywhere;
}

.shop-search-results-summary__meta {
    margin: 0.42rem 0 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.98rem;
    font-style: italic;
    color: var(--text-muted);
}

.shop-search-results-summary__form {
    display: flex;
    align-items: stretch;
    min-height: 44px;
    border: 1px solid var(--border);
    background: rgba(245, 230, 211, 0.95);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.shop-search-results-summary__form input[type='search'] {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0.72rem 0.85rem;
    color: var(--text-primary);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.95rem;
    outline: none;
}

.shop-search-results-summary__form input[type='search']::placeholder {
    color: var(--text-dim);
}

.shop-search-results-summary__form button {
    flex: 0 0 auto;
    border: 0;
    border-left: 1px solid var(--gold-muted);
    background: var(--gold);
    color: #fff;
    padding: 0 1rem;
    cursor: pointer;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: background 0.22s, transform 0.22s;
}

.shop-search-results-summary__form button:hover {
    background: var(--gold-hover);
}

.lepetrinal-new-products-carousel {
    clear: both;
    margin: 0 0 1.35rem;
    padding: 0.15rem 0 1.35rem;
    border-bottom: 1px solid rgba(164, 117, 77, 0.24);
}

.lepetrinal-new-products-carousel__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.95rem;
}

.lepetrinal-new-products-carousel__heading {
    min-width: 0;
}

.lepetrinal-new-products-carousel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.22rem;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.lepetrinal-new-products-carousel__eyebrow::before {
    content: '◆';
    color: var(--gold-muted);
    font-size: 0.45rem;
}

.lepetrinal-new-products-carousel h2 {
    margin: 0;
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text-primary);
}

.lepetrinal-new-products-carousel__archive-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.5rem 0.82rem;
    border: 1px solid var(--gold-muted);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, color 0.22s;
    white-space: nowrap;
}

.lepetrinal-new-products-carousel__archive-link:hover,
.lepetrinal-new-products-carousel__archive-link:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.lepetrinal-new-products-carousel__shell {
    position: relative;
}

.lepetrinal-new-products-carousel__viewport {
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.12rem 0.1rem 0.45rem;
}

.lepetrinal-new-products-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.lepetrinal-new-products-carousel.is-auto-scrolling .lepetrinal-new-products-carousel__viewport {
    scroll-snap-type: none;
}

.lepetrinal-new-products-carousel__track {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    transform: translate3d(0, 0, 0);
    transition: transform var(--carousel-transition, 980ms) cubic-bezier(0.18, 0.78, 0.18, 1);
    will-change: transform;
}

.lepetrinal-new-products-carousel__track.is-jump {
    transition: none !important;
}

.lepetrinal-new-products-carousel__slide {
    flex: 0 0 clamp(210px, 31%, 285px);
    min-width: 0;
    scroll-snap-align: start;
}

.lepetrinal-new-products-carousel__card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(235, 224, 207, 0.98) 0%, rgba(245, 230, 211, 0.94) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 14px rgba(74, 50, 40, 0.08);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.lepetrinal-new-products-carousel__card:hover,
.lepetrinal-new-products-carousel__card:focus {
    border-color: var(--gold-muted);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.lepetrinal-new-products-carousel__badge {
    position: absolute;
    right: -42px;
    bottom: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 28px;
    padding: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #6b4f3d 0%, var(--gold) 50%, #6b4f3d 100%);
    color: #fff;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(40, 27, 20, 0.45);
    transform: rotate(-38deg);
    transform-origin: center;
    pointer-events: none;
}

.lepetrinal-new-products-carousel__badge::before,
.lepetrinal-new-products-carousel__badge::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(245, 230, 211, 0.48);
}

.lepetrinal-new-products-carousel__badge::before {
    top: 4px;
}

.lepetrinal-new-products-carousel__badge::after {
    bottom: 4px;
}

.lepetrinal-new-products-carousel__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(218, 203, 184, 0.72);
    border-bottom: 1px solid var(--border);
}

.lepetrinal-new-products-carousel__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.25s ease;
}

.lepetrinal-new-products-carousel__card:hover .lepetrinal-new-products-carousel__image img,
.lepetrinal-new-products-carousel__card:focus .lepetrinal-new-products-carousel__image img {
    transform: scale(1.05);
    filter: saturate(1.04);
}

.lepetrinal-new-products-carousel__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.38rem;
    padding: 0.82rem 0.88rem 0.9rem;
}

.lepetrinal-new-products-carousel__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.7em;
    color: var(--text-primary);
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: 0.98rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.lepetrinal-new-products-carousel__price {
    margin-top: auto;
    color: var(--gold);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
}

.lepetrinal-new-products-carousel__control {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    background: rgba(245, 230, 211, 0.96);
    color: var(--gold);
    box-shadow: 0 6px 14px rgba(74, 50, 40, 0.16);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.lepetrinal-new-products-carousel__control:hover,
.lepetrinal-new-products-carousel__control:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.lepetrinal-new-products-carousel__control--prev {
    left: -0.35rem;
}

.lepetrinal-new-products-carousel__control--next {
    right: -0.35rem;
}

.lepetrinal-new-products-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.22rem;
    margin: 0.12rem auto 0;
    padding: 0.15rem 0.5rem 0;
}

.lepetrinal-new-products-carousel__dot {
    position: relative;
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.lepetrinal-new-products-carousel__dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(74, 50, 40, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.22s, background 0.22s, box-shadow 0.22s;
}

.lepetrinal-new-products-carousel__dot:hover::before,
.lepetrinal-new-products-carousel__dot:focus::before {
    background: rgba(166, 124, 82, 0.72);
}

.lepetrinal-new-products-carousel__dot:focus {
    outline: 1px solid rgba(166, 124, 82, 0.55);
    outline-offset: -2px;
}

.lepetrinal-new-products-carousel__dot.is-active::before {
    width: 10px;
    background: var(--gold);
    box-shadow: 0 0 0 2px rgba(166, 124, 82, 0.14);
}

.lepetrinal-new-products-carousel.is-static .lepetrinal-new-products-carousel__viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
}

/* Enhanced new-products carousel */
.lepetrinal-new-products-carousel {
    position: relative;
    margin: 0.1rem 0 1.5rem;
    padding: 0 0 1.45rem;
    border-bottom-color: rgba(74, 50, 40, 0.18);
}

.lepetrinal-new-products-carousel::before {
    content: '';
    display: block;
    width: min(220px, 48%);
    height: 1px;
    margin: 0 auto 1.05rem;
    background: linear-gradient(90deg, transparent, rgba(166, 124, 82, 0.6), transparent);
}

.lepetrinal-new-products-carousel__header {
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.18rem;
}

.lepetrinal-new-products-carousel__eyebrow {
    gap: 0.5rem;
    margin-bottom: 0.34rem;
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
}

.lepetrinal-new-products-carousel__eyebrow::before,
.lepetrinal-new-products-carousel__eyebrow::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: rgba(166, 124, 82, 0.48);
}

.lepetrinal-new-products-carousel__title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.lepetrinal-new-products-carousel h2 {
    color: var(--brown-dark);
    font-size: clamp(1.42rem, 2.5vw, 2rem);
    letter-spacing: 0.02em;
}

.lepetrinal-new-products-carousel__count {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0.28rem 0.58rem;
    border: 1px solid rgba(166, 124, 82, 0.3);
    border-radius: 999px;
    background: rgba(245, 230, 211, 0.58);
    color: var(--text-muted);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;
}

.lepetrinal-new-products-carousel__archive-link {
    gap: 0.46rem;
    min-height: 40px;
    padding: 0.52rem 0.9rem;
    background: rgba(245, 230, 211, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.lepetrinal-new-products-carousel__archive-link::after {
    content: '›';
    font-family: Georgia, serif;
    font-size: 1rem;
    line-height: 0.8;
    transition: transform 0.22s;
}

.lepetrinal-new-products-carousel__archive-link:hover::after,
.lepetrinal-new-products-carousel__archive-link:focus::after {
    transform: translateX(2px);
}

.lepetrinal-new-products-carousel__shell {
    margin-inline: -0.15rem;
}

.lepetrinal-new-products-carousel__viewport {
    position: relative;
    isolation: isolate;
    perspective: 1200px;
    perspective-origin: 50% 48%;
    padding: 0.95rem 0.18rem 1.15rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
}

.lepetrinal-new-products-carousel__viewport::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(245, 230, 211, 0.28), transparent 46%),
        linear-gradient(90deg, transparent 0%, rgba(245, 230, 211, 0.52) 44%, rgba(166, 124, 82, 0.22) 50%, rgba(245, 230, 211, 0.52) 56%, transparent 100%);
    transform: translateX(-118%) skewX(-8deg);
}

.lepetrinal-new-products-carousel.is-transitioning .lepetrinal-new-products-carousel__viewport::after {
    animation: lepetrinal-carousel-sheen var(--carousel-transition, 1580ms) cubic-bezier(0.22, 0.86, 0.23, 1) both;
}

.lepetrinal-new-products-carousel.is-static .lepetrinal-new-products-carousel__viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
}

.lepetrinal-new-products-carousel.is-static .lepetrinal-new-products-carousel__viewport::after {
    display: none;
}

.lepetrinal-new-products-carousel__track {
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 1.1rem;
    transform-style: preserve-3d;
    transition: transform var(--carousel-transition, 1580ms) cubic-bezier(0.22, 0.86, 0.23, 1);
    will-change: transform;
}

.lepetrinal-new-products-carousel.is-raf-animating .lepetrinal-new-products-carousel__track,
.lepetrinal-new-products-carousel.is-raf-animating .lepetrinal-new-products-carousel__slide,
.lepetrinal-new-products-carousel.is-raf-animating .lepetrinal-new-products-carousel__image img,
.lepetrinal-new-products-carousel.is-motion-jump .lepetrinal-new-products-carousel__track,
.lepetrinal-new-products-carousel.is-motion-jump .lepetrinal-new-products-carousel__slide,
.lepetrinal-new-products-carousel.is-motion-jump .lepetrinal-new-products-carousel__image img {
    transition: none !important;
}

.lepetrinal-new-products-carousel__slide {
    flex-basis: clamp(230px, 30%, 302px);
    position: relative;
    opacity: var(--carousel-slide-opacity, 0.7);
    transform:
        translateX(var(--carousel-slide-x, 0))
        translateY(var(--carousel-slide-y, 9px))
        rotateY(var(--carousel-slide-rotate, 0deg))
        scale(var(--carousel-slide-scale, 0.955));
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    contain: paint;
    transition:
        opacity 980ms cubic-bezier(0.22, 0.86, 0.23, 1),
        transform var(--carousel-transition, 1580ms) cubic-bezier(0.22, 0.86, 0.23, 1);
    will-change: transform, opacity;
}

.lepetrinal-new-products-carousel__slide.is-active {
    opacity: var(--carousel-slide-opacity, 1);
    transform:
        translateX(var(--carousel-slide-x, 0))
        translateY(var(--carousel-slide-y, -8px))
        rotateY(var(--carousel-slide-rotate, 0deg))
        scale(var(--carousel-slide-scale, 1.045));
}

.lepetrinal-new-products-carousel__slide.is-entering {
    opacity: var(--carousel-slide-opacity, 1);
}

.lepetrinal-new-products-carousel__slide.is-leaving {
    opacity: var(--carousel-slide-opacity, 0.68);
}

.lepetrinal-new-products-carousel.is-moving-next .lepetrinal-new-products-carousel__slide.is-entering .lepetrinal-new-products-carousel__card {
    animation: none;
}

.lepetrinal-new-products-carousel.is-moving-prev .lepetrinal-new-products-carousel__slide.is-entering .lepetrinal-new-products-carousel__card {
    animation: none;
}

.lepetrinal-new-products-carousel.is-moving-next .lepetrinal-new-products-carousel__slide.is-leaving .lepetrinal-new-products-carousel__card {
    animation: none;
}

.lepetrinal-new-products-carousel.is-moving-prev .lepetrinal-new-products-carousel__slide.is-leaving .lepetrinal-new-products-carousel__card {
    animation: none;
}

.lepetrinal-new-products-carousel__card {
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(245, 230, 211, 0.78) 0%, rgba(235, 224, 207, 0.98) 100%);
    border-color: rgba(74, 50, 40, 0.18);
    box-shadow:
        0 8px 18px rgba(74, 50, 40, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    transition:
        border-color 0.34s ease,
        box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.72s cubic-bezier(0.22, 0.86, 0.23, 1);
}

.lepetrinal-new-products-carousel__card::before {
    content: '';
    position: absolute;
    inset: -42% -64%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.36) 47%, rgba(245, 230, 211, 0.58) 50%, rgba(255, 255, 255, 0.22) 54%, transparent 66%);
    transform: translateX(-58%) rotate(8deg);
}

.lepetrinal-new-products-carousel__card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    box-shadow: inset 0 0 0 1px rgba(166, 124, 82, 0.22);
    transition: opacity 0.25s;
}

.lepetrinal-new-products-carousel__card:hover,
.lepetrinal-new-products-carousel__card:focus,
.lepetrinal-new-products-carousel__slide.is-active .lepetrinal-new-products-carousel__card {
    border-color: rgba(166, 124, 82, 0.46);
    box-shadow:
        0 18px 34px rgba(74, 50, 40, 0.18),
        0 4px 22px rgba(166, 124, 82, 0.22);
    transform: translateY(-4px) scale(1.012);
}

.lepetrinal-new-products-carousel__slide.is-active .lepetrinal-new-products-carousel__card {
    transform: translate3d(0, 0, 0);
}

.lepetrinal-new-products-carousel__slide.is-active .lepetrinal-new-products-carousel__card:hover,
.lepetrinal-new-products-carousel__slide.is-active .lepetrinal-new-products-carousel__card:focus {
    transform: translateY(-4px) scale(1.012);
}

.lepetrinal-new-products-carousel.is-transitioning .lepetrinal-new-products-carousel__slide.is-entering .lepetrinal-new-products-carousel__card::before {
    animation: none;
}

.lepetrinal-new-products-carousel__card:hover::after,
.lepetrinal-new-products-carousel__card:focus::after,
.lepetrinal-new-products-carousel__slide.is-active .lepetrinal-new-products-carousel__card::after {
    opacity: 1;
}

.lepetrinal-new-products-carousel__badge {
    top: auto;
    right: -42px;
    bottom: 16px;
    left: auto;
    min-height: 0;
    border: 1px solid rgba(245, 230, 211, 0.28);
    background: linear-gradient(90deg, #5b3d2f 0%, #a67c52 48%, #bf9269 52%, #5b3d2f 100%);
    box-shadow: 0 6px 12px rgba(20, 14, 10, 0.18);
    backdrop-filter: blur(3px);
}

.lepetrinal-new-products-carousel__image {
    aspect-ratio: 6 / 5;
    position: relative;
}

.lepetrinal-new-products-carousel__image::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(40, 27, 20, 0.18));
    pointer-events: none;
}

.lepetrinal-new-products-carousel__image img {
    position: relative;
    z-index: 0;
    transform:
        translateX(var(--carousel-image-x, 0))
        scale(var(--carousel-image-scale, 1.02));
    transition:
        transform var(--carousel-transition, 1580ms) cubic-bezier(0.22, 0.86, 0.23, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.lepetrinal-new-products-carousel__slide.is-active .lepetrinal-new-products-carousel__image img {
    transform:
        translateX(var(--carousel-image-x, 0))
        scale(var(--carousel-image-scale, 1.095));
}

.lepetrinal-new-products-carousel__content {
    gap: 0.34rem;
    min-height: 122px;
    padding: 0.92rem 0.95rem 1rem;
}

.lepetrinal-new-products-carousel__title {
    min-height: 2.55em;
    font-size: 1rem;
    line-height: 1.28;
}

.lepetrinal-new-products-carousel__date {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: var(--text-dim);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.2;
}

.lepetrinal-new-products-carousel__date::before {
    content: '';
    width: 13px;
    height: 1px;
    background: rgba(166, 124, 82, 0.45);
}

.lepetrinal-new-products-carousel__price {
    padding-top: 0.15rem;
    color: var(--brown-dark);
    font-size: 1.08rem;
}

.lepetrinal-new-products-carousel__price--contact {
    display: flex;
    width: 100%;
    padding-top: 0.42rem;
}

.lepetrinal-new-products-carousel__price--contact .lepetrinal-contact-price-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    margin: 0;
    padding: 0.62rem 0.92rem;
    overflow: hidden;
    border: 1px solid rgba(245, 230, 211, 0.34);
    border-radius: 2px;
    background:
        linear-gradient(135deg, #7a553a 0%, #b5875d 48%, #c9a074 52%, #8a6142 100%);
    color: #fff;
    box-shadow:
        0 8px 16px rgba(74, 50, 40, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.lepetrinal-new-products-carousel__price--contact .lepetrinal-contact-price-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 100%);
    opacity: 0;
    transform: translateX(-48%);
    transition: opacity 0.25s ease, transform 0.42s ease;
}

.lepetrinal-new-products-carousel__card--contact-price:hover .lepetrinal-contact-price-button,
.lepetrinal-new-products-carousel__card--contact-price:focus .lepetrinal-contact-price-button {
    background:
        linear-gradient(135deg, #68452f 0%, #a87950 48%, #d1a87b 52%, #765039 100%);
    box-shadow:
        0 10px 22px rgba(74, 50, 40, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
}

.lepetrinal-new-products-carousel__card--contact-price:hover .lepetrinal-contact-price-button::before,
.lepetrinal-new-products-carousel__card--contact-price:focus .lepetrinal-contact-price-button::before {
    opacity: 1;
    transform: translateX(48%);
}

.lepetrinal-new-products-carousel__control {
    width: 40px;
    height: 40px;
    border-color: rgba(166, 124, 82, 0.42);
    background: rgba(245, 230, 211, 0.9);
    box-shadow:
        0 8px 18px rgba(74, 50, 40, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(4px);
}

.lepetrinal-new-products-carousel__control--prev {
    left: 0.05rem;
}

.lepetrinal-new-products-carousel__control--next {
    right: 0.05rem;
}

.lepetrinal-new-products-carousel__dots {
    margin-top: 0.25rem;
}

.lepetrinal-new-products-carousel__dot {
    overflow: visible;
}

.lepetrinal-new-products-carousel__dot::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 0;
    height: 1px;
    border-radius: 999px;
    background: rgba(166, 124, 82, 0.62);
    transform: translateX(-50%);
}

.lepetrinal-new-products-carousel.is-auto-scrolling .lepetrinal-new-products-carousel__dot.is-active::before {
    animation: lepetrinal-carousel-dot-pulse 0.76s ease;
}

.lepetrinal-new-products-carousel.is-auto-scrolling .lepetrinal-new-products-carousel__dot.is-active::after {
    animation: lepetrinal-carousel-dot-progress var(--carousel-delay, 3600ms) linear forwards;
}

@keyframes lepetrinal-carousel-sheen {
    0% {
        opacity: 0;
        transform: translateX(-118%) skewX(-8deg);
    }
    20% {
        opacity: 0.62;
    }
    64% {
        opacity: 0.34;
    }
    100% {
        opacity: 0;
        transform: translateX(118%) skewX(-8deg);
    }
}

@keyframes lepetrinal-carousel-card-flare {
    0% {
        opacity: 0;
        transform: translateX(-58%) rotate(8deg);
    }
    28% {
        opacity: 0.86;
    }
    100% {
        opacity: 0;
        transform: translateX(58%) rotate(8deg);
    }
}

@keyframes lepetrinal-carousel-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(166, 124, 82, 0.25);
    }
    60% {
        box-shadow: 0 0 0 5px rgba(166, 124, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(166, 124, 82, 0.14);
    }
}

@keyframes lepetrinal-carousel-dot-progress {
    0% {
        width: 0;
        opacity: 0.55;
    }
    100% {
        width: 14px;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lepetrinal-new-products-carousel__slide,
    .lepetrinal-new-products-carousel__track,
    .lepetrinal-new-products-carousel__card,
    .lepetrinal-new-products-carousel__card::before,
    .lepetrinal-new-products-carousel__image img,
    .lepetrinal-new-products-carousel__viewport::after,
    .lepetrinal-new-products-carousel__dot::before,
    .lepetrinal-new-products-carousel__dot::after {
        animation: none !important;
        transition: none !important;
    }
}

.shop-layout-page .shop-content-area .woocommerce-info {
    position: relative;
    margin: 1rem 0 0;
    padding: 1.2rem 1.25rem 1.2rem 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.96) 0%, rgba(235, 224, 207, 0.9) 100%);
    border: 1px solid var(--border-strong);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    box-shadow: 0 6px 16px rgba(74, 50, 40, 0.08);
}

.shop-layout-page .shop-content-area .woocommerce-info::before {
    content: '⌕';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.15rem;
    line-height: 1;
}

.shop-layout-page .shop-content-area .woocommerce-info .button {
    float: none;
    margin-left: 0.7rem;
    padding: 0.42rem 0.8rem;
    border: 1px solid var(--gold-muted);
    background: transparent;
    color: var(--gold);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Toolbar results + sorting inside the content card */
.shop-layout-page .shop-content-area .woocommerce-result-count {
    float: left;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0 0 1.15rem;
    padding: 0.58rem 0.9rem;
    background: rgba(235, 224, 207, 0.92);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    box-shadow: 0 3px 9px rgba(74, 50, 40, 0.06);
}

.shop-layout-page .shop-content-area .woocommerce-ordering {
    float: right;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.15rem;
    padding-left: 0.85rem;
    background: rgba(235, 224, 207, 0.92);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    box-shadow: 0 3px 9px rgba(74, 50, 40, 0.06);
}

.shop-layout-page .shop-content-area .woocommerce-ordering::before {
    content: 'Trier';
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.shop-layout-page .shop-content-area .woocommerce-ordering select {
    min-height: 42px;
    min-width: 220px;
    border: 0;
    border-left: 1px solid var(--border);
    border-radius: 0;
    background-color: rgba(245, 230, 211, 0.96);
    box-shadow: none;
    color: var(--text-primary);
    font-style: normal;
}

.shop-layout-page .shop-content-area ul.products {
    clear: both;
}

/* Defensive product-grid selectors:
   applies even if Woo wrapper classes are missing in markup */
.shop-layout-page .shop-content-area ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.shop-layout-page .shop-content-area ul.products::before,
.shop-layout-page .shop-content-area ul.products::after {
    content: none !important;
    display: none !important;
}

.shop-layout-page .shop-content-area ul.products li.product,
.shop-layout-page .shop-content-area ul.products li.product-category {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: linear-gradient(180deg, rgba(235, 224, 207, 0.97) 0%, rgba(245, 230, 211, 0.93) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}

.shop-layout-page .shop-content-area ul.products li.product:hover,
.shop-layout-page .shop-content-area ul.products li.product-category:hover {
    border-color: var(--gold-muted);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.shop-layout-page .shop-content-area ul.products li.product > a,
.shop-layout-page .shop-content-area ul.products li.product-category > a {
    display: block;
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.shop-layout-page .shop-content-area ul.products li.product a img,
.shop-layout-page .shop-content-area ul.products li.product-category a img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border);
    cursor: zoom-in;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link:hover img,
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link:hover img {
    transform: scale(1.08);
    filter: saturate(1.04);
}

.shop-layout-page .shop-content-area ul.products li.product-category a img {
    height: 340px;
}

.shop-layout-page .shop-content-area ul.products li.product .lepetrinal-request-count-badge,
.woocommerce ul.products li.product .lepetrinal-request-count-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(20, 20, 18, 0.84);
    color: #fff;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(4px);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.shop-layout-page .shop-content-area ul.products li.product .lepetrinal-request-count-badge i,
.woocommerce ul.products li.product .lepetrinal-request-count-badge i {
    color: var(--gold);
    font-size: 0.72rem;
}

.shop-layout-page .shop-content-area ul.products li.product .lepetrinal-request-count-badge.is-zero,
.woocommerce ul.products li.product .lepetrinal-request-count-badge.is-zero {
    background: rgba(74, 50, 40, 0.68);
    color: rgba(255, 255, 255, 0.92);
}

.shop-layout-page .shop-content-area ul.products li.product .lepetrinal-request-count-number,
.woocommerce ul.products li.product .lepetrinal-request-count-number {
    min-width: 1ch;
    text-align: center;
}

/* Remove magnifier/quick-view overlays injected by plugins or pseudo-elements */
.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link::before,
.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link::after,
.shop-layout-page .shop-content-area ul.products li.product .woocommerce-product-gallery__trigger,
.shop-layout-page .shop-content-area ul.products li.product .quick-view,
.shop-layout-page .shop-content-area ul.products li.product .button.yith-wcqv-button,
.shop-layout-page .shop-content-area ul.products li.product .yith-wcqv-button,
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link::before,
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link::after,
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-product-gallery__trigger,
.shop-layout-page .shop-content-area ul.products li.product-category .quick-view,
.shop-layout-page .shop-content-area ul.products li.product-category .button.yith-wcqv-button,
.shop-layout-page .shop-content-area ul.products li.product-category .yith-wcqv-button {
    display: none !important;
    content: none !important;
}

.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link > i,
.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link > svg,
.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link > [class*='zoom'],
.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link > [class*='magnifier'],
.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__link > [class*='search'],
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link > i,
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link > svg,
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link > [class*='zoom'],
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link > [class*='magnifier'],
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-product__link > [class*='search'] {
    display: none !important;
}

.shop-layout-page .shop-content-area ul.products li.product .woocommerce-loop-product__title,
.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-category__title {
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: 1.02rem;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0;
    padding: 1rem 1rem 0.25rem;
    flex: 1;
}

.shop-layout-page .shop-content-area ul.products li.product-category .woocommerce-loop-category__title mark {
    background: transparent;
    color: var(--text-dim);
    font-size: 0.82rem;
    margin-left: 0.25rem;
}

.shop-layout-page .shop-content-area ul.products li.product .price {
    display: block;
    margin: 0;
    padding: 0.3rem 1rem 0.9rem;
    color: var(--gold);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.18rem;
    font-weight: 600;
}

.shop-layout-page .shop-content-area ul.products li.product .button,
.shop-layout-page .shop-content-area ul.products li.product .added_to_cart {
    display: block;
    margin: 0 1rem 1rem;
    width: calc(100% - 2rem);
    padding: 0.62rem 0.95rem;
    border: 1px solid var(--gold-muted);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--gold);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s;
}

.shop-layout-page .shop-content-area ul.products li.product .button:hover,
.shop-layout-page .shop-content-area ul.products li.product .added_to_cart:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* Fullscreen product image lightbox (catalog) */
.lepetrinal-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(8, 9, 8, 0.88);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lepetrinal-image-lightbox.is-open {
    display: flex;
}

.lepetrinal-image-lightbox__inner {
    position: relative;
    width: min(92vw, 1200px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lepetrinal-image-lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border: 1px solid var(--gold-muted);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    background: #111;
}

.lepetrinal-image-lightbox__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    background: rgba(18, 21, 18, 0.95);
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lepetrinal-image-lightbox__close:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

body.lepetrinal-lightbox-open {
    overflow: hidden;
}

/* Barre tri + résultats */
.woocommerce .woocommerce-products-header,
.woocommerce-page .woocommerce-products-header { display: none; } /* le titre est géré par le template */

.woocommerce .woocommerce-result-count {
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 0;
}

.woocommerce .woocommerce-ordering select {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.88rem;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    padding: 0.48rem 2rem 0.48rem 0.85rem;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a67c52'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    transition: border-color 0.22s;
}
.woocommerce .woocommerce-ordering select:focus { border-color: var(--gold); }

/* Toolbar (résultats + tri) */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    float: none;
}

/* Grille produits redessinée */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.6rem;
    list-style: none;
    padding: 0;
    margin-top: 1.4rem;
}

/* Carte produit */
.woocommerce ul.products li.product,
.woocommerce ul.products li.product-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
    display: flex;
    flex-direction: column;
}

/* Coin doré décoratif */
.woocommerce ul.products li.product::after,
.woocommerce ul.products li.product-category::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 22px 22px 0;
    border-color: transparent var(--gold-muted) transparent transparent;
    opacity: 0;
    transition: opacity 0.28s;
}

.woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product-category:hover {
    border-color: var(--gold-muted);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}
.woocommerce ul.products li.product:hover::after,
.woocommerce ul.products li.product-category:hover::after { opacity: 1; }

/* Image produit */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product-category a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce ul.products li.product:hover a img,
.woocommerce ul.products li.product-category:hover a img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product-category a img {
    height: 300px;
}

/* Infos produit */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title {
    font-family: 'IM Fell English SC', 'Cinzel', Georgia, serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 1rem 1.1rem 0.3rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    flex: 1;
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title a,
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.22s;
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title a:hover,
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title a:hover {
    color: var(--gold);
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title mark {
    background: transparent;
    color: var(--text-dim);
    font-size: 0.78rem;
    margin-left: 0.25rem;
}

/* Prix */
.woocommerce ul.products li.product .price {
    display: block;
    padding: 0.2rem 1.1rem 0.8rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
}
.woocommerce ul.products li.product .price del {
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 400;
    margin-right: 0.35rem;
}
.woocommerce ul.products li.product .price ins { text-decoration: none; }

/* Bouton ajouter au panier */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button {
    display: block;
    margin: 0 1.1rem 1.1rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-align: center;
    text-decoration: none;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.25s;
    width: calc(100% - 2.2rem);
}
.woocommerce ul.products li.product .button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

/* Badge promotion */
.woocommerce ul.products li.product span.onsale {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--gold);
    color: #fff;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 1px;
    z-index: 2;
}

/* -----------------------------------------------------------
   TOOLBAR (barre au-dessus des produits)
   ----------------------------------------------------------- */
.woocommerce .woocommerce-products-header { display: none; }

.woocommerce .toolbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 2px;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Breadcrumb */
.woocommerce .woocommerce-breadcrumb {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.woocommerce .woocommerce-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--gold); }

/* -----------------------------------------------------------
   PAGINATION
   ----------------------------------------------------------- */
.woocommerce nav.woocommerce-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1px;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.22s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--gold-muted);
    color: var(--gold);
    background: var(--gold-faint);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* -----------------------------------------------------------
   BOUTON MOBILE (ouvre sidebar)
   ----------------------------------------------------------- */
.sidebar-toggle-btn {
    display: none;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    transition: all 0.22s;
}
.sidebar-toggle-btn:hover {
    border-color: var(--gold-muted);
    color: var(--gold);
}

.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 1rem; right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem;
    z-index: 10002;
}

/* -----------------------------------------------------------
   OVERLAY MOBILE
   ----------------------------------------------------------- */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2147483640;
    pointer-events: auto;
}
.sidebar-overlay.active { display: block; }

/* -----------------------------------------------------------
   RESPONSIVE — MOBILE
   ----------------------------------------------------------- */
@media (max-width: 900px) {
    .shop-layout-wrapper {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: auto;
        padding: 0.8rem;
    }

    .shop-layout-page .shop-content-area {
        min-height: 0;
    }

    .shop-search-results-summary {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 1rem;
    }

    .shop-search-results-summary__form {
        width: 100%;
    }

    .shop-search-results-summary__form button {
        padding: 0 0.8rem;
    }

    .lepetrinal-new-products-carousel__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }

    .lepetrinal-new-products-carousel__title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .lepetrinal-new-products-carousel__archive-link {
        width: 100%;
    }

    .lepetrinal-new-products-carousel__viewport {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .lepetrinal-new-products-carousel__slide {
        flex-basis: min(74vw, 265px);
    }

    .lepetrinal-new-products-carousel__control {
        width: 34px;
        height: 34px;
    }

    .lepetrinal-new-products-carousel__control--prev {
        left: 0.15rem;
    }

    .lepetrinal-new-products-carousel__control--next {
        right: 0.15rem;
    }

    .shop-layout-page .shop-content-area .woocommerce-result-count,
    .shop-layout-page .shop-content-area .woocommerce-ordering {
        float: none;
        width: 100%;
    }

    .shop-layout-page .shop-content-area .woocommerce-ordering {
        justify-content: space-between;
        padding-left: 0.75rem;
    }

    .shop-layout-page .shop-content-area .woocommerce-ordering select {
        width: 100%;
        min-width: 0;
        flex: 1;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(86vw, 340px);
        height: 100vh;
        max-height: 100vh;
        z-index: 10000;
        background: var(--bg-base);
        border-right: 1px solid var(--border-strong);
        padding: 3.4rem 1rem 1rem;
        transform: translateX(-105%);
        transition: transform 0.28s ease;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.28);
    }

    body > .shop-sidebar.is-mobile-drawer {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: min(86vw, 340px) !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        z-index: 2147483641 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(-105%) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    .shop-sidebar.is-open {
        transform: translateX(0);
        overflow-y: auto;
    }

    body > .shop-sidebar.is-mobile-drawer.is-open {
        transform: translateX(0) !important;
    }

    body.lepetrinal-sidebar-open {
        overflow: hidden;
    }

    .shop-sidebar .sidebar-block {
        flex-shrink: 0;
    }

    .shop-sidebar .sidebar-categories-block {
        flex: 0 0 auto;
        min-height: 0;
        max-height: 56vh;
    }

    .sidebar-close-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-toggle-btn { display: inline-flex; }
}


@media (max-width: 600px) {
    .shop-page-header.has-background-image {
        min-height: 370px;
        padding: 4rem 1rem 3.4rem;
    }
    .shop-layout-page .shop-content-area ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    .lepetrinal-new-products-carousel {
        margin-bottom: 1.05rem;
        padding-bottom: 1.05rem;
    }
    .lepetrinal-new-products-carousel::before {
        width: 58%;
        margin-bottom: 0.85rem;
    }
    .lepetrinal-new-products-carousel h2 {
        font-size: 1.34rem;
    }
    .lepetrinal-new-products-carousel__count {
        min-height: 24px;
        font-size: 0.54rem;
    }
    .lepetrinal-new-products-carousel__slide {
        flex-basis: min(82vw, 252px);
    }
    .lepetrinal-new-products-carousel__content {
        min-height: 116px;
        padding: 0.82rem 0.82rem 0.9rem;
    }
    .lepetrinal-new-products-carousel__title {
        font-size: 0.92rem;
    }
    .lepetrinal-new-products-carousel__date {
        font-size: 0.8rem;
    }
    .lepetrinal-new-products-carousel__control {
        top: 46%;
    }
    .shop-layout-page .shop-content-area ul.products li.product a img,
    .shop-layout-page .shop-content-area ul.products li.product-category a img,
    .woocommerce ul.products li.product a img,
    .woocommerce ul.products li.product-category a img {
        height: 160px;
    }
    .shop-layout-page .shop-content-area ul.products li.product-category a img,
    .woocommerce ul.products li.product-category a img {
        height: 220px;
    }
    .shop-page-title { font-size: 1.5rem; }
}
