/* ═══════════════════════════════════════════
   HAMZA SHOP : feuille de style principale v1.0.0
   Luxury Minimal Arabic E-Commerce Theme
   ═══════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    --hs-primary: #1E4DB7;
    --hs-primary-dark: #0A2463;
    --hs-secondary: #E8F0FE;
    --hs-dark: #0A2463;
    --hs-accent: #D0E1FD;
    --hs-text: #1B2A4A;
    --hs-border: #B8CFEE;
    --hs-white: #FFFFFF;
    --hs-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --hs-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --hs-radius: 4px;
    --hs-transition: 0.3s ease;
    --hs-font: 'Cairo', sans-serif;
    --hs-container: 1200px;
}

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

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

body {
    font-family: var(--hs-font);
    font-weight: 400;
    color: var(--hs-text);
    background-color: var(--hs-white);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--hs-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ─── Container ─── */
.hs-container {
    max-width: var(--hs-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Buttons ─── */
.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--hs-font);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: var(--hs-radius);
    transition: all var(--hs-transition);
    white-space: nowrap;
    text-transform: uppercase;
}

.hs-btn--primary {
    background: var(--hs-primary);
    color: var(--hs-white);
    border: 2px solid var(--hs-primary);
}

.hs-btn--primary:hover {
    background: var(--hs-primary-dark);
    border-color: var(--hs-primary-dark);
}

.hs-btn--secondary {
    background: transparent;
    color: var(--hs-primary);
    border: 2px solid var(--hs-primary);
}

.hs-btn--secondary:hover {
    background: var(--hs-primary);
    color: var(--hs-white);
}

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

/* ─── Announcement Bar ─── */
.hs-announcement {
    background: var(--hs-dark);
    color: var(--hs-white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hs-announcement p {
    margin: 0;
}

/* ─── Header ─── */
.hs-header {
    background: var(--hs-white);
    border-bottom: 1px solid var(--hs-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--hs-transition);
}

.hs-header--scrolled {
    box-shadow: var(--hs-shadow);
}

.hs-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

/* Logo */
.hs-header__logo {
    flex-shrink: 0;
}

.hs-header__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-primary);
    letter-spacing: -0.01em;
}

.hs-header__logo img,
.hs-header__logo .custom-logo {
    height: 40px;
    width: auto;
}

/* Navigation */
.hs-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hs-nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hs-nav__list li a,
.hs-nav__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--hs-text);
    padding: 8px 0;
    position: relative;
    transition: color var(--hs-transition);
}

.hs-nav__list li a::after,
.hs-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--hs-primary);
    transition: width var(--hs-transition);
}

.hs-nav__list li a:hover,
.hs-nav__link:hover {
    color: var(--hs-primary);
}

.hs-nav__list li a:hover::after,
.hs-nav__link:hover::after {
    width: 100%;
}

.hs-nav__list li.current-menu-item a,
.hs-nav__list li.current_page_item a {
    color: var(--hs-primary);
}

.hs-nav__list li.current-menu-item a::after,
.hs-nav__list li.current_page_item a::after {
    width: 100%;
}

/* Header Actions */
.hs-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.hs-header__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--hs-text);
    transition: color var(--hs-transition);
}

.hs-header__action-btn:hover {
    color: var(--hs-primary);
}

/* Cart Badge */
.hs-header__cart {
    position: relative;
}

.hs-cart-count {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--hs-primary);
    color: var(--hs-white);
    font-size: 0.6875rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Burger Menu */
.hs-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.hs-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--hs-text);
    transition: all var(--hs-transition);
    transform-origin: center;
}

.hs-header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hs-header__burger.active span:nth-child(2) {
    opacity: 0;
}

.hs-header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Search Panel */
.hs-search {
    background: var(--hs-secondary);
    border-bottom: 1px solid var(--hs-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--hs-transition), padding var(--hs-transition);
}

.hs-search.active {
    max-height: 100px;
    padding: 20px 0;
}

.hs-search__form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.hs-search__input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    background: var(--hs-white);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--hs-transition);
}

.hs-search__input:focus {
    border-color: var(--hs-primary);
}

.hs-search__submit {
    padding: 12px 28px;
}

/* ─── Hero Section ─── */
.hs-hero {
    background-color: var(--hs-dark);
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10,36,99,0.55) 0%, rgba(10,36,99,0.8) 70%, rgba(10,36,99,0.92) 100%);
}

.hs-hero__content {
    text-align: center;
    margin: 0 auto;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hs-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--hs-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hs-hero__title span {
    color: #5B9BFF;
}

.hs-hero__subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hs-hero__actions {
    justify-content: center;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hs-hero__actions .hs-btn--primary {
    background: #FFFFFF;
    color: var(--hs-dark);
    border-color: #FFFFFF;
    font-weight: 700;
}

.hs-hero__actions .hs-btn--primary:hover {
    background: #5B9BFF;
    color: #FFFFFF;
    border-color: #5B9BFF;
}

.hs-hero__actions .hs-btn--secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.5);
}

.hs-hero__actions .hs-btn--secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

/* ─── Section Headers ─── */
.hs-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.hs-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.hs-section-header .hs-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--hs-primary);
    margin: 12px auto 0;
}

.hs-section-subtitle {
    font-size: 1rem;
    color: var(--hs-text);
    opacity: 0.7;
    font-weight: 300;
}

/* ─── Categories Section ─── */
.hs-categories {
    padding: 80px 0;
}

.hs-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.hs-categories__card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: var(--hs-radius);
    transition: all var(--hs-transition);
    min-height: 280px;
}

.hs-categories__card:hover {
    box-shadow: var(--hs-shadow);
    transform: translateY(-4px);
}

.hs-categories__card:hover .hs-categories__image {
    transform: scale(1.08);
}

.hs-categories__icon {
    color: var(--hs-primary);
    margin-bottom: 20px;
}

.hs-categories__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.hs-categories__card-overlay {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 24px;
    background: linear-gradient(to top, rgba(10,36,99,0.9) 0%, rgba(10,36,99,0.4) 60%, transparent 100%);
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hs-categories__card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hs-white);
    margin-bottom: 4px;
}

.hs-categories__count {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

/* ─── Featured / New Arrivals ─── */
.hs-featured,
.hs-new-arrivals {
    padding: 80px 0;
}

.hs-featured {
    background: var(--hs-secondary);
}

.hs-featured__cta {
    text-align: center;
    margin-top: 40px;
}

/* ─── Product Card ─── */
.hs-product-card {
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
    transition: all var(--hs-transition);
    display: flex;
    flex-direction: column;
}

.hs-product-card:hover {
    box-shadow: var(--hs-shadow);
    border-color: var(--hs-primary);
}

.hs-product-card__link {
    display: block;
    flex: 1;
}

.hs-product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--hs-secondary);
}

.hs-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--hs-transition);
}

.hs-product-card:hover .hs-product-card__image-wrap img {
    transform: scale(1.05);
}

.hs-product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 99, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--hs-transition);
}

.hs-product-card:hover .hs-product-card__overlay {
    opacity: 1;
}

.hs-product-card__overlay span {
    color: var(--hs-white);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Sale Badge */
.hs-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--hs-radius);
    z-index: 2;
}

.hs-badge--sale {
    background: var(--hs-primary);
    color: var(--hs-white);
}

/* Product Info */
.hs-product-card__info {
    padding: 16px;
}

.hs-product-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--hs-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hs-product-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hs-primary);
    margin-bottom: 8px;
}

.hs-product-card__price del {
    color: #999;
    font-weight: 400;
    font-size: 0.875rem;
    margin-left: 8px;
}

.hs-product-card__price ins {
    text-decoration: none;
}

.hs-product-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hs-product-card__rating .star-rating {
    color: var(--hs-primary);
    font-size: 0.8125rem;
}

/* Add to Cart Button */
.hs-product-card__order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: var(--hs-dark);
    color: var(--hs-white);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0;
    transition: background var(--hs-transition);
    cursor: pointer;
    font-family: var(--hs-font);
    text-align: center;
}

.hs-product-card__order:hover {
    background: var(--hs-primary);
    color: var(--hs-white);
}

.hs-product-card__order.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* WooCommerce Product Grid Override */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products li.product {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ─── Promo Banner ─── */
.hs-promo {
    padding: 80px 0;
    background-color: var(--hs-dark);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hs-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 99, 0.82);
}

.hs-promo > .hs-container {
    position: relative;
    z-index: 1;
}

.hs-promo__inner {
    text-align: center;
    padding: 60px 40px;
    position: relative;
}

.hs-promo__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(30, 77, 183, 0.3);
    border-radius: var(--hs-radius);
    pointer-events: none;
}

.hs-promo__tag {
    display: inline-block;
    padding: 6px 20px;
    background: var(--hs-primary);
    color: var(--hs-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border-radius: var(--hs-radius);
}

.hs-promo__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hs-white);
    margin-bottom: 12px;
}

.hs-promo__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 32px;
}

/* ─── About Section ─── */
.hs-about {
    padding: 80px 0;
    background: var(--hs-secondary);
}

.hs-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hs-about__content .hs-section-title {
    text-align: right;
    margin-bottom: 20px;
}

.hs-about__content .hs-section-title::after {
    display: none;
}

.hs-about__content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--hs-text);
    opacity: 0.85;
    margin-bottom: 32px;
}

.hs-about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hs-about__features li {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    border-right: 3px solid var(--hs-primary);
}

.hs-about__features li strong {
    font-size: 1rem;
    color: var(--hs-dark);
    margin-bottom: 4px;
}

.hs-about__features li span {
    font-size: 0.875rem;
    color: var(--hs-text);
    opacity: 0.7;
}

.hs-about__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-about__image img {
    width: 100%;
    height: auto;
    border-radius: var(--hs-radius);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: var(--hs-shadow);
}

.hs-about__image img {
    width: 100%;
    height: auto;
    border-radius: var(--hs-radius);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: var(--hs-shadow);
}

.hs-about__image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--hs-accent);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hs-primary);
}

/* ─── Reassurance Bar ─── */
.hs-reassurance {
    background: var(--hs-white);
    border-top: 1px solid var(--hs-border);
    border-bottom: 1px solid var(--hs-border);
    padding: 40px 0;
}

.hs-reassurance__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hs-reassurance__item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: right;
}

.hs-reassurance__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hs-secondary);
    border-radius: 50%;
    color: var(--hs-primary);
}

.hs-reassurance__item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--hs-dark);
    margin-bottom: 2px;
}

.hs-reassurance__item span {
    font-size: 0.8125rem;
    color: var(--hs-text);
    opacity: 0.65;
}

/* ─── Footer ─── */
.hs-footer {
    background: var(--hs-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.hs-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.hs-footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-primary);
}

.hs-footer__brand {
    margin-bottom: 16px;
}

.hs-footer__desc {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.7;
}

.hs-footer__social {
    display: flex;
    gap: 12px;
}

.hs-footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--hs-transition);
}

.hs-footer__social a:hover {
    border-color: var(--hs-primary);
    color: var(--hs-primary);
}

.hs-footer__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hs-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.hs-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--hs-primary);
}

.hs-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hs-footer__links a {
    font-size: 0.875rem;
    opacity: 0.7;
    transition: all var(--hs-transition);
}

.hs-footer__links a:hover {
    opacity: 1;
    color: var(--hs-primary);
    padding-right: 8px;
}

.hs-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hs-footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    opacity: 0.7;
}

.hs-footer__contact svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.hs-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8125rem;
    opacity: 0.5;
}

/* ─── Main Content ─── */
.hs-main {
    padding: 40px 0 80px;
    min-height: 60vh;
}

/* ─── Breadcrumb ─── */
.hs-breadcrumb {
    padding: 16px 0;
    font-size: 0.8125rem;
    color: var(--hs-text);
    opacity: 0.6;
    border-bottom: 1px solid var(--hs-border);
    margin-bottom: 32px;
}

.hs-breadcrumb a:hover {
    color: var(--hs-primary);
}

.hs-breadcrumb__sep {
    margin: 0 8px;
    opacity: 0.4;
}

/* ─── WooCommerce Shop Page ─── */
.woocommerce-page .woocommerce-products-header {
    margin-bottom: 32px;
}

.woocommerce-page .woocommerce-products-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hs-dark);
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 24px;
}

.woocommerce .woocommerce-ordering select {
    padding: 10px 16px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    font-size: 0.875rem;
    background: var(--hs-white);
    color: var(--hs-text);
    outline: none;
    cursor: pointer;
}

.woocommerce .woocommerce-ordering select:focus {
    border-color: var(--hs-primary);
}

.woocommerce .woocommerce-result-count {
    font-size: 0.875rem;
    color: var(--hs-text);
    opacity: 0.6;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    overflow: visible;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    font-size: 0.875rem;
    color: var(--hs-text);
    background: var(--hs-white);
    transition: all var(--hs-transition);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    border-color: var(--hs-primary);
    color: var(--hs-primary);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--hs-primary);
    border-color: var(--hs-primary);
    color: var(--hs-white);
}

/* ─── Single Product ─── */
.woocommerce div.product {
    margin-bottom: 40px;
}

.woocommerce div.product div.images {
    width: 50%;
    float: right;
}

.woocommerce div.product div.images img {
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-border);
}

.woocommerce div.product div.summary {
    width: 45%;
    float: left;
}

.woocommerce div.product .product_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 12px;
}

.woocommerce div.product p.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-primary);
    margin-bottom: 20px;
}

.woocommerce div.product p.price del {
    color: #999;
    font-weight: 400;
    font-size: 1.125rem;
}

.woocommerce div.product p.price ins {
    text-decoration: none;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--hs-text);
    opacity: 0.85;
    margin-bottom: 24px;
}

/* Quantity */
.woocommerce .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
    margin-left: 12px;
}

.woocommerce .quantity .qty {
    width: 60px;
    height: 48px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    -moz-appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Single Add to Cart */
.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.woocommerce div.product form.cart .button {
    background: var(--hs-primary);
    color: var(--hs-white);
    font-family: var(--hs-font);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 36px;
    border: none;
    border-radius: var(--hs-radius);
    cursor: pointer;
    transition: background var(--hs-transition);
}

.woocommerce div.product form.cart .button:hover {
    background: var(--hs-primary-dark);
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
    clear: both;
    padding-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0 0 24px;
    border-bottom: 1px solid var(--hs-border);
    list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--hs-font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--hs-text);
    padding: 12px 24px;
    display: block;
    transition: color var(--hs-transition);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: var(--hs-primary);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--hs-primary);
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 24px 0;
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* Related Products */
.woocommerce .related.products {
    clear: both;
    padding-top: 40px;
    border-top: 1px solid var(--hs-border);
}

.woocommerce .related.products > h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 24px;
}

/* ─── Cart Page ─── */
.woocommerce-cart table.shop_table {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
    border-collapse: collapse;
    width: 100%;
}

.woocommerce-cart table.shop_table th {
    background: var(--hs-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--hs-dark);
    padding: 16px;
    border-bottom: 1px solid var(--hs-border);
}

.woocommerce-cart table.shop_table td {
    padding: 16px;
    border-bottom: 1px solid var(--hs-border);
    vertical-align: middle;
    font-size: 0.9375rem;
}

.woocommerce-cart table.shop_table img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-border);
}

.woocommerce-cart .cart_totals {
    margin-top: 32px;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 16px;
}

.woocommerce-cart .cart_totals table {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    border-collapse: collapse;
    width: 100%;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    padding: 16px;
    border-bottom: 1px solid var(--hs-border);
    font-size: 0.9375rem;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    background: var(--hs-primary);
    color: var(--hs-white);
    font-family: var(--hs-font);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--hs-radius);
    cursor: pointer;
    transition: background var(--hs-transition);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
    background: var(--hs-primary-dark);
}

/* Remove button */
.woocommerce a.remove {
    color: #cc0000 !important;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all var(--hs-transition);
}

.woocommerce a.remove:hover {
    background: #cc0000;
    color: var(--hs-white) !important;
}

/* ─── Checkout ─── */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout h3#order_review_heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hs-border);
}

.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hs-dark);
    margin-bottom: 6px;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    font-size: 0.9375rem;
    background: var(--hs-white);
    outline: none;
    transition: border-color var(--hs-transition);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: var(--hs-primary);
}

.woocommerce-checkout #place_order {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--hs-primary);
    color: var(--hs-white);
    font-family: var(--hs-font);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--hs-radius);
    cursor: pointer;
    transition: background var(--hs-transition);
}

.woocommerce-checkout #place_order:hover {
    background: var(--hs-primary-dark);
}

/* Order Review Table */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 24px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--hs-border);
    font-size: 0.9375rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
    background: var(--hs-secondary);
    font-weight: 600;
}

/* Payment Methods */
.woocommerce-checkout .wc_payment_methods {
    margin-bottom: 24px;
}

.woocommerce-checkout .wc_payment_method {
    padding: 16px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    margin-bottom: 8px;
}

.woocommerce-checkout .wc_payment_method label {
    font-weight: 600;
    cursor: pointer;
}

/* ─── My Account ─── */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    float: right;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid var(--hs-border);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--hs-text);
    transition: all var(--hs-transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--hs-secondary);
    color: var(--hs-primary);
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 70%;
    float: left;
}

/* Login / Register Forms */
.woocommerce form.login,
.woocommerce form.register {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: 32px;
    background: var(--hs-white);
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
    margin-bottom: 16px;
}

.woocommerce form.login input.input-text,
.woocommerce form.register input.input-text {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--hs-transition);
}

.woocommerce form.login input.input-text:focus,
.woocommerce form.register input.input-text:focus {
    border-color: var(--hs-primary);
}

.woocommerce form.login .button,
.woocommerce form.register .button {
    background: var(--hs-primary);
    color: var(--hs-white);
    font-family: var(--hs-font);
    font-weight: 600;
    padding: 14px 36px;
    border: none;
    border-radius: var(--hs-radius);
    cursor: pointer;
    transition: background var(--hs-transition);
}

.woocommerce form.login .button:hover,
.woocommerce form.register .button:hover {
    background: var(--hs-primary-dark);
}

/* ─── Messages ─── */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    padding: 16px 20px;
    border-radius: var(--hs-radius);
    margin-bottom: 24px;
    font-size: 0.9375rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce .woocommerce-message {
    background: #f0faf0;
    color: #2d7a2d;
    border-right: 4px solid #2d7a2d;
}

.woocommerce .woocommerce-info {
    background: var(--hs-secondary);
    color: var(--hs-text);
    border-right: 4px solid var(--hs-primary);
}

.woocommerce .woocommerce-error {
    background: #faf0f0;
    color: #cc0000;
    border-right: 4px solid #cc0000;
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before {
    display: none;
}

.woocommerce .woocommerce-message .button {
    background: var(--hs-primary);
    color: var(--hs-white);
    font-family: var(--hs-font);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: var(--hs-radius);
    margin-right: auto;
    margin-left: 0;
    transition: background var(--hs-transition);
}

.woocommerce .woocommerce-message .button:hover {
    background: var(--hs-primary-dark);
}

/* ─── Blog ─── */
.hs-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hs-blog-card {
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    overflow: hidden;
    transition: all var(--hs-transition);
}

.hs-blog-card:hover {
    box-shadow: var(--hs-shadow);
    border-color: var(--hs-primary);
}

.hs-blog-card__image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hs-blog-card__content {
    padding: 20px;
}

.hs-blog-card__date {
    font-size: 0.75rem;
    color: var(--hs-primary);
    font-weight: 600;
}

.hs-blog-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--hs-dark);
    margin: 8px 0;
    line-height: 1.5;
}

.hs-blog-card__title a:hover {
    color: var(--hs-primary);
}

.hs-blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--hs-text);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ─── Page / Single Post ─── */
.hs-page,
.hs-single {
    max-width: 800px;
    margin: 0 auto;
}

.hs-page__title,
.hs-single__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

.hs-single__date {
    display: block;
    font-size: 0.8125rem;
    color: var(--hs-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.hs-single__image {
    margin-bottom: 32px;
}

.hs-single__image img {
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-border);
}

.hs-page__content,
.hs-single__content {
    font-size: 1rem;
    line-height: 1.9;
}

.hs-page__content p,
.hs-single__content p {
    margin-bottom: 20px;
}

.hs-page__content h2,
.hs-single__content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin: 32px 0 16px;
}

.hs-page__content h3,
.hs-single__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hs-dark);
    margin: 24px 0 12px;
}

.hs-page__content img,
.hs-single__content img {
    border-radius: var(--hs-radius);
    margin: 24px 0;
}

.hs-single__nav {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    margin-top: 40px;
    border-top: 1px solid var(--hs-border);
    gap: 20px;
}

.hs-single__nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hs-text);
}

.hs-single__nav-link:hover {
    color: var(--hs-primary);
}

/* ─── 404 ─── */
.hs-404 {
    text-align: center;
    padding: 80px 0;
}

.hs-404__code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--hs-primary);
    line-height: 1;
    opacity: 0.3;
}

.hs-404__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin: 16px 0;
}

.hs-404__text {
    font-size: 1rem;
    color: var(--hs-text);
    opacity: 0.7;
    margin-bottom: 32px;
}

/* ─── Pagination ─── */
.hs-pagination {
    margin-top: 40px;
}

.hs-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hs-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    font-size: 0.875rem;
    color: var(--hs-text);
    transition: all var(--hs-transition);
}

.hs-pagination .page-numbers:hover {
    border-color: var(--hs-primary);
    color: var(--hs-primary);
}

.hs-pagination .page-numbers.current {
    background: var(--hs-primary);
    border-color: var(--hs-primary);
    color: var(--hs-white);
}

/* ─── Empty State ─── */
.hs-empty {
    text-align: center;
    padding: 60px 0;
    font-size: 1rem;
    color: var(--hs-text);
    opacity: 0.6;
}

/* ─── Widgets ─── */
.hs-widget {
    margin-bottom: 32px;
}

.hs-widget__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hs-border);
    position: relative;
}

.hs-widget__title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--hs-primary);
}

/* ─── Toast Notification ─── */
.hs-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--hs-dark);
    color: var(--hs-white);
    padding: 16px 24px;
    border-radius: var(--hs-radius);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--hs-shadow-lg);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hs-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.hs-toast__icon {
    color: var(--hs-primary);
}

/* ─── Coupon Form ─── */
.woocommerce .coupon {
    display: flex;
    gap: 8px;
}

.woocommerce .coupon input.input-text {
    padding: 10px 16px;
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    font-size: 0.875rem;
    outline: none;
}

.woocommerce .coupon input.input-text:focus {
    border-color: var(--hs-primary);
}

.woocommerce .coupon .button,
.woocommerce-cart table.shop_table td .button {
    background: var(--hs-dark);
    color: var(--hs-white);
    font-family: var(--hs-font);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: var(--hs-radius);
    cursor: pointer;
    transition: background var(--hs-transition);
}

.woocommerce .coupon .button:hover,
.woocommerce-cart table.shop_table td .button:hover {
    background: var(--hs-primary);
}

/* ─── Star Rating ─── */
.woocommerce .star-rating {
    color: var(--hs-primary);
    font-size: 0.875rem;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    width: 5.4em;
}

/* ─── Select2 Override ─── */
.select2-container--default .select2-selection--single {
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    height: 48px;
    padding: 8px 12px;
}

.select2-container--default .select2-selection--single:focus {
    border-color: var(--hs-primary);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
    .hs-hero__title {
        font-size: 2.5rem;
    }

    .hs-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }

    .hs-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hs-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hs-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Single Product */
    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100%;
        float: none;
    }

    .woocommerce div.product div.images {
        margin-bottom: 24px;
    }

    /* My Account */
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 24px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hs-header__burger {
        display: flex;
    }

    .hs-nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 300px;
        height: 100vh;
        background: var(--hs-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 24px 24px;
        border-left: 1px solid var(--hs-border);
        box-shadow: var(--hs-shadow-lg);
        transition: transform var(--hs-transition);
        z-index: 999;
        overflow-y: auto;
    }

    .hs-nav.active {
        transform: translateX(0);
    }

    .hs-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .hs-nav__list li a,
    .hs-nav__link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--hs-border);
        font-size: 1rem;
    }

    .hs-nav__list li a::after,
    .hs-nav__link::after {
        display: none;
    }

    /* Mobile Overlay */
    .hs-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all var(--hs-transition);
    }

    .hs-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hs-hero {
    background-size: cover;
    background-position: center;
        padding: 60px 0;
    }

    .hs-hero__title {
        font-size: 2rem;
    }

    .hs-hero__subtitle {
        font-size: 1rem;
    }

    .hs-hero__actions {
    justify-content: center;
        flex-direction: column;
    }

    .hs-hero__actions .hs-btn {
        text-align: center;
    }

    .hs-reassurance__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hs-promo__title {
        font-size: 1.75rem;
    }

    .hs-section-title {
        font-size: 1.5rem;
    }

    .hs-featured,
    .hs-new-arrivals,
    .hs-categories,
    .hs-about {
        padding: 50px 0;
    }

    .hs-promo {
        padding: 50px 0;
    }

    .hs-promo__inner {
        padding: 40px 20px;
    }

    /* Cart Table responsive */
    .woocommerce-cart table.shop_table thead {
        display: none;
    }

    .woocommerce-cart table.shop_table tr {
        display: flex;
        flex-wrap: wrap;
        padding: 16px;
        border-bottom: 1px solid var(--hs-border);
    }

    .woocommerce-cart table.shop_table td {
        border: none;
        padding: 4px 0;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hs-categories__grid {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .hs-reassurance__grid {
        grid-template-columns: 1fr;
    }

    .hs-footer__grid {
        grid-template-columns: 1fr;
    }

    .hs-blog__grid {
        grid-template-columns: 1fr;
    }

    .hs-hero__title {
        font-size: 1.75rem;
    }

    .hs-404__code {
        font-size: 5rem;
    }
}

/* ─── Utility: Clearfix ─── */
.woocommerce div.product::after,
.woocommerce-account .woocommerce::after {
    content: '';
    display: table;
    clear: both;
}

/* ─── Print ─── */
@media print {
    .hs-announcement,
    .hs-header,
    .hs-footer,
    .hs-reassurance {
        display: none;
    }

    .hs-main {
        padding: 0;
    }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */

/* ─── Keyframes ─── */
@keyframes hs-fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hs-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes hs-fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hs-fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hs-scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes hs-slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hs-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes hs-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

@keyframes hs-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes hs-countBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.4); }
    60%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes hs-underlineGrow {
    from { width: 0; }
    to   { width: 60px; }
}

/* ─── Scroll Reveal Base ─── */
.hs-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-reveal--right {
    transform: translateX(40px);
}

.hs-reveal--left {
    transform: translateX(-40px);
}

.hs-reveal--scale {
    transform: scale(0.92);
}

.hs-reveal.hs-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.hs-reveal-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-reveal-children.hs-visible > *:nth-child(1) { transition-delay: 0.05s; }
.hs-reveal-children.hs-visible > *:nth-child(2) { transition-delay: 0.12s; }
.hs-reveal-children.hs-visible > *:nth-child(3) { transition-delay: 0.19s; }
.hs-reveal-children.hs-visible > *:nth-child(4) { transition-delay: 0.26s; }
.hs-reveal-children.hs-visible > *:nth-child(5) { transition-delay: 0.33s; }
.hs-reveal-children.hs-visible > *:nth-child(6) { transition-delay: 0.40s; }
.hs-reveal-children.hs-visible > *:nth-child(7) { transition-delay: 0.47s; }
.hs-reveal-children.hs-visible > *:nth-child(8) { transition-delay: 0.54s; }

.hs-reveal-children.hs-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Hero Animations ─── */
.hs-hero__content .hs-hero__title {
    animation: hs-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hs-hero__content .hs-hero__subtitle {
    animation: hs-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hs-hero__content .hs-hero__actions {
    animation: hs-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* ─── Section Title Animation ─── */
.hs-section-header.hs-visible .hs-section-title::after {
    animation: hs-underlineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* ─── Enhanced Button Hover ─── */
.hs-btn {
    position: relative;
    overflow: hidden;
}

.hs-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.hs-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* ─── Enhanced Category Card Hover ─── */
.hs-categories__card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-categories__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.2);
}

.hs-categories__card:hover .hs-categories__card-overlay h3 {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.hs-categories__card .hs-categories__card-overlay h3 {
    transition: transform 0.3s ease;
}

/* ─── Enhanced Product Card Hover ─── */
.hs-product-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(10, 36, 99, 0.12);
}

/* ─── Cart Count Bounce ─── */
.hs-cart-count.hs-bounce {
    animation: hs-countBounce 0.5s ease;
}

/* ─── Reassurance Items Hover ─── */
.hs-reassurance__item {
    transition: transform 0.3s ease;
}

.hs-reassurance__item:hover {
    transform: translateY(-4px);
}

.hs-reassurance__icon {
    transition: all 0.4s ease;
}

.hs-reassurance__item:hover .hs-reassurance__icon {
    background: var(--hs-primary);
    color: var(--hs-white);
    transform: scale(1.1);
}

/* ─── Footer Social Hover ─── */
.hs-footer__social a {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-footer__social a:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--hs-primary);
    color: var(--hs-white);
    border-color: var(--hs-primary);
}

/* ─── Footer Links Hover ─── */
.hs-footer__links a {
    transition: all 0.3s ease;
    position: relative;
}

.hs-footer__links a:hover {
    padding-right: 12px;
}

/* ─── Promo Section Shimmer ─── */
.hs-promo__tag {
    position: relative;
    overflow: hidden;
}

.hs-promo__tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: hs-shimmer 3s infinite;
}

/* ─── About Features Animation ─── */
.hs-about__features li {
    transition: all 0.3s ease;
}

.hs-about__features li:hover {
    padding-right: 28px;
    border-right-color: #5B9BFF;
}

/* ─── Header Action Buttons ─── */
.hs-header__action-btn {
    transition: all 0.3s ease;
}

.hs-header__action-btn:hover {
    transform: scale(1.1);
}

/* ─── Nav Link Underline Animation ─── */
.hs-nav__list li a::after,
.hs-nav__link::after {
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Search Panel Slide ─── */
.hs-search {
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Blog Card Hover ─── */
.hs-blog-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(10, 36, 99, 0.12);
}

.hs-blog-card__image img {
    transition: transform 0.6s ease;
}

.hs-blog-card:hover .hs-blog-card__image img {
    transform: scale(1.06);
}

.hs-blog-card__image {
    overflow: hidden;
}

/* ─── Toast Animation Upgrade ─── */
.hs-toast {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Page Load Animation ─── */
.hs-header {
    animation: hs-slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ─── Reduce motion for accessibility ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hs-reveal {
        opacity: 1;
        transform: none;
    }
    .hs-reveal-children > * {
        opacity: 1;
        transform: none;
    }
}
CSSEOF # Append animation CSS to main.css

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */

/* ─── Keyframes ─── */
@keyframes hs-fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hs-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes hs-fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hs-fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hs-scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes hs-slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hs-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes hs-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

@keyframes hs-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes hs-countBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.4); }
    60%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes hs-underlineGrow {
    from { width: 0; }
    to   { width: 60px; }
}

/* ─── Scroll Reveal Base ─── */
.hs-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-reveal--right {
    transform: translateX(40px);
}

.hs-reveal--left {
    transform: translateX(-40px);
}

.hs-reveal--scale {
    transform: scale(0.92);
}

.hs-reveal.hs-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.hs-reveal-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-reveal-children.hs-visible > *:nth-child(1) { transition-delay: 0.05s; }
.hs-reveal-children.hs-visible > *:nth-child(2) { transition-delay: 0.12s; }
.hs-reveal-children.hs-visible > *:nth-child(3) { transition-delay: 0.19s; }
.hs-reveal-children.hs-visible > *:nth-child(4) { transition-delay: 0.26s; }
.hs-reveal-children.hs-visible > *:nth-child(5) { transition-delay: 0.33s; }
.hs-reveal-children.hs-visible > *:nth-child(6) { transition-delay: 0.40s; }
.hs-reveal-children.hs-visible > *:nth-child(7) { transition-delay: 0.47s; }
.hs-reveal-children.hs-visible > *:nth-child(8) { transition-delay: 0.54s; }

.hs-reveal-children.hs-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Hero Animations ─── */
.hs-hero__content .hs-hero__title {
    animation: hs-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hs-hero__content .hs-hero__subtitle {
    animation: hs-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hs-hero__content .hs-hero__actions {
    animation: hs-fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* ─── Section Title Animation ─── */
.hs-section-header.hs-visible .hs-section-title::after {
    animation: hs-underlineGrow 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* ─── Enhanced Button Hover ─── */
.hs-btn {
    position: relative;
    overflow: hidden;
}

.hs-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.hs-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* ─── Enhanced Category Card Hover ─── */
.hs-categories__card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-categories__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 36, 99, 0.2);
}

.hs-categories__card .hs-categories__card-overlay h3 {
    transition: transform 0.3s ease;
}

.hs-categories__card:hover .hs-categories__card-overlay h3 {
    transform: translateY(-4px);
}

/* ─── Enhanced Product Card Hover ─── */
.hs-product-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(10, 36, 99, 0.12);
}

/* ─── Cart Count Bounce ─── */
.hs-cart-count.hs-bounce {
    animation: hs-countBounce 0.5s ease;
}

/* ─── Reassurance Items Hover ─── */
.hs-reassurance__item {
    transition: transform 0.3s ease;
}

.hs-reassurance__item:hover {
    transform: translateY(-4px);
}

.hs-reassurance__icon {
    transition: all 0.4s ease;
}

.hs-reassurance__item:hover .hs-reassurance__icon {
    background: var(--hs-primary);
    color: var(--hs-white);
    transform: scale(1.1);
}

/* ─── Footer Social Hover ─── */
.hs-footer__social a {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-footer__social a:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--hs-primary);
    color: var(--hs-white);
    border-color: var(--hs-primary);
}

/* ─── Footer Links Hover ─── */
.hs-footer__links a {
    transition: all 0.3s ease;
    position: relative;
}

.hs-footer__links a:hover {
    padding-right: 12px;
}

/* ─── Promo Section Shimmer ─── */
.hs-promo__tag {
    position: relative;
    overflow: hidden;
}

.hs-promo__tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: hs-shimmer 3s infinite;
}

/* ─── About Features Animation ─── */
.hs-about__features li {
    transition: all 0.3s ease;
}

.hs-about__features li:hover {
    padding-right: 28px;
    border-right-color: #5B9BFF;
}

/* ─── Header Action Buttons ─── */
.hs-header__action-btn {
    transition: all 0.3s ease;
}

.hs-header__action-btn:hover {
    transform: scale(1.1);
}

/* ─── Nav Link Underline Animation ─── */
.hs-nav__list li a::after,
.hs-nav__link::after {
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Search Panel Slide ─── */
.hs-search {
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Blog Card Hover ─── */
.hs-blog-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(10, 36, 99, 0.12);
}

.hs-blog-card__image {
    overflow: hidden;
}

.hs-blog-card__image img {
    transition: transform 0.6s ease;
}

.hs-blog-card:hover .hs-blog-card__image img {
    transform: scale(1.06);
}

/* ─── Toast Animation Upgrade ─── */
.hs-toast {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Page Load Animation ─── */
.hs-header {
    animation: hs-slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ─── Reduce motion for accessibility ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hs-reveal {
        opacity: 1;
        transform: none;
    }
    .hs-reveal-children > * {
        opacity: 1;
        transform: none;
    }
}

/* ─── Sous-menus de navigation ─── */
.hs-nav__list li {
    position: relative;
}

.hs-nav__list .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
    z-index: 200;
}

.hs-nav__list li:hover > .sub-menu,
.hs-nav__list li:focus-within > .sub-menu,
.hs-nav__list li.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hs-nav__list .sub-menu li a {
    display: block;
    padding: 9px 20px;
    white-space: nowrap;
    font-size: 15px;
}

.hs-nav__list .sub-menu li a::after {
    display: none;
}

.hs-nav__list .sub-menu li a:hover {
    background: #f5f5f5;
}

/* Bouton indisponible */
.hs-btn--disabled {
    background: #ddd;
    color: #888 !important;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hs-nav__list .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 16px 0 0;
        min-width: 0;
    }

    .hs-nav__list .sub-menu li a {
        padding: 8px 0;
        font-size: 14px;
        opacity: 0.85;
    }
}

/* ─── Bloc de contact ─── */
.hs-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.hs-contact__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    background: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

a.hs-contact__item:hover {
    border-color: #bbb;
    transform: translateY(-2px);
}

.hs-contact__label {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.4px;
}

.hs-contact__value {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.hs-contact__item--wa .hs-contact__value {
    color: #25d366;
}

/* ─── Navigation : chevron de sous-menu ─── */
.hs-nav__list > li.menu-item-has-children {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hs-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--hs-text);
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hs-nav__toggle:hover,
.hs-nav__toggle:focus-visible {
    background: rgba(0, 0, 0, 0.06);
    color: var(--hs-primary);
}

.hs-nav__list > li.is-open > .hs-nav__toggle,
.hs-nav__list > li:hover > .hs-nav__toggle {
    transform: rotate(180deg);
    color: var(--hs-primary);
}

/* État actif : catégorie ou fiche produit en cours */
.hs-nav__list li.current-menu-ancestor > a,
.hs-nav__list li.current-menu-parent > a,
.hs-nav__list li.current_page_parent > a,
.hs-nav__list li.current-product-ancestor > a {
    color: var(--hs-primary);
}

.hs-nav__list li.current-menu-ancestor > a::after,
.hs-nav__list li.current-menu-parent > a::after,
.hs-nav__list li.current_page_parent > a::after,
.hs-nav__list li.current-product-ancestor > a::after {
    width: 100%;
}

@media (max-width: 768px) {
    /* Le tiroir mobile déplie déjà les sous-menus : le chevron devient inutile */
    .hs-nav__toggle {
        display: none;
    }

    .hs-nav__list > li.menu-item-has-children {
        display: block;
    }
}

/* Hauteur réelle du tiroir mobile (iOS Safari : 100vh déborde) */
@media (max-width: 768px) {
    .hs-nav {
        height: var(--hs-nav-height, 100vh);
    }
}

@supports (height: 100dvh) {
    @media (max-width: 768px) {
        .hs-nav {
            height: 100dvh;
        }
    }
}

/* Zone de compression de 769 a 900 px : la barre horizontale réclame 813 px alors
   que le tiroir mobile ne prend le relais qu'à 768 px. On resserre au lieu de
   laisser la navigation déborder. */
@media (min-width: 769px) and (max-width: 900px) {
    .hs-nav__list {
        gap: 16px;
    }

    .hs-nav__list > li > a,
    .hs-nav__link {
        font-size: 0.875rem;
    }

    .hs-header__inner {
        gap: 14px;
    }

    .hs-nav__toggle {
        width: 22px;
        height: 22px;
    }
}

/* ─── Barre d'annonce ─── */
.hs-announce {
    background: #12263f;
    color: #fff;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.hs-announce__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 9px;
    padding-bottom: 9px;
}

.hs-announce__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.hs-announce__item svg {
    flex-shrink: 0;
    opacity: 0.75;
}

.hs-announce__item--link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.hs-announce__item--link:hover {
    color: #fff;
    text-decoration: underline;
}

.hs-announce__sep {
    opacity: 0.4;
}

/* ─── Bouton WhatsApp de l'en-tête ─── */
.hs-header__wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-header__wa:hover,
.hs-header__wa:focus-visible {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

@media (max-width: 700px) {
    .hs-announce__inner {
        gap: 8px;
        font-size: 0.75rem;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    /* Une seule ligne : on garde paiement à la livraison et téléphone */
    .hs-announce__item--secondary,
    .hs-announce__sep--secondary {
        display: none;
    }
}

/* Le tiroir ne doit jamais élargir la zone scrollable */
html {
    overflow-x: hidden;
}

/* Contact : grille équilibrée 2×2 plutôt qu'une carte orpheline */
@media (min-width: 700px) {
    .hs-contact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── Grilles produits : neutraliser le clearfix de WooCommerce ─── */
/* WooCommerce pose content:" " sur ::before et ::after de ul.products pour
   nettoyer les floats. Le thème affiche cette liste en grid : ces deux
   pseudo-éléments deviennent alors des cases, ce qui décale toutes les
   cartes d'un cran et ajoute une rangée fantôme. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.woocommerce .products ul::before,
.woocommerce .products ul::after {
    content: none;
}
