/* ============================================
   Перепелина Оаза — Landing Page Styles
   ============================================ */

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

:root {
    --primary: #C17F4E;
    --primary-light: #F5E6D8;
    --text-dark: #3D2E1F;
    --text-body: #6B5E50;
    --bg: #FAF7F2;
    --bg-alt: #F2EDE6;
    --footer-bg: #3D2E1F;
    --footer-text: #C5C1B9;
    --white: #FFFFFF;
    --green: #4A7C59;
    --green-light: #E8F0EA;
    --danger: #d9534f;
    --success: #5cb85c;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(61,46,31,0.08);
    --shadow-lg: 0 8px 40px rgba(61,46,31,0.12);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.3;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
}

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

.btn--primary:hover {
    background: #a96b3e;
    border-color: #a96b3e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193,127,78,0.4);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

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

.btn--full {
    width: 100%;
}

/* --- Section Labels & Titles --- */
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 17px;
    color: var(--text-body);
}

/* --- Fade-in Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo__text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

.header.scrolled .logo__text {
    color: var(--text-dark);
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__order-btn { display: none; }

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.header.scrolled .nav__link {
    color: var(--text-body);
}

.nav__link:hover {
    color: var(--white);
}

.header.scrolled .nav__link:hover {
    color: var(--primary);
}

.header__cta {
    padding: 10px 24px;
    font-size: 14px;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.header.scrolled .burger span {
    background: var(--text-dark);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-eggs.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61,46,31,0.65) 0%, rgba(61,46,31,0.35) 100%);
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 20px 80px;
}

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

.hero__badge svg {
    color: #7BC67E;
    flex-shrink: 0;
}

.badge__green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(111 239 150 / 15%);
    border: 1px solid #5eb9793d;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero__title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

/* Stats Bar */
.hero__stats {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.hero__stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 28px 40px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.hero__stat {
    text-align: center;
    color: var(--white);
}

.hero__stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero__stat span {
    font-size: 14px;
    opacity: 0.8;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 0 0 100px;
    text-align: center;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery__item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61,46,31,0);
    transition: background var(--transition);
}

.gallery__item:hover::after {
    background: rgba(61,46,31,0.15);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity var(--transition);
    z-index: 1;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition), background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
    background: var(--primary);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 0 0 100px;
    text-align: center;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.product-card--featured {
    border: 2px solid var(--green);
    overflow: visible;
}

.product-card.product-card--featured {
    background: var(--green-light);
}

.product-card--featured .product-card__price {
    color: var(--green);
}

.product-card--featured .btn--primary {
    background: var(--green);
    border-color: var(--green);
}

.product-card--featured .btn--primary:hover {
    background: #3a6347;
    border-color: #3a6347;
    box-shadow: 0 4px 15px rgba(74,124,89,0.4);
}

.product-card--featured::before {
    content: '⭐ Найбільший попит';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 1;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.product-card__badge--alt {
    background: var(--success);
}

.product-card__body {
    padding: 28px;
    text-align: left;
}

.product-card__title {
    font-size: 24px;
    margin-bottom: 12px;
}

.product-card__desc {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 0;
}

.product-card__price span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-body);
}

/* ============================================
   BREED
   ============================================ */
.breed {
    padding: 100px 0;
    text-align: center;
}

.breed__specs {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    border: 1px solid #5eb9793d;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 48px;
    margin: 48px auto;
    max-width: 860px;
}

.breed__spec {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.breed__spec-icon {
    width: 52px;
    height: 52px;
    background: var(--green);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.breed__spec strong {
    display: block;
    font-size: 12px;
    color: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.breed__spec span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.breed__spec-divider {
    width: 1px;
    height: 52px;
    background: rgba(74,124,89,0.2);
    flex-shrink: 0;
    margin: 0 24px;
}

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

.breed__trait {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.breed__trait-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary-light), #fef3e8);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.breed__trait h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.breed__trait p {
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
    padding: 100px 0;
    background: var(--bg-alt);
    text-align: center;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.advantage-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
}

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

.about__image {
    position: relative;
}

.about__img-wrap {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__img-placeholder {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
}

.about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--white);
}

.about__badge span {
    font-size: 13px;
    opacity: 0.9;
}

.about__content .section-label {
    text-align: left;
}

.about__content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.about__list {
    margin: 24px 0 0;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.about__list li i {
    color: var(--primary);
    font-size: 14px;
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   ORDER FORM
   ============================================ */
.order {
    padding: 100px 0;
    background: var(--bg-alt);
    text-align: left;
}
.order br { display: none;}

.order__form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.order__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(193,127,78,0.15);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--danger);
}

.form-error {
    display: block;
    font-size: 12px;
    color: var(--danger);
    margin-top: 4px;
    min-height: 18px;
}

/* Order Items Repeater */
.order__items-section {
    margin-bottom: 28px;
}

.order__item {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    background: var(--bg);
    border: 1px solid #e8e0d8;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 10px;
}

.order__item .form-group {
    margin: 0;
}

.item__remove {
    background: none;
    border: 1px solid #e0d8d0;
    border-radius: var(--radius-sm);
    color: var(--text-body);
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.item__remove:hover {
    background: #fff0f0;
    border-color: var(--danger);
    color: var(--danger);
}

.btn--add-item {
    width: 100%;
    background: none;
    border: 2px dashed #d0c4b8;
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.btn--add-item:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.btn--add-item:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Order Summary */
.order__summary {
    margin-top: 18px;
    background: linear-gradient(135deg, #FFF8F2, #F5EDE3);
    border: 1px solid #e8d8c8;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
}

.summary__line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    color: var(--text-body);
    padding: 3px 0;
}

.summary__line span:last-child {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.summary__divider {
    border: none;
    border-top: 1px solid #d8c8b8;
    margin: 10px 0;
}

.summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.summary__total strong {
    font-size: 22px;
    color: var(--primary);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 48px;
    text-align: left;
}

.contact__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact__item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.contact__map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact__map iframe {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--footer-bg);
    padding: 60px 0 0;
    color: var(--footer-text);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo--light .logo__text {
    color: var(--white);
}

.footer__about p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
}

.footer__col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a {
    font-size: 14px;
    color: var(--footer-text);
    transition: color var(--transition);
}

.footer__col ul li a:hover {
    color: var(--primary);
}

.footer__schedule li {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer__schedule li span {
    color: var(--white);
    font-weight: 500;
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transform: translateX(calc(100% + 40px));
    transition: transform 0.4s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast__content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    min-width: 300px;
}

.toast.toast--success .toast__icon {
    color: var(--success);
}

.toast.toast--error .toast__icon {
    color: var(--danger);
}

.toast__icon {
    font-size: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__title { font-size: 42px; }
    .section-title { font-size: 32px; }
    .advantages__grid { grid-template-columns: repeat(2, 1fr); }
    .about__inner { gap: 40px; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Header */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right var(--transition);
        padding: 80px 30px 30px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .nav.open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 0;
        color: var(--text-dark) !important;
        font-size: 17px;
        border-bottom: 1px solid var(--bg-alt);
    }

    .header__cta { display: none; }
    .burger { display: flex; }

    .nav__order-btn {
        display: block;
        margin-top: auto;
        padding-bottom: 16px;
        text-align: center;
    }

    .burger.active span {
        background: var(--text-dark);
    }

    .breed, .advantages, .about, .order, .contact {
        padding: 50px 0;
    }
    .products, .gallery {
        padding-bottom: 50px;
    }

    /* Hero */
    .hero__title { font-size: 32px; }
    .hero__subtitle { font-size: 16px; }
    .hero__inner { padding: 120px 20px 60px; }
    .hero__stats-inner { flex-direction: column; gap: 20px; padding: 24px 20px; }
    .hero__stat-divider { width: 60px; height: 1px; }
    .hero__stat strong { font-size: 26px; }

    /* Gallery */
    .gallery__grid { grid-template-columns: 1fr; gap: 16px; }

    /* Products */
    .products__grid { grid-template-columns: 1fr; }
    .product-card--featured { border: none; }
    .product-card--featured::before { display: none; }

    /* Advantages */
    .advantages__grid { grid-template-columns: 1fr; }

    /* About */
    .about__inner { grid-template-columns: 1fr; }
    .about__img-wrap { height: 350px; }
    .about__badge { bottom: -15px; right: 15px; padding: 18px; }
    .about__badge strong { font-size: 28px; }

    /* Breed */
    .breed__specs { flex-direction: column; gap: 24px; padding: 28px 24px; }
    .breed__spec-divider { width: 60px; height: 1px; margin: 0;}
    .breed__traits { grid-template-columns: repeat(2, 1fr); }

    /* Order */
    .order__form { padding: 28px 20px; }
    .order__fields { grid-template-columns: 1fr; }
    .order__item { grid-template-columns: 1fr auto; }
    .order__item .form-group:first-child { grid-column: 1 / -1; }
    .order br { display: block; }

    /* Contact */
    .contact__inner { grid-template-columns: 1fr; }
    .contact__map iframe { height: 300px; }

    /* Footer */
    .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 460px) {
    .hero__title { font-size: 26px; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; }
    .section-title { font-size: 26px; }
    .breed__traits { grid-template-columns: 1fr; }
    .breed__spec {flex-direction: column;}
    .breed__spec span {font-size: 15px;}
    .product-card__body {padding: 28px 12px;}
    .product-card__price span {font-size: 15px;}

}
