/**
 * Zooptimal Homepage - Premium E-commerce Design
 * Inspired by Zoomalia, Zooplus, Maxizoo
 * Agricultural Premium Aesthetic
 */

/* ============================================
   CSS VARIABLES - Homepage specific
   ============================================ */
:root {
    --zo-hero-height: 520px;
    --zo-hero-height-mobile: 420px;
    --zo-card-radius: 16px;
    --zo-card-radius-sm: 12px;
    --zo-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --zo-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --zo-shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.zo-hero-slider {
    position: relative;
    height: var(--zo-hero-height);
    overflow: hidden;
    background: var(--zo-green);
}

.zo-hero-slider__track {
    position: relative;
    height: 100%;
}

.zo-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.zo-hero-slide--active {
    opacity: 1;
    visibility: visible;
}

.zo-hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--zo-green);
}

.zo-hero-slide__bg--promo {
    background: linear-gradient(135deg, var(--zo-green) 0%, #1e5c3f 100%);
}

.zo-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27, 77, 62, 0.9) 0%, rgba(27, 77, 62, 0.4) 60%, transparent 100%);
}

.zo-hero-slide__overlay--dark {
    background: rgba(27, 77, 62, 0.7);
}

.zo-hero-slide__content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.zo-hero-slide__inner {
    max-width: 600px;
    color: var(--zo-white);
}

.zo-hero-slide__inner--center {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.zo-hero-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.zo-hero-slide__badge svg {
    width: 18px;
    height: 18px;
}

.zo-hero-slide__badge--promo {
    background: var(--zo-wheat);
    color: var(--zo-dark);
    border: none;
}

.zo-hero-slide__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.zo-hero-slide__title--promo {
    font-size: clamp(40px, 6vw, 72px);
}

.zo-hero-slide__text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0 0 32px;
}

.zo-hero-slide__code {
    font-size: 20px;
    margin: 0 0 32px;
}

.zo-hero-slide__code strong {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    letter-spacing: 2px;
    margin-left: 8px;
}

.zo-hero-slide__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.zo-hero-slide__inner--center .zo-hero-slide__actions {
    justify-content: center;
}

/* Slider Navigation */
.zo-hero-slider__nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.zo-hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.zo-hero-slider__dot--active,
.zo-hero-slider__dot:hover {
    background: var(--zo-white);
    transform: scale(1.2);
}

.zo-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--zo-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.zo-hero-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.zo-hero-slider__arrow svg {
    width: 24px;
    height: 24px;
}

.zo-hero-slider__arrow--prev {
    left: 30px;
}

.zo-hero-slider__arrow--next {
    right: 30px;
}

/* ============================================
   BUTTONS - Enhanced
   ============================================ */
.zo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--zo-transition);
    white-space: nowrap;
}

.zo-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.zo-btn:hover svg {
    transform: translateX(3px);
}

.zo-btn--accent {
    background: var(--zo-wheat);
    color: var(--zo-dark);
}

.zo-btn--accent:hover {
    background: var(--zo-wheat-dark);
    box-shadow: 0 8px 25px rgba(244, 195, 64, 0.35);
}

.zo-btn--white {
    background: var(--zo-white);
    color: var(--zo-green);
}

.zo-btn--white:hover {
    background: var(--zo-gray-100);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.zo-btn--primary {
    background: var(--zo-green);
    color: var(--zo-white);
}

.zo-btn--primary:hover {
    background: var(--zo-green-dark);
}

.zo-btn--outline-white {
    background: transparent;
    color: var(--zo-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.zo-btn--outline-white:hover {
    background: var(--zo-white);
    color: var(--zo-green);
    border-color: var(--zo-white);
}

.zo-btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.zo-btn--xl {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 12px;
}

/* ============================================
   TRUST BAR - Ecolive organic style
   ============================================ */
.zo-trust {
    background: var(--zo-white);
    border-bottom: 1px solid var(--zo-gray-100);
    padding: 28px 0;
}

.zo-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.zo-trust__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--zo-white);
    border: 2px solid var(--zo-gray-200);
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.zo-trust__item:hover {
    border-color: var(--zo-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.zo-trust__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 119, 88, 0.15) 0%, rgba(52, 119, 88, 0.05) 100%);
    border-radius: 12px 12px 28px 12px;
    color: var(--zo-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.zo-trust__item:hover .zo-trust__icon {
    background: var(--zo-green);
    color: var(--zo-white);
    border-radius: 16px;
}

.zo-trust__icon svg {
    width: 26px;
    height: 26px;
}

.zo-trust__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.zo-trust__text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--zo-dark);
}

.zo-trust__text span {
    font-size: 13px;
    color: var(--zo-gray-500);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.zo-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.zo-section-head--between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
}

.zo-section-head__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--zo-dark);
    margin: 0 0 8px;
}

.zo-section-head__subtitle {
    font-size: 16px;
    color: var(--zo-gray-500);
    margin: 0;
}

.zo-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--zo-green);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.zo-link-arrow:hover {
    gap: 12px;
}

.zo-link-arrow svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   SHOP BY PET - Large Category Cards
   ============================================ */
.zo-shop-pet {
    padding: 70px 0;
    background: var(--zo-gray-50);
}

.zo-shop-pet__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zo-pet-card {
    position: relative;
    display: block;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zo-pet-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    z-index: -1;
    transition: all 0.4s ease;
}

.zo-pet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.zo-pet-card:hover::before {
    inset: -2px -2px -60px -2px;
}

.zo-pet-card__bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.zo-pet-card:hover .zo-pet-card__bg {
    transform: scale(1.08);
}

.zo-pet-card--chien .zo-pet-card__bg {
    background: linear-gradient(145deg, #2d6a4f 0%, #1b4332 100%);
}

.zo-pet-card--chat .zo-pet-card__bg {
    background: linear-gradient(145deg, #d68c45 0%, #bf6d2e 100%);
}

.zo-pet-card--rongeurs .zo-pet-card__bg {
    background: linear-gradient(145deg, #8b7355 0%, #6b5344 100%);
}

.zo-pet-card__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: var(--zo-white);
    z-index: 2;
}

.zo-pet-card__icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 40px 20px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.zo-pet-card:hover .zo-pet-card__icon {
    transform: scale(1.1) rotate(3deg);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 24px;
}

.zo-pet-card__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.zo-pet-card__title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.zo-pet-card__count {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.zo-pet-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.zo-pet-card:hover .zo-pet-card__cta {
    background: var(--zo-white);
    color: var(--zo-dark);
}

.zo-pet-card__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.zo-pet-card:hover .zo-pet-card__cta svg {
    transform: translateX(4px);
}

/* ============================================
   FLASH PROMO BAR
   ============================================ */
.zo-flash-bar {
    background: linear-gradient(90deg, var(--zo-wheat) 0%, #f8d76b 100%);
    padding: 8px 0;
}

.zo-flash-bar__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.zo-flash-bar__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 12px 12px 28px 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.zo-flash-bar:hover .zo-flash-bar__icon {
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.12);
}

.zo-flash-bar__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.zo-flash-bar__content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.zo-flash-bar__content strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--zo-dark);
}

.zo-flash-bar__content span {
    font-size: 15px;
    color: var(--zo-dark);
    opacity: 0.75;
}

.zo-flash-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--zo-dark);
    color: var(--zo-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px 12px 28px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zo-flash-bar__btn:hover {
    background: var(--zo-green);
    border-radius: 14px;
    transform: translateY(-2px);
}

.zo-flash-bar__btn svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   PRODUCTS BLOCK
   ============================================ */
.zo-products-block {
    padding: 70px 0;
}

.zo-products-block--gray {
    background: var(--zo-gray-50);
}

.zo-products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ============================================
   PRODUCT CARD - Modern Style
   ============================================ */
.zo-product-card {
    position: relative;
    background: var(--zo-white);
    border-radius: 20px;
    overflow: visible;
    border: 2px solid var(--zo-gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding: 16px;
}

.zo-product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--zo-white);
    border: 2px solid var(--zo-gray-200);
    z-index: -1;
    transition: all 0.4s ease;
}

.zo-product-card:hover {
    z-index: 10;
}

.zo-product-card:hover::before {
    bottom: -45px;
    border-color: rgba(52, 119, 88, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.zo-product-card__link {
    display: block;
    text-decoration: none;
    flex: 1;
}

.zo-product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--zo-gray-50);
    border-radius: 14px;
    margin-bottom: 12px;
}

.zo-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zo-product-card:hover .zo-product-card__image img {
    transform: scale(1.06);
}

.zo-product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px 8px 16px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zo-product-card__badge--sale {
    background: #e53935;
    color: var(--zo-white);
}

.zo-product-card__badge--new {
    background: var(--zo-green);
    color: var(--zo-white);
}

.zo-product-card__content {
    padding: 0;
}

.zo-product-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--zo-dark);
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.zo-product-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--zo-green);
}

.zo-product-card__price del {
    font-size: 14px;
    font-weight: 400;
    color: var(--zo-gray-400);
    margin-right: 8px;
}

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

.zo-product-card__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--zo-gray-100);
    color: var(--zo-gray-700);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px 10px 18px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.zo-product-card__cart:hover {
    background: var(--zo-green);
    color: var(--zo-white);
    border-radius: 12px;
}

.zo-product-card__cart svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   SPLIT SECTION - Chien / Chat (Ecolive organic)
   ============================================ */
.zo-split {
    padding: 70px 0;
    background: var(--zo-white);
}

.zo-split__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.zo-split__col {
    background: var(--zo-white);
    border: 2px solid var(--zo-gray-200);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
}

.zo-split__col:hover {
    border-color: var(--zo-green);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.zo-split__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--zo-gray-100);
}

.zo-split__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 119, 88, 0.15) 0%, rgba(52, 119, 88, 0.05) 100%);
    border-radius: 12px 12px 28px 12px;
    transition: all 0.3s ease;
}

.zo-split__col:hover .zo-split__icon {
    background: var(--zo-green);
    border-radius: 16px;
}

.zo-split__col:hover .zo-split__icon img {
    filter: brightness(0) invert(1);
}

.zo-split__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.zo-split__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--zo-dark);
    margin: 0 0 4px;
}

.zo-split__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--zo-green);
    text-decoration: none;
}

.zo-split__link:hover {
    text-decoration: underline;
}

.zo-split__products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mini Product Card */
.zo-product-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: var(--zo-white);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.zo-product-mini:hover {
    border-color: var(--zo-green);
    box-shadow: 0 4px 12px rgba(52, 119, 88, 0.1);
}

.zo-product-mini__img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.zo-product-mini__info {
    flex: 1;
    min-width: 0;
}

.zo-product-mini__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--zo-dark);
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zo-product-mini__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--zo-green);
}

.zo-product-mini__arrow {
    width: 24px;
    height: 24px;
    color: var(--zo-gray-300);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.zo-product-mini:hover .zo-product-mini__arrow {
    color: var(--zo-green);
    transform: translateX(4px);
}

/* ============================================
   CTA BANNER
   ============================================ */
.zo-cta-banner {
    padding: 40px 0;
}

.zo-cta-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, var(--zo-green) 0%, #1e5c3f 100%);
    border-radius: 24px;
    padding: 60px;
    color: var(--zo-white);
    position: relative;
    overflow: hidden;
}

.zo-cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.zo-cta-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 195, 64, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.zo-cta-banner__content {
    position: relative;
    z-index: 2;
}

.zo-cta-banner__label {
    display: inline-block;
    background: var(--zo-wheat);
    color: var(--zo-dark);
    padding: 10px 20px;
    border-radius: 10px 10px 20px 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zo-cta-banner__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    max-width: 500px;
}

.zo-cta-banner__text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 0 28px;
    max-width: 480px;
}

.zo-cta-banner__visual {
    position: relative;
    z-index: 2;
}

.zo-cta-banner__badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zo-cta-banner__badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 18px 26px;
    border-radius: 14px 14px 28px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.zo-cta-banner__badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transform: translateX(5px);
}

.zo-cta-banner__badge svg {
    width: 28px;
    height: 28px;
}

.zo-cta-banner__badge span {
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   NEWSLETTER - Ecolive organic style
   ============================================ */
.zo-newsletter {
    padding: 60px 0;
    background: var(--zo-gray-50);
}

.zo-newsletter__inner {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--zo-white);
    border: 2px solid var(--zo-gray-200);
    border-radius: 24px;
    padding: 44px;
    transition: all 0.4s ease;
}

.zo-newsletter__inner:hover {
    border-color: var(--zo-green);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.zo-newsletter__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(52, 119, 88, 0.15) 0%, rgba(52, 119, 88, 0.05) 100%);
    border-radius: 14px 14px 30px 14px;
    color: var(--zo-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.zo-newsletter__inner:hover .zo-newsletter__icon {
    background: var(--zo-green);
    color: var(--zo-white);
    border-radius: 18px;
}

.zo-newsletter__icon svg {
    width: 32px;
    height: 32px;
}

.zo-newsletter__content {
    flex: 1;
}

.zo-newsletter__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--zo-dark);
    margin: 0 0 6px;
}

.zo-newsletter__text {
    font-size: 15px;
    color: var(--zo-gray-500);
    margin: 0;
}

.zo-newsletter__form {
    flex-shrink: 0;
}

.zo-newsletter__field {
    display: flex;
    background: var(--zo-gray-100);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zo-newsletter__field:focus-within {
    box-shadow: 0 0 0 3px rgba(52, 119, 88, 0.15);
}

.zo-newsletter__field input {
    width: 260px;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 15px;
    border: none;
    background: transparent;
    outline: none;
}

.zo-newsletter__field input::placeholder {
    color: var(--zo-gray-400);
}

.zo-newsletter__field button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--zo-green);
    color: var(--zo-white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.zo-newsletter__field button:hover {
    background: var(--zo-green-dark);
    padding-right: 32px;
}

.zo-newsletter__field button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.zo-newsletter__field button:hover svg {
    transform: translateX(3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .zo-products-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .zo-hero-slider {
        height: var(--zo-hero-height-mobile);
    }

    .zo-hero-slider__arrow {
        display: none;
    }

    .zo-hero-slide__title {
        font-size: clamp(28px, 5vw, 40px);
    }

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

    .zo-shop-pet__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zo-pet-card {
        height: 280px;
    }

    .zo-pet-card:last-child {
        grid-column: span 2;
    }

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

    .zo-split__grid {
        grid-template-columns: 1fr;
    }

    .zo-cta-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }

    .zo-cta-banner__title,
    .zo-cta-banner__text {
        max-width: 100%;
    }

    .zo-cta-banner__badges {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --zo-hero-height-mobile: 380px;
    }

    .zo-hero-slide__inner {
        text-align: center;
    }

    .zo-hero-slide__actions {
        justify-content: center;
    }

    .zo-hero-slide__badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .zo-hero-slide__text {
        font-size: 16px;
    }

    .zo-trust__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .zo-trust__item {
        padding: 18px 20px;
        border: 2px solid var(--zo-gray-200);
        border-radius: 16px;
    }

    .zo-trust__item:hover {
        transform: none;
    }

    .zo-section-head {
        margin-bottom: 30px;
    }

    .zo-section-head__title {
        font-size: 26px;
    }

    .zo-section-head--between {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .zo-shop-pet {
        padding: 50px 0;
    }

    .zo-shop-pet__grid {
        grid-template-columns: 1fr;
    }

    .zo-pet-card {
        height: 200px;
    }

    .zo-pet-card:last-child {
        grid-column: auto;
    }

    .zo-pet-card__icon {
        width: 70px;
        height: 70px;
    }

    .zo-pet-card__icon img {
        width: 40px;
        height: 40px;
    }

    .zo-pet-card__title {
        font-size: 22px;
    }

    .zo-flash-bar__inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .zo-flash-bar__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .zo-flash-bar__btn {
        width: 100%;
        justify-content: center;
    }

    .zo-products-block {
        padding: 50px 0;
    }

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

    .zo-product-card__title {
        font-size: 13px;
        min-height: 36px;
    }

    .zo-product-card__price {
        font-size: 16px;
    }

    .zo-split {
        padding: 50px 0;
    }

    .zo-split__col {
        padding: 20px;
    }

    .zo-cta-banner__badges {
        flex-direction: column;
    }

    .zo-newsletter__inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .zo-newsletter__field {
        flex-direction: column;
        width: 100%;
    }

    .zo-newsletter__field input {
        width: 100%;
    }

    .zo-newsletter__field button {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .zo-btn--xl {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
    }

    .zo-products-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .zo-product-card {
        padding: 12px;
    }

    .zo-product-card__cart span {
        display: none;
    }

    .zo-product-card__cart {
        padding: 12px;
    }
}
