﻿:root {
            --primary: #A8DADC; 
            --secondary: #F1FAEE; 
            --accent: #E63946; 
            --wool-white: #FEFEFE; 
            --cloud-blue: #457B9D; 
            --bg-dark: #0a0a0f;
            --bg-dark-lighter: #15151d;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #81B29A;
            --border: rgba(168, 218, 220, 0.2);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 35px 60px -15px rgba(168, 218, 220, 0.4);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
body { 
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text); 
            background: linear-gradient(135deg, #0a0e14 0%, #1a1e28 100%);
            line-height: 1.6; 
            overflow-x: hidden; 
            width: 100%;
            min-height: 100vh;
        }
header {
            position: fixed; 
            top: 0; 
            width: 100%; 
            z-index: 2000;
            background: rgba(10, 10, 15, 0.95); 
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-bottom: 1px solid var(--border); 
            padding: 12px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }
.dropdown {
            position: absolute; 
            top: 100%;
            left: 0;
            width: 240px;
            background: rgba(21, 21, 29, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 12px; 
            padding: 15px 0; 
            opacity: 0; 
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            border: 1px solid var(--border); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }
.dropdown a:hover { 
            color: var(--primary); 
            background: rgba(168, 218, 220, 0.1);
        }
.soc-group a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(168, 218, 220, 0.1);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
.soc-group a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(168, 218, 220, 0.4);
        }
.btn-consult { 
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            color: white; 
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 800; 
            font-size: 0.75rem;
            border: none; 
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(168, 218, 220, 0.3);
        }
.btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(168, 218, 220, 0.5);
        }
@media (max-width: 1024px) {
            header { 
                padding: 10px 0; 
            }
            
            .header-inner {
                flex-direction: column;
                gap: 10px;
            }
            
            .logo-row {
                gap: 15px;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .mobile-phone-top {
                display: block !important;
                font-size: 0.9rem;
                font-weight: 800;
                color: var(--text);
            }
            
            .header-bottom-mobile {
                width: 100%;
                display: flex !important;
                justify-content: center;
                padding: 10px 0;
                border-top: 1px solid var(--border);
                margin-top: 10px;
            }
            
            .header-right {
                display: none !important;
            }
        }
.hero-sheep-section { 
            background: linear-gradient(180deg, #0a0e14 0%, #1a2530 100%); 
            padding: 80px 0 100px; 
            position: relative; 
            overflow: hidden; 
            min-height: 75vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
.hero-sheep-section::before { 
            content: ''; 
            position: absolute; 
            top: -50%; 
            left: 50%; 
            width: 150%; 
            height: 150%; 
            background: 
                radial-gradient(circle at 30% 40%, rgba(168, 218, 220, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(241, 250, 238, 0.12) 0%, transparent 50%);
            transform: translateX(-50%);
            animation: pulseClouds 8s ease-in-out infinite; 
            pointer-events: none; 
        }
@keyframes pulseClouds {
            0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
        }
.floating-clouds-sheep {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.cloud-sheep {
            position: absolute;
            background: rgba(241, 250, 238, 0.25);
            border-radius: 50%;
            opacity: 0.35;
            animation: floatCloudSheep 15s ease-in-out infinite;
            filter: blur(2px);
        }
.cloud-sheep:nth-child(1) { 
            top: 8%; 
            left: 12%; 
            width: 120px; 
            height: 60px; 
            animation-delay: 0s; 
        }
.cloud-sheep:nth-child(2) { 
            top: 55%; 
            left: 78%; 
            width: 150px; 
            height: 75px; 
            animation-delay: 4s; 
            background: rgba(168, 218, 220, 0.3);
        }
.cloud-sheep:nth-child(3) { 
            top: 28%; 
            left: 88%; 
            width: 100px; 
            height: 50px; 
            animation-delay: 8s; 
        }
.cloud-sheep:nth-child(4) { 
            top: 75%; 
            left: 18%; 
            width: 130px; 
            height: 65px; 
            animation-delay: 12s; 
        }
.cloud-sheep:nth-child(5) { 
            top: 18%; 
            left: 55%; 
            width: 110px; 
            height: 55px; 
            animation-delay: 2s; 
        }
@keyframes floatCloudSheep {
            0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.35; }
            25% { transform: translateY(-45px) translateX(30px) scale(1.15); opacity: 0.6; }
            50% { transform: translateY(-25px) translateX(-20px) scale(0.95); opacity: 0.25; }
            75% { transform: translateY(-40px) translateX(15px) scale(1.08); opacity: 0.5; }
        }
.hero-sheep-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }
.hero-sheep-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 10px;
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.25) 0%, rgba(241, 250, 238, 0.25) 100%); 
            border: 2px solid var(--primary);
            color: white; 
            padding: 12px 28px; 
            border-radius: 50px; 
            font-weight: 800; 
            font-size: 0.9rem; 
            margin-bottom: 30px; 
            text-transform: uppercase; 
            box-shadow: 0 10px 40px rgba(168, 218, 220, 0.5); 
            animation: badgePulseSheep 3s ease-in-out infinite;
        }
@keyframes badgePulseSheep {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(168, 218, 220, 0.5); }
            50% { transform: scale(1.08); box-shadow: 0 15px 50px rgba(241, 250, 238, 0.7); }
        }
.hero-sheep-title{ 
            font-family:'Manrope',sans-serif; 
            font-size: clamp(3.5rem, 9vw, 7rem); 
            font-weight:800; 
            line-height: 1; 
            margin-bottom: 30px; 
            text-shadow: 0 8px 30px rgba(168, 218, 220, 0.6);
            letter-spacing: -2px;
        }
.sheep-gradient-text { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--cloud-blue) 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            animation: sheepGradientShift 6s ease infinite;
            background-size: 300% 300%;
        }
@keyframes sheepGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.hero-sheep-subtitle { 
            font-size: clamp(1.15rem, 2.8vw, 1.5rem); 
            color: rgba(255,255,255,0.75); 
            max-width: 850px; 
            margin: 0 auto 50px; 
            line-height: 1.7;
        }
.hero-sheep-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 25px;
            max-width: 800px;
            margin: 60px auto 0;
        }
.sheep-stat-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(168, 218, 220, 0.2);
            border-radius: 25px;
            padding: 30px 25px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
.sheep-stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168, 218, 220, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: 0.6s;
        }
.sheep-stat-box:hover::before {
            opacity: 1;
            transform: scale(1.2);
        }
.sheep-stat-box:hover {
            transform: translateY(-12px);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(168, 218, 220, 0.4);
            background: rgba(168, 218, 220, 0.12);
        }
.sheep-stat-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
            filter: drop-shadow(0 5px 15px rgba(168, 218, 220, 0.5));
        }
.sheep-stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 8px;
            text-shadow: 0 3px 15px rgba(168, 218, 220, 0.5);
        }
.sheep-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 600;
        }
.sheep-filters-bar { 
            background: linear-gradient(135deg, rgba(15, 15, 20, 0.98) 0%, rgba(21, 21, 29, 0.98) 100%); 
            backdrop-filter: blur(30px); 
            border-bottom: 2px solid var(--primary); 
            position: sticky; 
            top: 74px; 
            z-index: 1500; 
            padding: 20px 0; 
            box-shadow: 0 5px 30px rgba(168, 218, 220, 0.3);
        }
@media (max-width: 1024px) { 
            .sheep-filters-bar { 
                top: 134px; 
                padding: 15px 0;
            } 
        }
.sheep-filter-nav { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            padding-bottom: 5px; 
            scrollbar-width: none; 
            justify-content: center; 
        }
.sheep-filter-nav::-webkit-scrollbar {
            display: none;
        }
.sheep-filter-btn { 
            white-space: nowrap; 
            color: rgba(255,255,255,0.7); 
            font-size: 0.9rem; 
            font-weight: 700; 
            padding: 12px 28px; 
            border-radius: 50px; 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(168, 218, 220, 0.2); 
            transition: all 0.3s ease; 
            cursor: pointer; 
            display: flex;
            align-items: center;
            gap: 8px;
        }
.sheep-filter-btn:hover { 
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.25) 0%, rgba(241, 250, 238, 0.25) 100%); 
            border-color: var(--primary); 
            color: white;
            transform: translateY(-2px); 
            box-shadow: 0 5px 20px rgba(168, 218, 220, 0.5); 
        }
.sheep-filter-btn.active { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%); 
            color: #fff; 
            border-color: transparent; 
            font-weight: 800;
            box-shadow: 0 8px 30px rgba(168, 218, 220, 0.6); 
        }
.sheep-smart-filters { 
            padding: 20px 0; 
            border-bottom: 1px solid rgba(168, 218, 220, 0.15); 
            background: rgba(10, 10, 15, 0.5); 
        }
.sheep-sf-scroll { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            justify-content: center; 
            padding-bottom: 5px; 
        }
.sheep-sf-scroll::-webkit-scrollbar {
            display: none;
        }
.sheep-sf-btn { 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(168, 218, 220, 0.2); 
            color: rgba(255,255,255,0.7); 
            padding: 10px 22px; 
            border-radius: 50px; 
            font-size: 0.85rem; 
            font-weight: 600; 
            cursor: pointer; 
            transition: 0.3s; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            white-space: nowrap; 
        }
.sheep-sf-btn:hover { 
            background: rgba(168, 218, 220, 0.2); 
            border-color: var(--primary); 
            color: var(--primary); 
        }
.sheep-sf-btn.active {
            background: linear-gradient(135deg, var(--cloud-blue) 0%, var(--primary) 100%);
            color: white;
            border-color: transparent;
            font-weight: 800;
        }
.sheep-catalog-section { 
            padding: 80px 0; 
            position: relative;
        }
.sheep-catalog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 25%, rgba(168, 218, 220, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(241, 250, 238, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
.sheep-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); 
            gap: 40px; 
            position: relative; 
            z-index: 2;
            justify-content: center;
        }
@media (min-width: 768px) {
            .sheep-grid[data-count="1"],
            .sheep-grid[data-count="2"],
            .sheep-grid[data-count="3"],
            .sheep-grid[data-count="4"] {
                justify-content: center;
                grid-template-columns: repeat(auto-fit, minmax(380px, 420px));
            }
        }
.sheep-card { 
            display: flex; 
            flex-direction: column; 
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%); 
            border: 1px solid rgba(168, 218, 220, 0.15); 
            border-radius: 30px; 
            overflow: hidden; 
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
            position: relative; 
            cursor: pointer; 
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
.sheep-card:hover { 
            transform: translateY(-18px) scale(1.03); 
            border-color: var(--primary); 
            box-shadow: 0 30px 60px rgba(168, 218, 220, 0.5); 
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.1) 0%, rgba(241, 250, 238, 0.08) 100%); 
        }
.sheep-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(168, 218, 220, 0.15) 50%, transparent 70%);
            opacity: 0;
            transition: 0.9s;
            pointer-events: none;
        }
.sheep-card:hover::before {
            opacity: 1;
            transform: rotate(45deg);
        }
.sheep-img-wrapper { 
            height: 400px; 
            position: relative; 
            overflow: hidden; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
        }
.sheep-img { 
            width: 100%; 
            max-width: 100%; 
            height: 100%; 
            object-fit: cover; 
            object-position: center; 
            transition: 0.9s cubic-bezier(0.4, 0, 0.2, 1); 
            filter: brightness(0.95) saturate(1.1);
        }
.sheep-card:hover .sheep-img { 
            transform: scale(1.15); 
            filter: brightness(1.1) saturate(1.3);
        }
.sheep-badges { 
            position: absolute; 
            top: 20px; 
            left: 20px; 
            display: flex; 
            flex-direction: column; 
            gap: 10px; 
            z-index: 10; 
        }
.sheep-badge { 
            background: rgba(0, 0, 0, 0.75); 
            backdrop-filter: blur(10px); 
            color: white; 
            padding: 8px 16px; 
            border-radius: 12px; 
            font-size: 0.8rem; 
            font-weight: 700; 
            display: flex; 
            align-items: center; 
            gap: 7px; 
            border: 1px solid rgba(168, 218, 220, 0.3);
            transform: translateX(-10px);
            opacity: 0;
            animation: badgeSlideIn 0.6s ease forwards;
        }
@keyframes badgeSlideIn {
            to { transform: translateX(0); opacity: 1; }
        }
.sheep-badge:nth-child(2) { animation-delay: 0.15s; }
.sheep-badge:nth-child(3) { animation-delay: 0.3s; }
.sheep-badge.premium { border-color: var(--accent); color: var(--accent); }
.sheep-badge.rare { border-color: var(--cloud-blue); color: var(--cloud-blue); }
.sheep-badge.popular { border-color: var(--primary); color: var(--primary); }
.sheep-qv-btn { 
            position: absolute; 
            top: 20px; 
            right: 20px; 
            width: 50px; 
            height: 50px; 
            background: rgba(0,0,0,0.85); 
            backdrop-filter: blur(12px);
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            z-index: 10; 
            transition: 0.3s; 
            font-size: 1.4rem; 
            border: 2px solid rgba(168, 218, 220, 0.6); 
            opacity: 0; 
            transform: translateY(-15px) scale(0.8);
        }
.sheep-card:hover .sheep-qv-btn { 
            opacity: 1; 
            transform: translateY(0) scale(1);
        }
.sheep-qv-btn:hover { 
            background: var(--primary); 
            border-color: var(--cloud-blue); 
            color: #000; 
            transform: scale(1.2) rotate(12deg); 
            box-shadow: 0 8px 25px rgba(168, 218, 220, 0.7);
        }
.sheep-content { 
            padding: 35px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            gap: 22px;
        }
.sheep-name { 
            font-family:'Manrope',sans-serif; 
            font-size: 1.5rem; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 8px; 
            line-height: 1.3; 
            transition: 0.3s;
        }
.sheep-card:hover .sheep-name {
            color: var(--primary);
        }
.sheep-breed-tag {
            display: inline-block;
            background: rgba(168, 218, 220, 0.15);
            border: 1px solid rgba(168, 218, 220, 0.3);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 18px;
        }
.sheep-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            padding: 25px;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 18px;
            border: 1px solid rgba(168, 218, 220, 0.08);
            position: relative;
            overflow: hidden;
            transition: 0.4s;
        }
.sheep-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(168, 218, 220, 0.12), transparent);
            transition: 0.9s;
        }
.sheep-card:hover .sheep-stats::before {
            left: 100%;
        }
.sheep-card:hover .sheep-stats {
            background: rgba(168, 218, 220, 0.1);
            border-color: rgba(168, 218, 220, 0.35);
            box-shadow: inset 0 0 25px rgba(168, 218, 220, 0.15);
        }
.sheep-stat { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 10px; 
            position: relative;
            z-index: 1;
        }
.sheep-stat-icon {
            font-size: 1.7rem;
            transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: grayscale(0.2);
        }
.sheep-card:hover .sheep-stat-icon {
            transform: scale(1.4) rotate(15deg);
            filter: grayscale(0) drop-shadow(0 0 10px var(--primary));
        }
.sheep-card:hover .sheep-stat:nth-child(1) .sheep-stat-icon {
            animation: iconBounceSheep 0.7s ease;
        }
.sheep-card:hover .sheep-stat:nth-child(2) .sheep-stat-icon {
            animation: iconBounceSheep 0.7s 0.12s ease;
        }
.sheep-card:hover .sheep-stat:nth-child(3) .sheep-stat-icon {
            animation: iconBounceSheep 0.7s 0.24s ease;
        }
@keyframes iconBounceSheep {
            0%, 100% { transform: scale(1.4) rotate(15deg); }
            50% { transform: scale(1.65) rotate(-15deg); }
        }
.sheep-stat-dots { 
            display: flex; 
            gap: 5px; 
        }
.sheep-dot { 
            width: 8px; 
            height: 8px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.2); 
            transition: 0.3s; 
            box-shadow: inset 0 0 4px rgba(0,0,0,0.5);
        }
.sheep-dot.fill { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%); 
            box-shadow: 0 0 10px var(--primary); 
            animation: dotGlowSheep 1.6s infinite alternate;
        }
@keyframes dotGlowSheep {
            0% { box-shadow: 0 0 6px var(--primary); }
            100% { box-shadow: 0 0 18px var(--primary), 0 0 30px var(--cloud-blue); }
        }
.sheep-card:hover .sheep-dot.fill {
            transform: scale(1.3);
        }
.sheep-stat-label { 
            font-size: 0.72rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            font-weight: 700; 
            letter-spacing: 0.6px;
            margin-top: 4px; 
        }
.sheep-size-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 18px;
            background: rgba(241, 250, 238, 0.12);
            border: 1px solid rgba(241, 250, 238, 0.35);
            border-radius: 14px;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--secondary);
            transition: 0.3s;
        }
.sheep-card:hover .sheep-size-badge {
            background: rgba(241, 250, 238, 0.25);
            border-color: var(--secondary);
            transform: scale(1.06);
        }
.sheep-footer { 
            margin-top: auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-top: 1px solid rgba(168, 218, 220, 0.15); 
            padding-top: 22px; 
        }
.sheep-price-block {
            flex: 1;
        }
.sheep-price-label { 
            font-size: 0.78rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            display: block; 
            margin-bottom: 6px;
        }
.sheep-price { 
            font-size: 1.6rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.sheep-arrow { 
            width: 45px; 
            height: 45px; 
            border-radius: 50%; 
            background: rgba(168, 218, 220, 0.18); 
            border: 2px solid var(--primary); 
            color: var(--primary); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
            cursor: pointer; 
            font-size: 1.3rem;
        }
.sheep-card:hover .sheep-arrow { 
            background: var(--primary); 
            color: #000; 
            transform: rotate(-45deg) scale(1.25); 
            box-shadow: 0 6px 25px rgba(168, 218, 220, 0.7);
        }
.sheep-load-more { 
            display: flex;
            justify-content: center;
            margin-top: 70px;
        }
.btn-sheep-more { 
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.12) 0%, rgba(241, 250, 238, 0.12) 100%); 
            border: 2px solid var(--primary); 
            color: #fff; 
            padding: 20px 55px; 
            border-radius: 50px; 
            font-size: 1.05rem; 
            font-weight: 700; 
            cursor: pointer; 
            transition: 0.4s; 
            display: inline-flex;
            align-items: center;
            gap: 14px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
.btn-sheep-more:hover { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%); 
            color: #fff; 
            border-color: var(--cloud-blue);
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(168, 218, 220, 0.6);
        }
.why-sheep-section {
            padding: 110px 0;
            background: linear-gradient(135deg, #0a0e14 0%, #1a2530 100%);
            position: relative;
            overflow: hidden;
        }
.why-sheep-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 650px;
            height: 650px;
            background: radial-gradient(circle, rgba(168, 218, 220, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 9s ease-in-out infinite;
        }
.why-sheep-section::after {
            content: '';
            position: absolute;
            bottom: -180px;
            left: -180px;
            width: 750px;
            height: 750px;
            background: radial-gradient(circle, rgba(241, 250, 238, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 11s ease-in-out infinite reverse;
        }
@keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.15); opacity: 1; }
        }
.why-sheep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.why-sheep-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            color: white;
            margin-bottom: 35px;
            line-height: 1.1;
        }
.why-sheep-content h2 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.why-sheep-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
.why-sheep-item {
            display: flex;
            gap: 22px;
            padding: 28px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(168, 218, 220, 0.15);
            border-radius: 22px;
            transition: 0.4s;
            cursor: default;
        }
.why-sheep-item:hover {
            background: rgba(168, 218, 220, 0.1);
            border-color: var(--primary);
            transform: translateX(18px);
            box-shadow: -6px 0 25px rgba(168, 218, 220, 0.35);
        }
.why-sheep-icon {
            font-size: 2.8rem;
            min-width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(168, 218, 220, 0.12);
            border-radius: 18px;
            border: 2px solid rgba(168, 218, 220, 0.35);
            transition: 0.4s;
        }
.why-sheep-item:hover .why-sheep-icon {
            transform: scale(1.2) rotate(12deg);
            background: var(--primary);
            border-color: var(--cloud-blue);
            box-shadow: 0 6px 25px rgba(168, 218, 220, 0.6);
        }
.why-sheep-text h4 {
            font-size: 1.25rem;
            color: white;
            margin-bottom: 10px;
            font-weight: 700;
        }
.why-sheep-text p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            font-size: 0.98rem;
        }
.why-sheep-image {
            position: relative;
        }
.why-sheep-image img {
            width: 100%;
            height: auto;
            border-radius: 35px;
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
            border: 3px solid rgba(168, 218, 220, 0.35);
            transition: 0.6s;
        }
.why-sheep-image:hover img {
            transform: scale(1.06) rotate(2deg);
            border-color: var(--primary);
            box-shadow: 0 45px 110px rgba(168, 218, 220, 0.6);
        }
.floating-badge-sheep {
            position: absolute;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(12px);
            padding: 18px 24px;
            border-radius: 18px;
            border: 2px solid var(--cloud-blue);
            color: white;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
            animation: floatBadgeSheep 3.5s ease-in-out infinite;
        }
.floating-badge-sheep:nth-child(1) {
            top: 12%;
            right: -25px;
            animation-delay: 0s;
        }
.floating-badge-sheep:nth-child(2) {
            bottom: 18%;
            left: -35px;
            animation-delay: 1.2s;
            border-color: var(--primary);
        }
@keyframes floatBadgeSheep {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-18px); }
        }
@media (max-width: 900px) {
            .why-sheep-grid { 
                grid-template-columns: 1fr; 
                gap: 45px;
            }
            .why-sheep-image { 
                order: -1; 
            }
            .floating-badge-sheep {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 12px;
            }
        }
.sheep-price-section {
            padding: 110px 0;
            background: linear-gradient(135deg, #0a0e14 0%, #1a2530 100%);
            position: relative;
            overflow: hidden;
        }
.sheep-price-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(90deg, rgba(168, 218, 220, 0.04) 0px, transparent 2px, transparent 45px),
                repeating-linear-gradient(0deg, rgba(168, 218, 220, 0.04) 0px, transparent 2px, transparent 45px);
            opacity: 0.35;
            pointer-events: none;
        }
.sheep-price-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 2;
        }
.sheep-price-badge {
            display: inline-block;
            background: rgba(168, 218, 220, 0.12);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 25px;
        }
.sheep-price-title {
            font-family: 'Playfair Display';
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            color: white;
            margin-bottom: 20px;
        }
.sheep-price-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.sheep-price-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.65);
            max-width: 750px;
            margin: 0 auto;
        }
.sheep-price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 2;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }
.sheep-price-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(168, 218, 220, 0.2);
            border-radius: 28px;
            padding: 45px 35px;
            text-align: center;
            transition: 0.6s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
.sheep-price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(168, 218, 220, 0.12), transparent);
            transform: rotate(45deg);
            transition: 0.9s;
        }
.sheep-price-card:hover::before {
            left: 100%;
        }
.sheep-price-card:hover {
            transform: translateY(-18px);
            border-color: var(--primary);
            background: rgba(168, 218, 220, 0.1);
            box-shadow: 0 30px 60px rgba(168, 218, 220, 0.4);
        }
.sheep-price-card.popular {
            border: 2px solid var(--accent);
            background: rgba(230, 57, 70, 0.06);
        }
.sheep-price-card.popular::after {
            content: '⭐ ПОПУЛЯРНАЯ';
            position: absolute;
            top: 25px;
            right: -40px;
            background: var(--accent);
            color: white;
            padding: 6px 45px;
            font-size: 0.72rem;
            font-weight: 800;
            transform: rotate(45deg);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
        }
.sheep-price-emoji {
            font-size: 4.5rem;
            display: block;
            margin-bottom: 25px;
            animation: bounceSheep 2.5s ease-in-out infinite;
        }
@keyframes bounceSheep {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
.sheep-price-card h3{
            font-size: 1.6rem;
            color: white;
            margin-bottom: 12px;
            font-weight:800;
        }
.sheep-price-card .breed-type {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            margin-bottom: 28px;
        }
.sheep-price-value {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 28px;
        }
.sheep-price-features {
            list-style: none;
            margin: 28px 0;
            text-align: left;
        }
.sheep-price-features li {
            padding: 12px 0;
            color: rgba(255, 255, 255, 0.72);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }
.sheep-price-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.3rem;
        }
.btn-sheep-order {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            border: none;
            border-radius: 14px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.95rem;
            letter-spacing: 1.2px;
            position: relative;
            z-index: 10;
            pointer-events: auto;
        }
.btn-sheep-order:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(168, 218, 220, 0.6);
        }
.sheep-quiz-section {
            padding: 110px 0;
            background: radial-gradient(circle at 50% 50%, #15151d 0%, #0a0a0f 100%);
            position: relative;
            overflow: hidden;
        }
.sheep-quiz-section::before {
            content: '☁️';
            position: absolute;
            font-size: 450px;
            opacity: 0.025;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: rotateSun 60s linear infinite;
        }
@keyframes rotateSun {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
.sheep-quiz-container {
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.12) 0%, rgba(241, 250, 238, 0.08) 100%);
            backdrop-filter: blur(25px);
            border: 2px solid rgba(168, 218, 220, 0.35);
            border-radius: 40px;
            padding: 70px 55px;
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }
.sheep-quiz-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--cloud-blue) 100%);
            width: 0%;
            transition: width 0.6s ease;
            box-shadow: 0 0 20px var(--primary);
        }
.sheep-quiz-header {
            text-align: center;
            margin-bottom: 55px;
        }
.sheep-quiz-step-indicator {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 25px;
        }
.sheep-quiz-question {
            font-family: 'Playfair Display';
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            color: white;
            margin-bottom: 18px;
            line-height: 1.2;
        }
.sheep-quiz-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.65);
        }
.sheep-quiz-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 25px;
            margin-top: 45px;
        }
.sheep-quiz-option {
            background: rgba(255, 255, 255, 0.04);
            border: 2px solid rgba(168, 218, 220, 0.2);
            border-radius: 24px;
            padding: 35px 28px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 18px;
            position: relative;
            overflow: hidden;
        }
.sheep-quiz-option::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(168, 218, 220, 0.25) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.7s, height 0.7s;
        }
.sheep-quiz-option:hover::before {
            width: 350px;
            height: 350px;
        }
.sheep-quiz-option:hover {
            transform: translateY(-12px);
            border-color: var(--primary);
            background: rgba(168, 218, 220, 0.12);
            box-shadow: 0 18px 45px rgba(168, 218, 220, 0.4);
        }
.sheep-quiz-option-icon {
            font-size: 4rem;
            position: relative;
            z-index: 1;
            transition: 0.5s;
        }
.sheep-quiz-option:hover .sheep-quiz-option-icon {
            transform: scale(1.25) rotate(12deg);
        }
.sheep-quiz-option-text {
            position: relative;
            z-index: 1;
        }
.sheep-quiz-option-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }
.sheep-quiz-option-desc {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
        }
.sheep-quiz-loader {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 450px;
        }
.sheep-loader-spinner {
            width: 110px;
            height: 110px;
            border: 6px solid rgba(255, 255, 255, 0.12);
            border-top: 6px solid var(--primary);
            border-right: 6px solid var(--cloud-blue);
            border-radius: 50%;
            animation: spin 1.8s linear infinite;
            margin-bottom: 35px;
        }
@keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
.sheep-loader-text {
            font-size: 1.4rem;
            color: white;
            font-weight: 700;
            margin-bottom: 18px;
        }
.sheep-loader-subtext {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.5);
        }
.sheep-quiz-result {
            display: none;
            text-align: center;
            animation: fadeInSheep 0.9s ease;
        }
@keyframes fadeInSheep {
            from { opacity: 0; transform: translateY(35px); }
            to { opacity: 1; transform: translateY(0); }
        }
.sheep-result-match {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 28px;
            letter-spacing: 1.2px;
        }
.sheep-result-title {
            font-family: 'Playfair Display';
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            color: white;
            margin-bottom: 35px;
        }
.sheep-result-img {
            width: 280px;
            height: 280px;
            object-fit: cover;
            object-position: center;
            border-radius: 50%;
            border: 5px solid var(--primary);
            margin: 0 auto 35px;
            box-shadow: 0 0 60px rgba(168, 218, 220, 0.6);
            animation: resultImgAppearSheep 1.2s ease;
        }
@keyframes resultImgAppearSheep {
            from { transform: scale(0.5) rotate(-12deg); opacity: 0; }
            to { transform: scale(1) rotate(0deg); opacity: 1; }
        }
.sheep-result-desc {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 45px;
        }
.btn-sheep-retry {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(168, 218, 220, 0.25);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: 0.3s;
            margin-bottom: 35px;
        }
.btn-sheep-retry:hover {
            background: rgba(168, 218, 220, 0.18);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-4px);
        }
.sheep-retry-icon {
            display: inline-block;
            transition: transform 0.6s ease;
        }
.btn-sheep-retry:hover .sheep-retry-icon {
            transform: rotate(180deg);
        }
.sheep-quiz-form {
            background: rgba(255, 255, 255, 0.06);
            padding: 40px;
            border-radius: 24px;
            max-width: 550px;
            margin: 0 auto;
            border: 1px solid rgba(168, 218, 220, 0.2);
        }
.sheep-form-title {
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 25px;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1.2px;
        }
.sheep-quiz-input {
            width: 100%;
            padding: 18px 24px;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(168, 218, 220, 0.25);
            border-radius: 14px;
            color: white;
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: center;
            outline: none;
            transition: 0.3s;
        }
.sheep-quiz-input:focus {
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 20px rgba(168, 218, 220, 0.35);
        }
.sheep-quiz-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
.btn-sheep-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            border: none;
            border-radius: 14px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1rem;
            letter-spacing: 1.2px;
        }
.btn-sheep-submit:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(168, 218, 220, 0.6);
        }
.sheep-form-note {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 18px;
            text-align: center;
        }
.sheep-quiz-step {
            display: none;
        }
.sheep-quiz-step.active {
            display: block;
            animation: slideInSheep 0.6s ease;
        }
@keyframes slideInSheep {
            from { opacity: 0; transform: translateX(-35px); }
            to { opacity: 1; transform: translateX(0); }
        }
.sheep-care-section {
            padding: 110px 0;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.8) 0%, rgba(26, 37, 48, 0.9) 100%);
            position: relative;
            overflow: hidden;
        }
.sheep-care-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 70px;
            align-items: center;
        }
.sheep-care-image {
            position: relative;
        }
.sheep-care-image img {
            width: 100%;
            height: auto;
            border-radius: 35px;
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
            border: 3px solid rgba(168, 218, 220, 0.35);
        }
.expert-badge-sheep {
            position: absolute;
            background: rgba(0, 0, 0, 0.88);
            backdrop-filter: blur(12px);
            padding: 22px 28px;
            border-radius: 22px;
            border: 2px solid var(--cloud-blue);
            color: white;
            font-weight: 700;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
        }
.expert-badge-sheep:nth-child(1) {
            top: 12%;
            right: -35px;
        }
.expert-badge-sheep:nth-child(2) {
            bottom: 18%;
            left: -45px;
            border-color: var(--primary);
        }
.expert-badge-sheep-icon {
            font-size: 2.2rem;
            display: block;
            margin-bottom: 8px;
        }
.expert-badge-sheep-text {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.8);
        }
.sheep-care-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            color: white;
            margin-bottom: 28px;
            line-height: 1.1;
        }
.sheep-care-content h2 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.sheep-care-intro {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.72);
            margin-bottom: 45px;
            line-height: 1.8;
        }
.sheep-care-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
.sheep-care-item {
            display: flex;
            gap: 24px;
            padding: 28px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--primary);
            border-radius: 18px;
            transition: 0.3s;
        }
.sheep-care-item:hover {
            background: rgba(168, 218, 220, 0.1);
            transform: translateX(12px);
            box-shadow: -6px 0 25px rgba(168, 218, 220, 0.25);
        }
.sheep-care-item-icon {
            font-size: 2.2rem;
            min-width: 55px;
        }
.sheep-care-item h4 {
            color: white;
            font-size: 1.15rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
.sheep-care-item p {
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.7;
            font-size: 0.98rem;
        }
@media (max-width: 900px) {
            .sheep-care-grid {
                grid-template-columns: 1fr;
            }
            .sheep-care-image {
                order: -1;
            }
            .expert-badge-sheep {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 12px;
            }
        }
.sheep-seo-section {
            padding: 110px 0;
            background: radial-gradient(circle at 50% 12%, #15151d 0%, #06060a 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(168, 218, 220, 0.25);
            border-bottom: 1px solid rgba(168, 218, 220, 0.25);
        }
.sheep-seo-grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(168, 218, 220, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168, 218, 220, 0.04) 1px, transparent 1px);
            background-size: 65px 65px;
            opacity: 0.45;
            pointer-events: none;
        }
.sheep-seo-content {
            max-width: 1050px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.sheep-faq-container {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(168, 218, 220, 0.25);
            border-radius: 35px;
            padding: 55px 50px;
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
            margin-bottom: 70px;
        }
.sheep-faq-title {
            font-family: 'Playfair Display';
            font-size: 2.8rem;
            color: white;
            text-align: center;
            margin-bottom: 45px;
        }
.sheep-faq-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.sheep-faq-item {
            border-bottom: 1px solid rgba(168, 218, 220, 0.15);
            padding: 28px 0;
            transition: 0.3s;
        }
.sheep-faq-item:last-child {
            border-bottom: none;
        }
.sheep-faq-question {
            font-weight: 700;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
            padding-right: 25px;
        }
.sheep-faq-question:hover {
            color: var(--primary);
        }
.sheep-faq-icon {
            font-size: 1.6rem;
            color: var(--primary);
            transition: 0.4s;
            min-width: 35px;
            text-align: center;
        }
.sheep-faq-item.active .sheep-faq-icon {
            transform: rotate(45deg);
            color: var(--cloud-blue);
        }
.sheep-faq-answer {
            color: rgba(255, 255, 255, 0.72);
            font-size: 1.05rem;
            line-height: 1.8;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s ease, padding 0.6s ease;
        }
.sheep-faq-item.active .sheep-faq-answer {
            max-height: 1200px;
            padding-top: 24px;
        }
.sheep-faq-item.active .sheep-faq-question {
            color: var(--primary);
        }
.sheep-seo-text {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(168, 218, 220, 0.08);
            border-radius: 28px;
            padding: 55px 50px;
        }
.sheep-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(168, 218, 220, 0.12);
            border: 1px solid var(--primary);
            padding: 12px 24px;
            border-radius: 50px;
            color: var(--primary);
            font-size: 0.88rem;
            font-weight: 700;
            margin-bottom: 35px;
            box-shadow: 0 0 25px rgba(168, 218, 220, 0.25);
        }
.sheep-seo-text h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            color: white;
            margin-bottom: 28px;
            line-height: 1.2;
        }
.sheep-seo-text h2 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.sheep-seo-description {
            color: rgba(255, 255, 255, 0.78);
            font-size: 1.08rem;
            line-height: 1.9;
        }
.sheep-seo-description p {
            margin-bottom: 24px;
        }
.sheep-seo-description strong {
            color: var(--accent);
            font-weight: 600;
        }
.sheep-seo-description ul {
            list-style: none;
            margin: 28px 0;
            padding-left: 12px;
        }
.sheep-seo-description li {
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
.sheep-seo-description li::before {
            content: '🐑';
            font-size: 1.3rem;
            flex-shrink: 0;
        }
.sheep-seo-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 45px;
            padding-top: 35px;
            border-top: 1px solid rgba(168, 218, 220, 0.08);
        }
.sheep-seo-tag {
            background: rgba(255, 255, 255, 0.04);
            padding: 10px 18px;
            border-radius: 12px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
            border: 1px solid rgba(168, 218, 220, 0.08);
            transition: 0.3s;
        }
.sheep-seo-tag:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(168, 218, 220, 0.08);
        }
footer { 
            padding: 100px 0 40px; 
            background: rgba(10, 10, 15, 0.8); 
            border-top: 1px solid var(--border); 
            margin-top: auto; 
            position: relative; 
            z-index: 10; 
        }
.f-contact i { 
            color: var(--primary); 
            font-size: 1.2rem; 
            font-style: normal; 
        }
.modal { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 10000; 
            background: rgba(0, 0, 0, 0.92); 
            backdrop-filter: blur(8px); 
            align-items: center; 
            justify-content: center; 
            padding: 0; 
            opacity: 0; 
            transition: opacity 0.3s ease; 
        }
.modal-box, .sheep-qv-box { 
            position: relative !important; 
            background: #111; 
            border: 1px solid var(--primary); 
            border-radius: 24px; 
            width: 950px; 
            max-width: 100%; 
            max-height: 90vh; 
            display: flex; 
            flex-direction: column; 
            overflow: hidden; 
            animation: zoomInSheep 0.4s ease; 
            box-shadow: 0 25px 60px rgba(0,0,0,0.9); 
        }
@keyframes zoomInSheep { 
            from { 
                opacity: 0; 
                transform: scale(0.92); 
            } 
            to { 
                opacity: 1; 
                transform: scale(1); 
            } 
        }
.form-box-styled { 
            max-width: 550px; 
            padding: 45px; 
        }
.modal-close { 
            position: absolute !important; 
            top: 22px !important; 
            right: 22px !important; 
            width: 48px !important; 
            height: 48px !important; 
            background: rgba(0,0,0,0.6) !important; 
            border: 2px solid var(--primary) !important; 
            border-radius: 50% !important; 
            color: white !important; 
            font-size: 26px !important; 
            display: flex !important; 
            align-items: center !important; 
            justify-content: center !important; 
            cursor: pointer !important; 
            z-index: 100 !important; 
            transition: var(--transition) !important;
        }
.modal-close:hover {
            background: var(--primary) !important;
            color: #000 !important;
            transform: rotate(90deg);
        }
.sheep-qv-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            height: 600px; 
            overflow: hidden; 
        }
.sheep-qv-image { 
            background: black; 
            width: 100%; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border-right: 1px solid rgba(168, 218, 220, 0.2); 
        }
.sheep-qv-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
.sheep-qv-scroll { 
            padding: 45px 45px 110px 45px; 
            overflow-y: auto; 
            display: flex; 
            flex-direction: column; 
        }
.sheep-qv-footer { 
            position: absolute; 
            bottom: 0; 
            right: 0; 
            width: 50%; 
            padding: 22px 45px; 
            background: rgba(17, 17, 17, 0.96); 
            border-top: 1px solid rgba(168, 218, 220, 0.2); 
            display: flex; 
            gap: 18px; 
            backdrop-filter: blur(8px); 
        }
.sheep-qv-header h2 { 
            font-family: 'Playfair Display'; 
            font-size: 2.4rem; 
            color: var(--primary); 
            margin-bottom: 28px; 
            line-height: 1; 
        }
.sheep-qv-price { 
            font-size: 2.8rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px; 
            font-family: 'Manrope'; 
        }
.btn-sheep-qv-order {
            flex: 1;
            padding: 16px; 
            background: linear-gradient(135deg, var(--primary), var(--cloud-blue)); 
            border: none; 
            border-radius: 14px; 
            color: white; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            transition: var(--transition);
        }
.btn-sheep-qv-order:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(168, 218, 220, 0.6);
        }
.sheep-qv-phone { 
            flex: 1; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--primary); 
            border-radius: 14px; 
            color: var(--primary); 
            font-weight: 700; 
            text-decoration: none; 
            transition: var(--transition);
        }
.sheep-qv-phone:hover {
            background: var(--primary);
            color: #000;
        }
@media (max-width: 900px) {
            .modal { 
                align-items: flex-end; 
                padding: 0; 
                background: rgba(0,0,0,0.85); 
            }
            
            .modal-box, .sheep-qv-box { 
                width: 100% !important; 
                margin: 0 !important; 
                border-radius: 28px 28px 0 0 !important; 
                border: none !important; 
                border-top: 1px solid var(--primary) !important; 
                height: 92vh !important; 
                max-height: 92vh !important; 
                animation: slideUpSheep 0.5s ease; 
            }
            
            @keyframes slideUpSheep { 
                from { 
                    transform: translateY(100%); 
                } 
                to { 
                    transform: translateY(0); 
                } 
            }
            
            .sheep-qv-grid { 
                display: flex; 
                flex-direction: column; 
                height: 100%; 
            }
            
            .sheep-qv-image { 
                height: 38vh; 
                min-height: 280px; 
                border-bottom: 1px solid rgba(168, 218, 220, 0.2); 
                border-right: none;
            }
            
            .sheep-qv-image img { 
                padding: 18px; 
                object-fit: contain !important; 
            }
            
            .sheep-qv-scroll { 
                flex-grow: 1; 
                padding: 25px 25px 0 25px; 
            }
            
            .sheep-qv-footer { 
                position: relative; 
                width: 100%; 
                padding: 18px 25px 28px 25px; 
                flex-direction: column; 
                gap: 12px; 
            }
        }
.catalog-modal { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 11000; 
            background: rgba(10, 10, 15, 0.98); 
            backdrop-filter: blur(18px); 
            flex-direction: column; 
            align-items: center; 
            justify-content: flex-start; 
            overflow-y: auto; 
            opacity: 0; 
            transition: opacity 0.3s ease; 
            padding-top: 70px; 
        }
.cat-modal-close { 
            position: fixed; 
            top: 25px; 
            right: 25px; 
            font-size: 2.8rem; 
            color: white; 
            cursor: pointer; 
            line-height: 1; 
            transition: 0.3s; 
            z-index: 100; 
            width: 55px; 
            height: 55px; 
            background: rgba(168, 218, 220, 0.12); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--primary); 
        }
.cat-modal-close:hover {
            background: var(--primary);
            color: #000;
            transform: rotate(90deg);
        }
.cat-modal-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
            gap: 24px; 
            width: 100%; 
            max-width: 1050px; 
            padding: 50px 25px 110px 25px; 
        }
.cat-modal-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-align: center; 
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.06) 0%, rgba(21, 21, 29, 0.5) 100%); 
            padding: 28px 18px; 
            border-radius: 24px; 
            border: 1px solid rgba(168, 218, 220, 0.25); 
            transition: all 0.3s ease; 
            cursor: pointer; 
            text-decoration: none; 
        }
.cat-modal-item:hover { 
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.25) 0%, rgba(241, 250, 238, 0.15) 100%); 
            border-color: var(--primary); 
            transform: translateY(-8px) scale(1.06); 
        }
.mobile-nav-overlay { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 12000; 
            background: rgba(0,0,0,0.6); 
            backdrop-filter: blur(8px); 
            opacity: 0; 
            transition: opacity 0.3s ease; 
        }
.mobile-nav-box { 
            position: absolute; 
            top: 0; 
            right: -100%; 
            width: 78%; 
            max-width: 340px; 
            height: 100%; 
            background: linear-gradient(180deg, #0f0f14 0%, #15151d 100%); 
            border-left: 2px solid var(--primary); 
            padding: 28px 24px; 
            display: flex; 
            flex-direction: column; 
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: -12px 0 60px rgba(0,0,0,0.9); 
            overflow-y: auto; 
        }
.mn-header { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 35px; 
            border-bottom: 1px solid rgba(168, 218, 220, 0.25); 
            padding-bottom: 18px; 
        }
.mn-close { 
            background: none; 
            border: none; 
            color: #fff; 
            font-size: 2.2rem; 
            cursor: pointer; 
        }
.mn-link-list { 
            list-style: none; 
            padding: 0; 
            display: flex; 
            flex-direction: column; 
            gap: 24px; 
        }
.mn-link-list a { 
            font-size: 1.15rem; 
            font-weight: 700; 
            color: #fff; 
            text-transform: uppercase; 
        }
.mn-contacts-center { 
            margin-bottom: 35px; 
        }
.mn-phone-large { 
            font-size: 1.5rem; 
            font-weight: 800; 
            color: #fff; 
            display: block; 
            margin-bottom: 18px; 
        }
.mn-socials { 
            display: flex; 
            gap: 18px; 
        }
.mn-badge-bottom { 
            margin-top: auto; 
            background: rgba(168, 218, 220, 0.12); 
            padding: 18px; 
            border-radius: 14px; 
            font-size: 0.78rem; 
            text-align: center; 
            color: var(--primary); 
            border: 1px solid var(--primary); 
        }
.btn-hero { 
            display: inline-block; 
            padding: 18px 35px; 
            border-radius: 50px; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            text-decoration: none; 
            border: none; 
            box-shadow: 0 12px 25px rgba(0,0,0,0.35); 
            transition: var(--transition);
        }
.btn-hero.sheep-cloud { 
            background: linear-gradient(135deg, var(--primary), var(--cloud-blue)); 
            color: white; 
        }
.btn-hero.sheep-gradient { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            color: white; 
        }
.btn-hero:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.45);
        }
.form-input { 
            width: 100%; 
            padding: 16px; 
            background: rgba(255,255,255,0.06); 
            border: 1px solid rgba(168, 218, 220, 0.2); 
            border-radius: 50px; 
            color: white; 
            margin-bottom: 18px; 
            outline: none; 
            transition: var(--transition);
        }
.form-input:focus { 
            border-color: var(--primary); 
            background: rgba(255,255,255,0.12);
            box-shadow: 0 0 20px rgba(168, 218, 220, 0.35);
        }
.scroll-to-top {
            position: fixed;
            bottom: 115px;
            right: 35px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--cloud-blue) 100%);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9000;
            box-shadow: 0 8px 25px rgba(168, 218, 220, 0.5);
            transition: 0.3s;
            color: white;
            font-size: 1.6rem;
        }
.scroll-to-top:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(168, 218, 220, 0.7);
        }
@media (max-width: 768px) {
            .scroll-to-top {
                bottom: 100px;
                right: 25px;
                width: 50px;
                height: 50px;
            }
        }
.mobile-tab { 
            position: fixed; 
            bottom: 20px;
            left: 15px;
            right: 15px;
            height: 75px;
            background: linear-gradient(135deg, rgba(10, 14, 20, 0.98) 0%, rgba(26, 37, 48, 0.98) 100%);
            backdrop-filter: blur(20px);
            border-radius: 50px;
            display: none;
            justify-content: space-around; 
            align-items: center; 
            z-index: 2500; 
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
            border: 1px solid var(--border);
        }
.tab-item { 
            text-align: center; 
            color: rgba(255,255,255,0.5); 
            font-size: 0.65rem;
            text-transform: uppercase; 
            font-weight: 700;
            transition: var(--transition);
        }
@media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }
        }
@media (max-width: 768px) {
            
            .hero-sheep-section {
                padding: 50px 0 60px;
                min-height: auto;
            }
            
            .hero-sheep-badge {
                font-size: 0.75rem;
                padding: 10px 20px;
            }
            
            .hero-sheep-title {
                font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
                margin-bottom: 20px;
            }
            
            .hero-sheep-subtitle {
                font-size: 1rem;
                margin-bottom: 35px;
            }
            
            .hero-sheep-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .sheep-stat-box {
                padding: 20px 15px;
            }
            
            .sheep-stat-icon {
                font-size: 2rem;
            }
            
            .sheep-stat-value {
                font-size: 1.8rem;
            }
            
            .sheep-stat-label {
                font-size: 0.75rem;
            }
            
            
            .sheep-filters-bar {
                padding: 12px 0;
            }
            
            .sheep-filter-nav,
            .sheep-sf-scroll {
                justify-content: flex-start;
                padding-left: 15px;
                padding-right: 15px;
                gap: 10px;
            }
            
            .sheep-filter-btn {
                padding: 10px 18px;
                font-size: 0.8rem;
                white-space: nowrap;
            }
            
            .sheep-sf-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
            
            
            .sheep-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            
            .sheep-card {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .sheep-img-wrapper {
                height: 320px;
            }
            
            .sheep-content {
                padding: 25px 20px;
                gap: 18px;
            }
            
            .sheep-name {
                font-size: 1.3rem;
            }
            
            .sheep-breed-tag {
                font-size: 0.75rem;
            }
            
            .sheep-stats {
                padding: 20px 15px;
                gap: 12px;
            }
            
            .sheep-stat-icon {
                font-size: 1.5rem;
            }
            
            .sheep-stat-dots {
                gap: 3px;
            }
            
            .sheep-dot {
                width: 6px;
                height: 6px;
            }
            
            .sheep-stat-label {
                font-size: 0.65rem;
            }
            
            .sheep-size-badge {
                padding: 10px 15px;
                font-size: 0.8rem;
            }
            
            .sheep-price {
                font-size: 1.4rem;
            }
            
            .sheep-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            
            .why-sheep-section,
            .sheep-price-section,
            .sheep-quiz-section,
            .sheep-care-section,
            .sheep-seo-section {
                padding: 60px 0;
            }
            
            .why-sheep-grid,
            .sheep-care-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .why-sheep-content h2,
            .sheep-price-title,
            .sheep-care-content h2,
            .sheep-seo-text h2 {
                font-size: clamp(2rem, 8vw, 2.8rem) !important;
                text-align: center;
            }
            
            .sheep-price-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .sheep-quiz-container {
                padding: 40px 20px;
            }
            
            .sheep-quiz-question {
                font-size: clamp(1.5rem, 6vw, 2rem) !important;
            }
            
            .sheep-quiz-options {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .sheep-faq-container,
            .sheep-seo-text {
                padding: 35px 20px;
            }
        }
@media (max-width: 480px) {
            .hero-sheep-title {
                font-size: 2.2rem !important;
            }
            
            .hero-sheep-stats {
                grid-template-columns: 1fr;
            }
            
            .cat-modal-grid {
                grid-template-columns: 1fr;
            }
        }