@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Pacifico', cursive;
    font-family: 'Lobster', cursive;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    background: linear-gradient(to right, #fff5e6, #fff);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    width: 100%;

    top: 0;
    z-index: 1000;
}

.container {
    max-width: clamp(320px, 90vw, 1200px);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    width: clamp(45px, 5vw, 60px);
    height: clamp(45px, 5vw, 60px);

    overflow: hidden;
    border-radius: 50%;
    padding: 2px;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.main-nav__list {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);

    list-style: none;
}

.main-nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);

    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFA500;
    transition: width 0.3s ease;
}

.main-nav__link:hover {
    color: #FFA500;
}

.main-nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-box__button,
.cart__button {
    background: transparent;
    border: none;
    font-size: clamp(1rem, 1.5vw, 1.2rem);

    color: #555;
    padding: clamp(0.6rem, 1vw, 0.8rem);

    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-box__button:hover,
.cart__button:hover {
    background: rgba(255, 165, 0, 0.1);
    color: #FFA500;
    transform: translateY(-2px);
}

.contact__button {
    background: #FFA500;
    color: white;
    border: none;
    padding: clamp(0.6rem, 1vw, 0.8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 25px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
}

.contact__button:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
}


.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.menu-toggle i {
    font-size: 24px;
    color: #333;
    transition: transform 0.3s ease;
}



.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;

}

.hero__left {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 100px;
}

.hero__title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #110c05;
    font-family: 'Pacifico', cursive;
}

.hero__title-highlight {
    position: relative;
    display: inline-block;
    color: #858585;
}

.hero__description {
    font-size: 1.28rem;
    line-height: 1.6;
    color: #858585;
    max-width: 400px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__actions {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__btn {
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 50px;
    background: #FF8C00;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

.hero__btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 140, 0, 0.3);
}

.hero__link {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero__link:hover {
    color: #FF8C00;
    border-bottom-color: #FF8C00;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    width: 2px;
    height: 40%;
    background-color: #ddd;
}

.stat-card__number {
    font-size: 1.8rem;
    font-weight: 500;
    color: #110c05;
    margin-bottom: 0.5rem;
}

.stat-card__label {
    color: #666;
    font-size: 1.1rem;
}

.hero__right {
    position: relative;
}

.hero__image {
    width: 100%;
    height: 100%;
    margin-top: -100px;
}

.hero__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 100px;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}









.explore {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff5e6, #fff);
}

.explore_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.explore__header {
    grid-column: 1/-1;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #110c05;
    font-family: 'Pacifico', cursive;
}

.product-card {
    background: white;
    border-radius: clamp(15px, 2vw, 25px);
    overflow: hidden;
    box-shadow: 0 clamp(5px, 1vw, 10px) clamp(15px, 3vw, 30px) rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: visible;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card__image {
    position: relative;
    padding-top: clamp(65%, 70%, 75%);
}

.product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.favorite-btn:hover {
    background: #FFA500;
    color: white;
}

.product-card__content {
    padding: clamp(1rem, 2vw, 1.5rem);
}

.product-card__title {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    line-height: 1.2;
    color: #110c05;
    margin-bottom: 0.5rem;
}

.product-card__description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 1vw, 1rem);

}

.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    font-weight: 600;
    color: #FFA500;
}

.product-card__btn {
    background: #FFA500;
    color: white;
    border: none;
    padding: clamp(0.6rem, 1vw, 0.8rem);

    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card__btn:hover {
    background: #FF8C00;
    transform: scale(1.1);
}


.explore-premium {
    padding: clamp(40px, 5vw, 80px) clamp(15px, 2vw, 20px);

    background: linear-gradient(135deg, #fff5f5 0%, #d3c9c9 100%);
}

.explore-premium__header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);

    margin-bottom: 20px;
}

.explore-premium__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 2.5vw, 30px);

}

.product-card2 {
    background: white;
    border-radius: clamp(15px, 2vw, 20px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInRight 0.8s ease-out;
}

.product-card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card2__image {
    width: 100%;
    height: clamp(300px, 40vw, 450px);

    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}


.product-card2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}


@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.product-card2__content {
    padding: clamp(20px, 3vw, 25px);

}

.product-card2__title {
    font-size: clamp(20px, 2.5vw, 24px);
    color: #1a1a1a;
    margin-bottom: clamp(8px, 1.5vw, 12px);

}

.product-card2__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: clamp(15px, 2vw, 20px);
    font-size: clamp(14px, 1.5vw, 16px);
}

.product-card2__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: clamp(15px, 2vw, 20px);
    border-top: 1px solid #eee;
}

.product-card2__price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.product-card2__actions {
    display: flex;
    gap: clamp(8px, 1.5vw, 12px);

}

.btn {
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 24px);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary {
    background: #1a1a1a;
    color: white;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 16px);

}

.btn--primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.btn--icon {
    width: clamp(40px, 5vw, 44px);
    height: clamp(40px, 5vw, 44px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
}

.btn--icon:hover {
    background: #1a1a1a;
    color: white;
}












.current_item {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

.current_item__header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
    position: relative;
}


.current_item_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 4vw, 40px);
}


.current_item1 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    padding: clamp(1.5rem, 2vw, 2rem);
}


.current_item1_1 {
    display: flex;
    align-items: center;
    padding: clamp(1rem, 1.5vw, 1.5rem);
    gap: clamp(1rem, 2vw, 2rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.current_item_image {
    flex: 0 0 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 2px dashed #de8b0e;
    padding: clamp(0.3rem, 0.5vw, 0.5rem);
}


.current_item_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}


.current_item_content {
    flex: 1;
}


.current_item_title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: #de8b0e;
    margin-bottom: 0.5rem;
}


.current_item_description {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}


.current_item1_1:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(222, 139, 14, 0.15);
}


.current_item1_1:hover .current_item_image img {
    transform: scale(1.1) rotate(5deg);
}



.current_item2_img {
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 150px;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}


.current_item2_img img {
    width: 100%;
    height: auto;


}





.latest_insights {
    padding: 100px 0;
    background-color: #fafafa;
}

.latest_insights__header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.latest_insights__imgs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.latest_insights__img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.latest_insights__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.latest_insights__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(20%);
    transition: transform 0.4s ease;
}

.latest_insights__overlay h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    margin-bottom: 0.5rem;
}

.latest_insights__overlay p {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.read-more {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.read-more:after {
    content: '→';
    margin-left: 0.5rem;
}

.latest_insights__img:hover img {
    transform: scale(1.05);
}

.latest_insights__img:hover .latest_insights__overlay {
    transform: translateY(0);
}

.latest_insights__img:hover .latest_insights__overlay p,
.latest_insights__img:hover .read-more {
    opacity: 1;
}



.testimonial {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.testimonial__header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: #636e72;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial__container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial__container:last-child {
    margin-bottom: 0;
}

.testimonial__box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.testimonial__box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial__img {
    position: relative;
    flex-shrink: 0;
}

.testimonial__img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial__quote {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ff6b6b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.testimonial__content {
    flex: 1;
}

.testimonial__name {
    font-size: 1.4rem;
    color: #2d3436;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial__role {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial__text {
    color: #2d3436;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__rating {
    color: #ffd43b;
    font-size: 1.2rem;
}

.testimonial__rating i {
    margin-right: 5px;
}

.lovers {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 20px;
}

.lover_header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3rem;
    color: #2d3436;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff7675, #fd79a8);
    border-radius: 2px;
}

.lovers_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lovers_item {
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.lovers_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.lovers_item h3 {
    font-size: 1.2rem;
    color: #2d3436;
    font-weight: 600;
}

.lovers_item i {
    color: #fd79a8;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.lovers_item_details {
    background: #ffffff;
    margin-top: -10px;
    padding: 0 35px 25px;
    border-radius: 0 0 15px 15px;
    display: none;
}

.lovers_item_details h3 {
    font-size: 1.4rem;
    color: #2d3436;
    font-weight: 600;
    margin: 10px;
    padding: 10px;
}


.lovers_item_details p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 10px;
}

.lovers_item_details i {
    color: #ff7675;
}

.lovers_item.active {
    border-radius: 15px 15px 0 0;
    background: #fff5f5;
}


.lovers_item_details.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 50px;
    color: #495057;
    box-shadow: inset 0 20px 30px -20px rgba(0, 0, 0, 0.05);
}

.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.footer__brand {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.footer__logo {
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.footer__logo:hover {
    transform: scale(1.05);
}

.footer__tagline {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #6c757d;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
}

.footer__heading {
    color: #212529;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    border-radius: 2px;
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer__list li:hover {
    transform: translateX(5px);
}

.footer__list a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    display: inline-block;
    position: relative;
}

.footer__list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.footer__list a:hover {
    color: #ff6b6b;
}

.footer__list a:hover::after {
    width: 100%;
}

.footer__list--contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.footer__list--contact i {
    color: #ff6b6b;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.footer__section {
    padding: 20px;
    text-align: center;
}

.footer__heading {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 25px;
    color: #2d3436;
    position: relative;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    border-radius: 2px;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.15);
}

.footer__bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(222, 226, 230, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer__copyright {
    color: #6c757d;
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 300;
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__legal a {
    color: #6c757d;
    text-decoration: none;
    font-size: clamp(0.9rem, 1vw, 1rem);
    transition: all 0.3s ease;
    position: relative;
}

.footer__legal a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ff6b6b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.footer__legal a:hover {
    color: #ff6b6b;
}

.footer__legal a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}