.delivery-section {
    padding: 130px 0;
    min-height: 100vh;
}

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

/* Хлебные крошки */
.delivery-breadcrumb {
    margin-bottom: 30px;
    padding: 15px 0;
}

.breadcrumb-link {
    color: var(--warm-brown);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--bright-green);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--warm-brown);
}

/* Заголовок страницы */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0, 150, 64, 0.2);
}

.page-icon i {
    font-size: 2.5rem;
    color: white;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-title span {
    color: var(--bright-green);
}

.page-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-green);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Карточки */
.delivery-grid {
  /*  display: grid;*/
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.delivery-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(124, 87, 71, 0.08);
    border: 1px solid rgba(124, 87, 71, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(124, 87, 71, 0.15);
    border-color: var(--bright-green);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-green);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 150, 64, 0.1), rgba(93, 156, 89, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--bright-green);
    transition: all 0.3s ease;
}

.delivery-card:hover .card-icon {
    transform: scale(1.1);
    background: var(--gradient-green);
    color: white;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 25px;
    line-height: 1.3;
}

.price-block {
    background: linear-gradient(135deg, rgba(0, 150, 64, 0.05), rgba(93, 156, 89, 0.05));
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(0, 150, 64, 0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 87, 71, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--warm-brown);
    font-weight: 500;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bright-green);
}

.price-value small {
    font-size: 0.9rem;
    color: var(--warm-brown);
    font-weight: 400;
}

.highlight-text {
    color: var(--bright-green);
    font-weight: 700;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--warm-brown);
}

.info-list li i {
    color: var(--bright-green);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 22px;
}

.info-list li strong {
    color: var(--dark-brown);
}

.important-block {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05), rgba(255, 107, 107, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(227, 6, 19, 0.1);
    grid-column: span 2;
}

.important-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--terracotta);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.important-title i {
    font-size: 1.5rem;
}

.important-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.important-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.important-item i {
    color: var(--terracotta);
    font-size: 1.2rem;
    margin-top: 3px;
}

.important-item p {
    color: var(--warm-brown);
    margin: 0;
    line-height: 1.6;
}

.important-item strong {
    color: var(--terracotta);
}

/* Схема доставки */
.delivery-schema {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.schema-step {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(124, 87, 71, 0.05);
    border: 1px solid rgba(124, 87, 71, 0.1);
    transition: all 0.3s ease;
}

.schema-step:hover {
    transform: translateY(-5px);
    border-color: var(--bright-green);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-icon {
    font-size: 2rem;
    color: var(--bright-green);
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.step-description {
    color: var(--warm-brown);
    font-size: 0.95rem;
}

/* Часы работы */
.hours-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(124, 87, 71, 0.08);
    border: 1px solid rgba(124, 87, 71, 0.1);
    margin-top: 40px;
}

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

.hours-column {
    padding: 0 20px;
}

.hours-column h3 {
    color: var(--dark-brown);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-column h3 i {
    color: var(--bright-green);
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 87, 71, 0.1);
}

.time-row:last-child {
    border-bottom: none;
}

.day {
    color: var(--warm-brown);
    font-weight: 500;
}

.time {
    font-weight: 700;
    color: var(--bright-green);
    font-size: 1.1rem;
}

.note {
    background: rgba(124, 87, 71, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.note i {
    color: var(--bright-green);
    font-size: 1.3rem;
}

.note p {
    color: var(--warm-brown);
    margin: 0;
}

/* Контакты */
.contact-block {
    background: var(--gradient-green);
    border-radius: 32px;
    padding: 40px;
    margin-top: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-block::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-block::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.contact-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.contact-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-btn-outline {
    border: 2px solid white;
    color: white;
}

.contact-btn-outline:hover {
    background: white;
    color: var(--bright-green);
    transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .important-content {
        grid-template-columns: 1fr;
    }

    .delivery-schema {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .delivery-card {
        padding: 30px 20px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .price-value {
        font-size: 1.1rem;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delivery-card, .schema-step, .hours-card {
    animation: fadeInUp 0.5s ease forwards;
}

.delivery-card:nth-child(1) { animation-delay: 0.1s; }
.delivery-card:nth-child(2) { animation-delay: 0.2s; }
.schema-step:nth-child(1) { animation-delay: 0.3s; }
.schema-step:nth-child(2) { animation-delay: 0.4s; }
.schema-step:nth-child(3) { animation-delay: 0.5s; }
