/* ==========================================
   OceanFresh - Стили интернет-магазина морепродуктов
   ========================================== */

/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   Шапка сайта
   ========================================== */

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo h2 {
    font-size: 28px;
    color: #0066cc;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: #0066cc;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0066cc;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-size: 18px;
    font-weight: 600;
    color: #0066cc;
}

.btn-order {
    padding: 10px 20px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-order:hover {
    background: #004499;
}

/* ==========================================
   Хлебные крошки
   ========================================== */

.breadcrumbs {
    padding: 15px 0;
    background: #f8f9fa;
    font-size: 14px;
}

.breadcrumbs a {
    color: #0066cc;
}

.breadcrumbs span {
    color: #666;
}

/* ==========================================
   Главный баннер
   ========================================== */

.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.benefit-icon {
    font-size: 24px;
    color: #4CAF50;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #0066cc;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ==========================================
   Секции
   ========================================== */

section {
    padding: 60px 0;
}

section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #222;
}

.page-header {
    text-align: center;
    padding: 40px 0;
    background: #f8f9fa;
}

.page-header h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   Категории товаров
   ========================================== */

.categories {
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-image {
    margin-bottom: 20px;
}

.emoji {
    font-size: 60px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-link {
    color: #0066cc;
    font-weight: 600;
    font-size: 16px;
}

.btn-link:hover {
    color: #004499;
}

/* ==========================================
   Преимущества
   ========================================== */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
}

.advantage-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.advantage-item p {
    color: #666;
    margin-bottom: 15px;
}

.advantage-item a {
    font-size: 14px;
}

/* ==========================================
   Как заказать
   ========================================== */

.how-to-order {
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-item p {
    color: #666;
}

/* ==========================================
   Отзывы
   ========================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.review-rating {
    color: #FFB800;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    color: #666;
    font-weight: 600;
}

/* ==========================================
   Каталог товаров
   ========================================== */

.catalog-section {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.catalog-section:last-of-type {
    border-bottom: none;
}

.catalog-section h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 30px;
    color: #0066cc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5722;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-image {
    text-align: center;
    margin-bottom: 20px;
}

.emoji-large {
    font-size: 80px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    min-height: 50px;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 60px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #888;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.btn-buy {
    padding: 10px 25px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-buy:hover {
    background: #388E3C;
}

.category-footer {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

/* ==========================================
   О компании
   ========================================== */

.about-section,
.content-block {
    padding: 40px 0;
}

.content-block h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 25px;
}

.content-block p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.about-advantages {
    background: #f8f9fa;
    padding: 60px 0;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantage-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.advantage-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    opacity: 0.3;
    min-width: 80px;
}

.advantage-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.advantage-content p {
    color: #666;
    line-height: 1.8;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.supplier-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.supplier-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.supplier-card p {
    color: #666;
}

.section-intro {
    text-align: center;
    color: #666;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.certificates {
    background: #f8f9fa;
}

.cert-content {
    max-width: 900px;
    margin: 0 auto;
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.cert-item {
    text-align: center;
    padding: 20px;
}

.cert-item h4 {
    font-size: 18px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.cert-item p {
    color: #666;
    font-size: 14px;
}

.guarantee-box {
    background: #E3F2FD;
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid #0066cc;
}

.guarantee-box strong {
    font-size: 20px;
    color: #0066cc;
}

.guarantee-box ul {
    margin: 20px 0;
    padding-left: 25px;
}

.guarantee-box li {
    margin-bottom: 10px;
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* ==========================================
   Доставка
   ========================================== */

.delivery-zones {
    background: #f8f9fa;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.zone-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zone-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.zone-price {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0;
}

.zone-card p {
    color: #666;
    margin-bottom: 15px;
}

.zone-card ul {
    list-style: none;
    padding: 0;
}

.zone-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.zone-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.delivery-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #FFF3E0;
    border-radius: 5px;
    color: #555;
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 17px;
}

.hours-box {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
}

.hours-note {
    margin-top: 20px;
    color: #666;
    line-height: 1.8;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.slot {
    background: #0066cc;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.condition-card {
    text-align: center;
    padding: 30px 20px;
}

.condition-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.condition-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.condition-card p {
    color: #666;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.payment-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.payment-card p {
    color: #666;
    line-height: 1.8;
}

.minimum-info {
    max-width: 800px;
    margin: 0 auto;
}

.minimum-box {
    background: #E3F2FD;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #0066cc;
}

.minimum-box h3 {
    font-size: 24px;
    color: #0066cc;
    margin-bottom: 20px;
}

.minimum-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.order-steps {
    max-width: 800px;
    margin: 0 auto;
}

.order-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-num {
    min-width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.step-content p {
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   FAQ
   ========================================== */

.faq {
    background: #f8f9fa;
}

.faq-list,
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.delivery-contact {
    background: #0066cc;
    color: #fff;
    text-align: center;
}

.contact-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-box p {
    color: #fff;
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 15px 30px;
    background: #fff;
    color: #0066cc;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* ==========================================
   Рецепты
   ========================================== */

.recipe {
    padding: 60px 0;
    border-bottom: 2px solid #e0e0e0;
}

.recipe:last-of-type {
    border-bottom: none;
}

.recipe-header {
    text-align: center;
    margin-bottom: 40px;
}

.recipe-header h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
}

.recipe-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #666;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.recipe-image-placeholder {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.emoji-huge {
    font-size: 120px;
}

.recipe-description h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #0066cc;
}

.recipe-description h3:first-child {
    margin-top: 0;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.recipe-steps {
    padding-left: 20px;
}

.recipe-steps li {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.recipe-steps strong {
    color: #0066cc;
}

.recipe-tips {
    background: #FFF3E0;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #FF9800;
}

.recipe-tips h4 {
    color: #FF9800;
    margin-bottom: 15px;
    font-size: 18px;
}

.recipe-tips p {
    color: #555;
    line-height: 1.8;
}

.btn-buy-ingredients {
    display: inline-block;
    padding: 15px 30px;
    background: #4CAF50;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-buy-ingredients:hover {
    background: #388E3C;
}

.cooking-tips {
    background: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.tip-card p {
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   Контакты
   ========================================== */

.contacts-info {
    background: #f8f9fa;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.contact-value {
    font-size: 20px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 10px;
}

.contact-desc {
    color: #666;
    font-size: 14px;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 20px;
}

.form-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding: 10px 0;
    color: #555;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-checkbox {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #004499;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.map-placeholder {
    background: #ddd;
    padding: 60px 30px;
    border-radius: 10px;
    text-align: center;
}

.map-directions h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.map-directions ul {
    list-style: none;
    padding: 0;
}

.map-directions li {
    padding: 10px 0;
    color: #555;
    line-height: 1.8;
}

.map-note {
    background: #FFF3E0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    color: #555;
}

.social-intro {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: #e0e0e0;
}

.social-icon {
    font-size: 24px;
}

.social-note {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 30px;
}

/* ==========================================
   Информационные секции
   ========================================== */

.catalog-info {
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0066cc;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   Призыв к действию (CTA)
   ========================================== */

.cta {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #0066cc;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.btn-secondary-large {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-secondary-large:hover {
    background: rgba(255,255,255,0.1);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-contact {
    margin-top: 30px;
    font-size: 18px;
    opacity: 0.95;
}

.cta-contact a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================
   Подвал (Footer)
   ========================================== */

.footer {
    background: #222;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* ==========================================
   Адаптивность
   ========================================== */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .header-top {
        flex-wrap: wrap;
    }
    
    .main-nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .recipe-content {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .header-contacts {
        flex-direction: column;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-number {
        margin: 0 auto;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
    }
    
    .order-step {
        flex-direction: column;
        text-align: center;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .emoji-huge {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .btn-primary,
    .btn-primary-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Утилитарные классы
   ========================================== */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Анимация появления при скролле (опционально) */
@media (prefers-reduced-motion: no-preference) {
    .category-card,
    .product-card,
    .review-card {
        animation: fadeInUp 0.6s ease-out;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

