.cpc-footer {
    background: linear-gradient(180deg, #ffebeb 0%, #ffffff 60%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
    color: #0f172a;
}

.cpc-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 32px;
}

.cpc-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.cpc-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cpc-footer__brand-logo img {
    width:150px;
}

.cpc-footer__brand-intro {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.5;
}

.cpc-footer__section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.cpc-footer__info,
.cpc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpc-footer__info li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #334155;
    font-size: 0.9375rem;
}

.cpc-footer__info strong {
    display: block;
    color: #0f172a;
}

.cpc-footer__links li {
    margin-bottom: 8px;
}

.cpc-footer__links a {
    color: #0f172a;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.cpc-footer__links a:hover {
    color: #2563eb;
}

.cpc-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9375rem;
    color: #0f172a;
}

.cpc-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
}

.cpc-footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: #2563eb;
}

.cpc-footer__badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.cpc-footer__badge {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #cbd5f5;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1d4ed8;
    background: #f8fafc;
}

.cpc-footer__shipping-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cpc-footer__shipping-logos span {
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
}

.cpc-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.cpc-footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.cpc-footer__socials a:hover {
    background: #2563eb;
    color: #fff;
}

.cpc-footer__app-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.cpc-footer__store-buttons {
    display: flex;
    gap: 12px;
}

.cpc-footer__store-btn {
    border-radius: 10px;
    gap: 8px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.cpc-footer__store-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cpc-footer__phone-preview {
    width: 200px;
    height: 380px;
    border-radius: 30px;
    border: 2px solid #0f172a;
    padding: 20px 12px;
    background: linear-gradient(180deg, #f0fdf4 0%, #d9f99d 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.2);
}

.cpc-footer__phone-preview::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    border-radius: 999px;
    background: #0f172a;
}

.cpc-footer__phone-content {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
    color: #e21736;
    font-weight: 600;
}

.cpc-footer__phone-content span {
    display: block;
    background: #ffe3e8;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
}

.cpc-footer__support {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: #e21736;
    font-weight: 600;
}

.cpc-footer__support-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #ffe5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cpc-footer__bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
    margin-top: 32px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .cpc-footer__inner {
        padding: 40px 16px 24px;
    }

    .cpc-footer__phone-preview {
        width: 180px;
        height: 340px;
    }
}

