/* Sweet Coco — Premium footer */

.sc-footer {
    --sc-ft-chocolate: #2a1814;
    --sc-ft-brown: #4a2f26;
    --sc-ft-gold: #b8925a;
    --sc-ft-gold-light: #dcc9a3;
    --sc-ft-cream: #f8f4ed;
    --sc-ft-chocolate-rgb: 42, 24, 20;
    --sc-ft-gold-rgb: 184, 146, 90;
    --sc-ft-cream-rgb: 255, 252, 247;
    background: linear-gradient(165deg, var(--sc-ft-chocolate) 0%, #352018 45%, var(--sc-ft-brown) 100%);
    border-top: 1px solid rgba(var(--sc-ft-gold-rgb), 0.22);
    position: relative;
    overflow: hidden;
}

.sc-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sc-ft-gold), var(--sc-ft-gold-light), var(--sc-ft-gold), transparent);
    opacity: 0.85;
}

.sc-footer::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--sc-ft-gold-rgb), 0.08), transparent 68%);
    pointer-events: none;
}

.sc-footer__top,
.sc-footer .footer-top {
    padding: clamp(48px, 7vw, 72px) 0 clamp(36px, 5vw, 48px);
    position: relative;
    z-index: 1;
}

.sc-footer__brand,
.sc-footer .footer-about {
    text-align: left;
    padding-right: 24px;
}

.sc-footer__logo,
.sc-footer .footer-about > a:first-child {
    display: inline-block;
    margin-bottom: 18px;
    line-height: 0;
}

.sc-footer__logo img,
.sc-footer .footer-about > a:first-child img {
    width: auto;
    max-width: 168px;
    height: auto;
    max-height: 72px;
    min-height: 44px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.sc-footer .footer-about p {
    text-align: left;
    color: rgba(var(--sc-ft-cream-rgb), 0.78);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 14px;
    max-width: 320px;
}

.sc-footer .footer-hotlint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sc-ft-gold-light);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-footer .footer-hotlint:hover {
    color: var(--sc-ft-cream);
}

.sc-footer .footer-hotlint::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--sc-ft-gold);
}

.sc-footer .footer-menu .title,
.sc-footer .footer-menu .title a,
.sc-footer .footer-menu .title span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--sc-ft-cream);
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    display: block;
    pointer-events: none;
}

.sc-footer .footer-menu .title::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--sc-ft-gold), var(--sc-ft-gold-light));
    border-radius: 2px;
}

.sc-footer .footer-menu ul li a {
    color: rgba(var(--sc-ft-cream-rgb), 0.72) !important;
    font-size: 14px;
    margin: 0 0 10px !important;
    padding: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sc-footer .footer-menu ul li a:hover {
    color: var(--sc-ft-gold-light) !important;
    margin-left: 0 !important;
    transform: translateX(4px);
}

.sc-footer .footer-menu .stay_conn + .social_link,
.sc-footer ul.social_link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    text-align: left;
    justify-content: flex-start;
}

.sc-footer ul.social_link li,
.sc-footer ul.social_link li.social_list {
    display: inline-flex;
    margin: 0;
}

.sc-footer ul.social_link li a,
.sc-footer ul.social_link li a.mobile-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(var(--sc-ft-gold-rgb), 0.35);
    background: rgba(var(--sc-ft-chocolate-rgb), 0.35);
    color: var(--sc-ft-gold-light) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}

.sc-footer ul.social_link li a:hover {
    background: linear-gradient(135deg, var(--sc-ft-gold-light), var(--sc-ft-gold));
    color: var(--sc-ft-chocolate) !important;
    border-color: transparent;
    transform: translateY(-2px);
}

.sc-footer__bottom,
.sc-footer .footer-bottom {
    position: relative;
    z-index: 1;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(var(--sc-ft-gold-rgb), 0.14);
    background: rgba(0, 0, 0, 0.14);
}

.sc-footer .copyright p {
    color: rgba(var(--sc-ft-cream-rgb), 0.55);
    font-size: 13px;
    letter-spacing: 0.04em;
    margin: 0;
}

.sc-footer__copyright-sep {
    margin: 0 0.45em;
    opacity: 0.65;
}

.sc-footer__copyright-link {
    color: #fff !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.sc-footer__copyright-link:hover {
    color: #fff !important;
    opacity: 0.85;
    text-decoration: underline !important;
}

@media (max-width: 767px) {
    .sc-footer__brand,
    .sc-footer .footer-about {
        text-align: center;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .sc-footer .footer-bottom {
        margin-bottom: 0 !important;
        padding-bottom: 77px;
    }

    .sc-footer .footer-about p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .sc-footer .footer-hotlint {
        justify-content: center;
        width: 100%;
    }

    .sc-footer .footer-menu .title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .sc-footer .footer-menu {
        text-align: center;
    }

    .sc-footer ul.social_link {
        justify-content: center;
    }

    .sc-footer .footer-menu ul li a:hover {
        transform: none;
    }
}
