.catalog-page {
    padding: 8rem 0 4rem;
    position: relative;
}

.catalog-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catalog-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.catalog-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background: var(--background-light);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Liquid Glass Product Card */
.catalog-product {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.95) 50%,
            transparent 100%);
    z-index: 1;
}

.catalog-product::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0) 0%,
            rgba(16, 185, 129, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.catalog-product:hover {
    transform: translateY(-8px) scale(1.01);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow:
        0 20px 50px rgba(5, 150, 105, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.catalog-product:hover::after {
    opacity: 1;
}

/* Flex layout for equal height cards */
.catalog-product {
    display: flex;
    flex-direction: column;
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    max-width: 85%;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.catalog-product:hover .product-image-wrapper img {
    transform: scale(1.08);
}

/* Product Tags - Liquid Glass Style */
.product-tag {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    background: linear-gradient(135deg,
            rgba(239, 68, 68, 0.85) 0%,
            rgba(220, 38, 38, 0.9) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 2;
}

.product-tag.new {
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.85) 0%,
            rgba(37, 99, 235, 0.9) 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.product-tag.premium {
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.85) 0%,
            rgba(124, 58, 237, 0.9) 100%);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.product-tag.variants {
    background: linear-gradient(135deg,
            rgba(71, 85, 105, 0.85) 0%,
            rgba(51, 65, 85, 0.9) 100%);
    box-shadow: 0 2px 8px rgba(71, 85, 105, 0.3);
}

.product-tag.unavailable {
    background: linear-gradient(135deg,
            rgba(100, 116, 139, 0.9) 0%,
            rgba(71, 85, 105, 0.95) 100%);
    box-shadow: 0 2px 8px rgba(71, 85, 105, 0.4);
}

/* Product Details */
.product-details {
    padding: 0.875rem 1rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    display: none;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.375rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features {
    display: none;
}

/* Product Footer */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.625rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    margin-top: auto;
}

.product-footer-buttons {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.product-cost {
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Button - Liquid Glass Style */
.btn-view-colors {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.875rem;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.675rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow:
        0 2px 8px rgba(5, 150, 105, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-view-colors:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px rgba(5, 150, 105, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Add to Cart Button - Minimalist Style */
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.btn-add-cart svg {
    width: 16px;
    height: 16px;
    stroke: #6366f1;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.btn-add-cart:hover svg {
    stroke: white;
}

.btn-add-cart:active {
    transform: translateY(0) scale(0.95);
}

.quick-contact {
    display: none;
}

.contact-btn {
    display: none;
}

.contact-btn.whatsapp {
    background: var(--secondary-color);
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #16a34a;
    transform: scale(1.1);
}

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

.contact-btn.call:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Breadcrumb Glass Block */
.breadcrumb-section {
    margin-bottom: 1.5rem;
}

.breadcrumb-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 8px 32px rgba(5, 150, 105, 0.06);
    transition: all 0.3s ease;
}

.breadcrumb-glass:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 12px 40px rgba(5, 150, 105, 0.1);
}

.breadcrumb-glass .breadcrumb-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.breadcrumb-glass .breadcrumb-icon svg {
    width: 16px;
    height: 16px;
    stroke: #059669;
}

.breadcrumb-glass .breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-glass a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.breadcrumb-glass a:hover {
    color: #059669;
}

.breadcrumb-glass .breadcrumb-separator {
    color: #cbd5e1;
    font-size: 0.75rem;
}

.breadcrumb-glass .breadcrumb-separator svg {
    width: 14px;
    height: 14px;
    stroke: #cbd5e1;
    display: block;
}

.breadcrumb-glass .breadcrumb-current {
    color: #0f172a;
    font-weight: 600;
}

/* Breadcrumb with Back Button */
.breadcrumb-with-back {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.back-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    padding: 0.65rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    text-decoration: none;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn-glass:hover {
    background: rgba(5, 150, 105, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow:
        0 8px 32px rgba(5, 150, 105, 0.12),
        0 0 0 1px rgba(16, 185, 129, 0.2) inset;
    transform: translateX(-4px);
}

.back-btn-glass svg {
    width: 18px;
    height: 18px;
    stroke: #059669;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .breadcrumb-with-back {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .back-btn-glass {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .back-btn-glass svg {
        width: 16px;
        height: 16px;
    }
}

/* Legacy breadcrumb fallback */
.breadcrumb {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb span {
    color: var(--text-secondary);
}

/* Catalog Page Hero Block - Style like main page */
.catalog-page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.catalog-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.catalog-page-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.catalog-page-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.catalog-page-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catalog-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12) 0%, rgba(16, 185, 129, 0.18) 100%);
    color: #059669;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.catalog-page-badge svg {
    width: 14px;
    height: 14px;
}

.catalog-page-hero .catalog-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f172a;
}

.catalog-page-hero .catalog-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Catalog Filters Block */
.catalog-filters-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.filters-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.catalog-filters-block .filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.catalog-filters-block .filter-btn:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.catalog-filters-block .filter-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.filter-select {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.filter-select:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.filter-select:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.filter-select option {
    padding: 0.5rem;
    background: white;
    color: #475569;
}

@media (max-width: 768px) {
    .catalog-filters-block {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.875rem;
        border-radius: 14px;
    }

    .filters-left {
        width: 100%;
    }

    .filters-right {
        width: 100%;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }

    .filter-label {
        font-size: 0.75rem;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

    .filter-label::before {
        content: '';
        width: 3px;
        height: 3px;
        background: #10b981;
        border-radius: 50%;
    }

    .filter-buttons {
        width: 100%;
        display: flex;
        gap: 0.375rem;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .catalog-filters-block .filter-btn {
        padding: 0.45rem 0.875rem;
        font-size: 0.7rem;
        border-radius: 20px;
        white-space: nowrap;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(99, 102, 241, 0.15);
    }

    .catalog-filters-block .filter-btn.active {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        border-color: transparent;
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
    }

    .filter-select {
        width: 100%;
        padding: 0.5rem 2rem 0.5rem 0.875rem;
        border-radius: 20px;
        font-size: 0.75rem;
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(99, 102, 241, 0.15);
    }
}

@media (max-width: 480px) {
    .catalog-filters-block {
        padding: 0.75rem;
        border-radius: 12px;
        gap: 0.625rem;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.9) 0%,
                rgba(248, 250, 252, 0.85) 100%);
    }

    .filter-label {
        font-size: 0.7rem;
        font-weight: 500;
    }

    .catalog-filters-block .filter-btn {
        padding: 0.375rem 0.7rem;
        font-size: 0.65rem;
        border-radius: 16px;
    }

    .filter-select {
        font-size: 0.7rem;
        padding: 0.4rem 1.75rem 0.4rem 0.75rem;
        border-radius: 16px;
    }
}

/* Decorative Elements */
.catalog-page-hero-decor {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
    pointer-events: none;
}

.decor-orb {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.08) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: float 6s ease-in-out infinite;
}

.decor-orb-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.decor-orb-2 {
    width: 50px;
    height: 50px;
    animation-delay: -2s;
    margin-top: 30px;
}

.decor-orb-3 {
    width: 35px;
    height: 35px;
    animation-delay: -4s;
    margin-top: -20px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Shimmer line decoration */
.decor-shimmer {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(16, 185, 129, 0.03) 50%,
            transparent 100%);
    pointer-events: none;
}

/* Corner accent */
.decor-corner {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border-right: 2px solid rgba(16, 185, 129, 0.15);
    border-bottom: 2px solid rgba(16, 185, 129, 0.15);
    border-radius: 0 0 16px 0;
    pointer-events: none;
}

.decor-corner::before {
    content: '';
    position: absolute;
    right: -6px;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

/* ============================================
   GARDEN DECOR - Leaves & Nature Theme
   ============================================ */
.decor-garden {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none;
}

.decor-leaf {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.08) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50% 0 50% 0;
    animation: sway 4s ease-in-out infinite;
}

.decor-leaf-1 {
    animation-delay: 0s;
}

.decor-leaf-2 {
    width: 30px;
    height: 30px;
    animation-delay: -1.3s;
    margin-top: 25px;
}

.decor-leaf-3 {
    width: 22px;
    height: 22px;
    animation-delay: -2.6s;
    margin-top: -20px;
}

.decor-sun {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.05) 70%);
    border-radius: 50%;
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

.decor-sun::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: rgba(251, 191, 36, 0.25);
    border-radius: 50%;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ============================================
   HOME DECOR - Geometric & Elegant Theme
   ============================================ */
.decor-home {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: none;
}

.decor-diamond {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(79, 70, 229, 0.06) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transform: rotate(45deg);
    animation: float-rotate 5s ease-in-out infinite;
}

.decor-diamond-1 {
    animation-delay: 0s;
}

.decor-diamond-2 {
    width: 25px;
    height: 25px;
    animation-delay: -1.7s;
    margin-top: 30px;
}

.decor-diamond-3 {
    width: 18px;
    height: 18px;
    animation-delay: -3.3s;
    margin-top: -25px;
}

.decor-ring {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    position: relative;
    animation: spin-slow 20s linear infinite;
}

.decor-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes float-rotate {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(-10px);
    }
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   RESTAURANT DECOR - Professional & Modern Theme
   ============================================ */
.decor-restaurant {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    pointer-events: none;
}

.decor-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
    border-radius: 2px;
    animation: expand-line 2s ease-in-out infinite;
}

.decor-line-1 {
    width: 80px;
    animation-delay: 0s;
}

.decor-line-2 {
    width: 60px;
    animation-delay: -0.4s;
}

.decor-line-3 {
    width: 40px;
    animation-delay: -0.8s;
}

.decor-dots {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.decor-dot {
    width: 8px;
    height: 8px;
    background: rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: blink-dot 1.5s ease-in-out infinite;
}

.decor-dot:nth-child(1) {
    animation-delay: 0s;
}

.decor-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.decor-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.decor-badge-accent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-top: 0.5rem;
}

.decor-badge-accent span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes expand-line {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes blink-dot {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 1024px) {

    .catalog-page-hero-decor,
    .decor-garden,
    .decor-home,
    .decor-restaurant,
    .decor-corner,
    .decor-shimmer {
        display: none;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        margin-bottom: 1rem;
    }

    .breadcrumb-glass {
        padding: 0.5rem 0.875rem;
        gap: 0.5rem;
        border-radius: 12px;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.85) 0%,
                rgba(248, 250, 252, 0.9) 100%);
        border: 1px solid rgba(16, 185, 129, 0.12);
        box-shadow: 0 2px 12px rgba(5, 150, 105, 0.06);
    }

    .breadcrumb-glass .breadcrumb-icon {
        width: 26px;
        height: 26px;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.3) 100%);
    }

    .breadcrumb-glass .breadcrumb-icon svg {
        width: 12px;
        height: 12px;
    }

    .breadcrumb-glass .breadcrumb-items {
        font-size: 0.75rem;
        gap: 0.35rem;
    }

    .breadcrumb-glass a {
        color: #64748b;
        font-weight: 500;
    }

    .breadcrumb-glass .breadcrumb-current {
        color: #059669;
        font-weight: 600;
        background: rgba(16, 185, 129, 0.1);
        padding: 0.15rem 0.5rem;
        border-radius: 6px;
    }

    .breadcrumb-glass .breadcrumb-separator svg {
        width: 12px;
        height: 12px;
        stroke: #94a3b8;
    }

    .catalog-page-hero {
        padding: 0.875rem 1.25rem;
        border-radius: 14px;
    }

    .catalog-page-hero .catalog-title {
        font-size: 1.35rem;
    }

    .catalog-page-hero .catalog-description {
        display: none;
    }

    .catalog-page-badge {
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
    }

    .catalog-page-badge svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 640px) {
    .catalog-page {
        padding: 6.5rem 0 3rem;
    }

    .breadcrumb-section {
        margin-bottom: 0.75rem;
    }

    .breadcrumb-glass {
        display: flex;
        width: auto;
        max-width: 100%;
        padding: 0.4rem 0.75rem;
        border-radius: 10px;
        gap: 0.4rem;
    }

    .breadcrumb-glass .breadcrumb-icon {
        width: 22px;
        height: 22px;
        border-radius: 6px;
    }

    .breadcrumb-glass .breadcrumb-icon svg {
        width: 10px;
        height: 10px;
    }

    .breadcrumb-glass .breadcrumb-items {
        font-size: 0.7rem;
        gap: 0.25rem;
    }

    .breadcrumb-glass .breadcrumb-current {
        padding: 0.125rem 0.4rem;
        border-radius: 5px;
        font-size: 0.7rem;
    }

    .breadcrumb-glass .breadcrumb-separator svg {
        width: 10px;
        height: 10px;
    }

    .catalog-page-hero {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }

    .catalog-page-hero-top {
        gap: 0.75rem;
    }

    .catalog-page-hero .catalog-title {
        font-size: 1.15rem;
    }

    .catalog-page-hero .catalog-description {
        display: none;
    }

    .catalog-page-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.6rem;
    }

    .catalog-page-badge svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        margin-bottom: 0.5rem;
    }

    .breadcrumb-glass {
        padding: 0.35rem 0.625rem;
        border-radius: 8px;
        gap: 0.3rem;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.92) 0%,
                rgba(248, 250, 252, 0.95) 100%);
    }

    .breadcrumb-glass .breadcrumb-icon {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }

    .breadcrumb-glass .breadcrumb-icon svg {
        width: 9px;
        height: 9px;
    }

    .breadcrumb-glass .breadcrumb-items {
        font-size: 0.65rem;
        gap: 0.2rem;
    }

    .breadcrumb-glass a {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .breadcrumb-glass .breadcrumb-current {
        padding: 0.1rem 0.35rem;
        border-radius: 4px;
        font-size: 0.65rem;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .breadcrumb-glass .breadcrumb-separator svg {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

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

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .catalog-product {
        border-radius: 12px;
    }

    .catalog-product::before,
    .catalog-product::after {
        display: none;
    }

    .product-image-wrapper {
        height: 110px;
    }

    .product-image-wrapper img {
        max-height: 90px;
        max-width: 90%;
    }

    .product-tag {
        top: 0.35rem;
        left: 0.35rem;
        padding: 0.15rem 0.4rem;
        font-size: 0.5rem;
    }

    .product-details {
        padding: 0.5rem 0.625rem 0.625rem;
    }

    .product-name {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
        -webkit-line-clamp: 1;
    }

    .product-description {
        display: none;
    }

    .product-footer {
        padding-top: 0.4rem;
        flex-direction: row;
        align-items: center;
    }

    .product-cost {
        font-size: 0.75rem;
    }

    .product-footer-buttons {
        gap: 0.25rem;
    }

    .btn-add-cart {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }

    .btn-add-cart svg {
        width: 12px;
        height: 12px;
    }

    .btn-view-colors {
        padding: 0.3rem 0.5rem;
        font-size: 0.55rem;
        border-radius: 6px;
    }

    .contact-btn {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }

    .contact-btn svg {
        width: 12px;
        height: 12px;
    }

    .filter-bar {
        justify-content: flex-start;
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .catalog-filters-block {
        padding: 0.625rem;
        border-radius: 10px;
        gap: 0.5rem;
    }

    .filter-label {
        font-size: 0.65rem;
    }

    .filter-label::before {
        width: 2px;
        height: 2px;
    }

    .catalog-filters-block .filter-btn {
        padding: 0.3rem 0.55rem;
        font-size: 0.6rem;
        border-radius: 12px;
    }

    .filter-select {
        font-size: 0.65rem;
        padding: 0.35rem 1.5rem 0.35rem 0.6rem;
        border-radius: 12px;
        min-width: unset;
    }
}

/* Compact catalog page header on mobile */
@media (max-width: 480px) {
    .catalog-page-hero {
        padding: 0.65rem 0.875rem;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }

    .catalog-page-hero-top {
        gap: 0.5rem;
    }

    .catalog-page-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.55rem;
    }

    .catalog-page-badge svg {
        width: 10px;
        height: 10px;
    }

    .catalog-page-hero .catalog-title {
        font-size: 1rem;
        white-space: nowrap;
    }

    .catalog-page-hero .catalog-description {
        display: none;
    }
}

@media (max-width: 400px) {
    .catalog-page {
        padding: 6rem 0 2rem;
    }

    .catalog-grid {
        gap: 0.375rem;
    }

    .catalog-product {
        border-radius: 10px;
    }

    .product-image-wrapper {
        height: 95px;
    }

    .product-image-wrapper img {
        max-height: 80px;
    }

    .product-tag {
        top: 0.25rem;
        left: 0.25rem;
        padding: 0.1rem 0.3rem;
        font-size: 0.45rem;
        border-radius: 30px;
    }

    .product-details {
        padding: 0.4rem 0.5rem 0.5rem;
    }

    .product-name {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }

    .product-footer {
        padding-top: 0.3rem;
        gap: 0.25rem;
    }

    .product-cost {
        font-size: 0.65rem;
    }

    .btn-view-colors {
        padding: 0.25rem 0.4rem;
        font-size: 0.5rem;
        border-radius: 5px;
    }

    .breadcrumb-section {
        margin-bottom: 0.375rem;
    }

    .breadcrumb-glass {
        padding: 0.3rem 0.5rem;
        border-radius: 6px;
        gap: 0.2rem;
    }

    .breadcrumb-glass .breadcrumb-icon {
        width: 18px;
        height: 18px;
        border-radius: 4px;
    }

    .breadcrumb-glass .breadcrumb-icon svg {
        width: 8px;
        height: 8px;
    }

    .breadcrumb-glass .breadcrumb-items {
        font-size: 0.6rem;
        gap: 0.15rem;
    }

    .breadcrumb-glass a {
        max-width: 50px;
    }

    .breadcrumb-glass .breadcrumb-current {
        padding: 0.075rem 0.3rem;
        font-size: 0.6rem;
        max-width: 80px;
    }

    .breadcrumb-glass .breadcrumb-separator svg {
        width: 6px;
        height: 6px;
    }
}



/* Popular Section - Liquid Glass */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    /* Ensure cards stretch to full height */
}

.popular-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s ease;
    display: flex;
    /* Flex layout for the card */
    flex-direction: column;
    /* Stack content vertically */
    height: 100%;
    /* Fill grid cell height */
}

.popular-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(16, 185, 129, 0.2);
}

.popular-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ffffff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
}

.popular-card:hover .popular-image img {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #059669;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.popular-badge.new {
    color: #3b82f6;
}

.popular-badge.premium {
    color: #d97706;
}

.popular-badge.unavailable {
    color: #64748b;
}

.popular-category {
    display: none;
    /* Cleaner look similar to catalog */
}

.popular-info {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Take up remaining space */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.popular-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.popular-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-top: auto;
    /* Push to bottom */
    padding-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popular-price::after {
    content: '→';
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.popular-card:hover .popular-price::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .popular-card {
        border-radius: 12px;
    }

    .popular-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 0.55rem;
        border-radius: 30px;
    }

    .popular-category {
        bottom: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 0.55rem;
        border-radius: 30px;
    }

    .popular-info {
        padding: 0.6rem 0.75rem 0.75rem;
    }

    .popular-info h3 {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .popular-info p {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .popular-price {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .popular-grid {
        gap: 0.4rem;
    }

    .popular-badge,
    .popular-category {
        padding: 2px 6px;
        font-size: 0.5rem;
    }

    .popular-info {
        padding: 0.5rem 0.6rem 0.6rem;
    }

    .popular-info h3 {
        font-size: 0.75rem;
    }

    .popular-info p {
        font-size: 0.6rem;
        -webkit-line-clamp: 1;
    }

    .popular-price {
        font-size: 0.8rem;
    }
}

/* Advantages Section */
.advantages {
    padding: 0 0 5rem;
    background: #f8fafc;
    position: relative;
}

.advantages .container {
    max-width: 1400px;
}

.advantages-hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 0 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.advantages-hero-block .section-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.advantages-hero-block .section-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advantages-counter {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.advantages-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f172a;
}

.advantages-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .advantages-hero-block {
        padding: 0.875rem 1.25rem;
        border-radius: 14px;
    }

    .advantages-hero-block .block-title {
        font-size: 1.35rem;
    }

    .advantages-hero-block .block-description {
        display: none;
    }
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15),
        0 8px 25px rgba(5, 150, 105, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.advantage-icon {
    width: 72px;
    height: 72px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

/* Цвета доверия для каждой карточки */
/* 1. Тёмно-синий (Navy) - Гарантия качества */
.advantage-card:nth-child(1) .advantage-icon {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.18) 0%, rgba(30, 64, 175, 0.28) 100%);
    border: 1px solid rgba(30, 64, 175, 0.3);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.advantage-card:nth-child(1) .advantage-icon svg {
    stroke: #1e40af;
}

.advantage-card:nth-child(1):hover .advantage-icon {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
}

/* 2. Глубокий бирюзовый (Teal) - Доставка */
.advantage-card:nth-child(2) .advantage-icon {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.18) 0%, rgba(13, 148, 136, 0.28) 100%);
    border: 1px solid rgba(13, 148, 136, 0.3);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.advantage-card:nth-child(2) .advantage-icon svg {
    stroke: #0f766e;
}

.advantage-card:nth-child(2):hover .advantage-icon {
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
}

/* 3. Серо-синий (Slate) - Ассортимент */
.advantage-card:nth-child(3) .advantage-icon {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.18) 0%, rgba(100, 116, 139, 0.28) 100%);
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 4px 15px rgba(71, 85, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.advantage-card:nth-child(3) .advantage-icon svg {
    stroke: #475569;
}

.advantage-card:nth-child(3):hover .advantage-icon {
    box-shadow: 0 8px 25px rgba(71, 85, 105, 0.35);
}

/* 4. Синий (Blue) - Сертификация */
.advantage-card:nth-child(4) .advantage-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18) 0%, rgba(59, 130, 246, 0.28) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.advantage-card:nth-child(4) .advantage-icon svg {
    stroke: #2563eb;
}

.advantage-card:nth-child(4):hover .advantage-icon {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
}

.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem;
}

.advantage-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .advantages {
        padding: 2rem 0;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .advantage-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .advantage-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 0.875rem;
    }

    .advantage-icon svg {
        width: 26px;
        height: 26px;
    }

    .advantage-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .advantage-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {

    /* Compact section headers - badge left, title right */
    .advantages-hero-block,
    .faq-hero-block,
    .contacts-hero-block {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        padding: 0.65rem 0.875rem;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }

    .advantages-counter,
    .faq-counter,
    .contacts-counter {
        padding: 0.25rem 0.6rem;
        font-size: 0.6rem;
        flex-shrink: 0;
    }

    .advantages-title,
    .faq-title,
    .contacts-title {
        font-size: 1rem;
        margin: 0;
        white-space: nowrap;
    }

    .advantages-hero-block .block-description,
    .faq-hero-block .block-description,
    .contacts-hero-block .block-description {
        display: none;
    }
}

@media (max-width: 400px) {
    .advantages {
        padding: 1.5rem 0;
    }

    .advantages-grid {
        gap: 0.5rem;
    }

    .advantage-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .advantage-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    .advantage-icon svg {
        width: 22px;
        height: 22px;
    }

    .advantage-card h3 {
        font-size: 0.9rem;
    }

    .advantage-card p {
        font-size: 0.75rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 0 0 5rem;
    background: #f8fafc;
    position: relative;
}

.faq-section .container {
    max-width: 1400px;
}

.faq-hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 0 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-hero-block .section-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-hero-block .section-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-counter {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.faq-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f172a;
}

.faq-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .faq-hero-block {
        padding: 0.875rem 1.25rem;
        border-radius: 14px;
    }

    .faq-hero-block .block-title {
        font-size: 1.35rem;
    }

    .faq-hero-block .block-description {
        display: none;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    padding: 4px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 8px;
}

.faq-item:hover .faq-question svg {
    background: rgba(5, 150, 105, 0.15);
    stroke: #059669;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: white;
    background: linear-gradient(135deg, #059669, #10b981);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 2rem 0;
    }

    .faq-question {
        padding: 0.875rem 1rem;
    }

    .faq-question span {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 1rem 0.875rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .faq-section {
        padding: 1.5rem 0;
    }

    .faq-hero-block {
        padding: 0.75rem 1rem;
        border-radius: 14px;
        margin-bottom: 0.75rem;
    }

    .faq-counter {
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
    }

    .faq-title {
        font-size: 1.25rem;
    }

    .faq-hero-block .block-description {
        font-size: 0.75rem;
    }

    .faq-grid {
        gap: 0.5rem;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 0.75rem;
    }

    .faq-question span {
        font-size: 0.8rem;
    }

    .faq-question svg {
        width: 20px;
        height: 20px;
        margin-left: 0.5rem;
    }

    .faq-answer p {
        padding: 0 0.75rem 0.75rem;
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* Contacts Section */
.contacts-section {
    padding: 0 0 5rem;
    background: #f8fafc;
    position: relative;
}

.contacts-section .container {
    max-width: 1400px;
}

.contacts-hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 0 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contacts-hero-block .section-hero-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contacts-hero-block .section-hero-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contacts-counter {
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.contacts-hero-block .block-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0f172a;
}

.contacts-hero-block .block-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contacts-hero-block {
        padding: 0.875rem 1.25rem;
        border-radius: 14px;
    }

    .contacts-hero-block .block-title {
        font-size: 1.35rem;
    }

    .contacts-hero-block .block-description {
        display: none;
    }
}

.contacts-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.25) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.25);
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: #059669;
}

.contact-card-icon.schedule {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(79, 70, 229, 0.25) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-card-icon.schedule svg {
    stroke: #6366f1;
}

.contact-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin: 0 0 0.75rem;
}

.contact-card-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-card-links a,
.contact-card-links span {
    font-size: 0.85rem;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-card-links a:hover {
    color: #059669;
}

.contact-card-links a small,
.contact-card-links span strong {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.contact-card-links span strong {
    color: #0f172a;
    font-weight: 600;
}

.contact-card-links.schedule-list span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card-links.schedule-list span:last-child {
    border-bottom: none;
}

/* Maps Row */
.maps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.map-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.map-header {
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.map-header span {
    font-size: 0.8rem;
    color: #64748b;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 768px) {
    .maps-row {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 180px;
    }
}

.contacts-cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-card {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.92) 0%, rgba(16, 185, 129, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 1.25rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    flex: 1;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.92;
    margin: 0;
    line-height: 1.5;
}

.cta-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #059669;
    padding: 0.9rem 1.75rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-cta svg {
    width: 22px;
    height: 22px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-features {
    display: flex;
    gap: 1rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.92;
    white-space: nowrap;
}

.cta-features svg {
    stroke: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .contacts-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1rem;
        border-radius: 14px;
    }

    .cta-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .cta-content p {
        font-size: 0.8rem;
    }

    .cta-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cta-card {
        flex-direction: row !important;
        padding: 1rem 1.25rem !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .cta-content {
        text-align: left !important;
        flex: 1 !important;
    }

    .cta-content h3 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.3 !important;
    }

    .cta-content p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .cta-action {
        flex-shrink: 0 !important;
        align-items: flex-end !important;
    }

    .btn-cta {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }

    .cta-features {
        display: none !important;
    }

    .btn-cta svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 640px) {
    .contacts-section {
        padding: 2rem 0;
    }

    .contacts-cards-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-card {
        padding: 1.25rem 1rem;
        border-radius: 14px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    .contact-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-card h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .contact-card-links a,
    .contact-card-links span {
        font-size: 0.8rem;
    }

}

@media (max-width: 400px) {
    .contacts-section {
        padding: 1.5rem 0;
    }

    .contacts-hero-block {
        padding: 0.75rem 1rem;
        border-radius: 14px;
        margin-bottom: 0.75rem;
    }

    .contacts-counter {
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
    }

    .contacts-title {
        font-size: 1.25rem;
    }

    .contacts-hero-block .block-description {
        font-size: 0.75rem;
    }

    .contacts-cards-row {
        gap: 0.5rem;
    }

    .contact-card {
        padding: 1rem 0.875rem;
        border-radius: 12px;
    }

    .contact-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        margin-bottom: 0.6rem;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-card h4 {
        font-size: 0.75rem;
    }

    .contact-card-links a,
    .contact-card-links span {
        font-size: 0.75rem;
    }

    .contact-card-links a small,
    .contact-card-links span strong {
        font-size: 0.6rem;
    }

    .maps-row {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .map-card {
        border-radius: 12px;
    }

    .map-header {
        padding: 0.75rem;
    }

    .map-header h4 {
        font-size: 0.9rem;
    }

    .map-header span {
        font-size: 0.7rem;
    }

    .map-wrapper {
        height: 150px;
    }

    .cta-card {
        padding: 0.875rem 1rem !important;
        border-radius: 12px !important;
        gap: 0.75rem !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .cta-content {
        text-align: left !important;
        flex: 1 !important;
    }

    .cta-content h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.3 !important;
    }

    .cta-content p {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }

    .cta-action {
        flex-shrink: 0 !important;
    }

    .btn-cta {
        padding: 0.65rem 1rem !important;
        font-size: 0.8rem !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
    }

    .cta-features {
        display: none !important;
    }

    .btn-cta svg {
        width: 18px !important;
        height: 18px !important;
    }

    .cta-features {
        gap: 0.5rem;
    }

    .cta-features span {
        font-size: 0.65rem;
    }

    .cta-features svg {
        width: 12px;
        height: 12px;
    }
}