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

html, body {
    width: 100%;
    background: white;
}

body {
    font-family: "Inter", sans-serif;
    min-width: 1280px;
}

/* CONTENEDOR GENERAL */
.container {
    position: relative;
    width: 1280px;
    min-height: 100vh;
    background: white;
    margin: 0 auto;
    overflow: visible;
}
.inactive{
    background: #f9fafb;
    color: #6b7280;
}
.active{
    background: linear-gradient(135deg, rgb(198, 40, 40) 0%, rgb(230, 81, 0) 100%);
    color: white;
}


/* HEADER */
.header {
    position: absolute;
    background: white;
    border-bottom: 2.4px solid transparent;
    height: 80px;
    left: 0;
    top: 0;
    width: 1280px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 20;
}

.logo-area {
    position: absolute;
    height: 115px;
    left: 32px;
    top: -15px;
    width: 115px;
}

    .logo-area img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.search-bar {
    position: absolute;
    height: 48px;
    left: 176.73px;
    right: 400px;
    top: 16px;
}

.search-input {
    position: absolute;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    height: 48px;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 50px;
    padding: 0 160px 0 48px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: #222;
    outline: none;
}
.icono-car  {
    position: absolute;
    left: 18px;
    width: 17px;
    height: 17px;
    top: 35px;
}

    .search-input::placeholder {
        color: #c0bbb6;
    }

.search-icon {
    position: absolute;
    left: 18px;
    width: 17px;
    height: 17px;
    top: 15px;
}

.search-button {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 140px;
    border-radius: 50px;
    background: linear-gradient(139.379deg, rgb(212, 43, 43) 0%, rgb(176, 32, 32) 100%);
    border: none;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: 0.4s;
}

    .search-button:hover {
        box-shadow: 0px 3px 10px rgba(212, 43, 43, 0.35);
    }

.account-button {
    position: absolute;
    border: 2px solid #2a7a2a;
    height: 46px;
    left: 910px;
    top: 17px;
    width: 139.84px;
    border-radius: 50px;
    background: white;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #2a7a2a;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
.text-account{
    position: absolute;
    left: 47px;
    top: 12px;
}

    .account-button:hover {
        background-color: #2a7a2a;
        color: white;
    }
.icono-account {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    top: 10px;
    object-fit: cover;
}

.dropdown {
    position: absolute;
    left: 910px;
    top: 17px;
    display: inline-block;
    z-index: 1000;
}

    .dropdown .account-button {
        position: relative;
        left: auto;
        top: auto;
    }

.dropdown-content {
    width: 139.84px;
    display: none;
    position: absolute;
    background: white;
    min-width: 150px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
    z-index: 1000;
    border: 2px solid #2a7a2a;
}

    .dropdown-content a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: black;
    }

        .dropdown-content a:hover {
            background: #2a7a2a;
            color: white;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.cart-button {
    position: absolute;
    background: linear-gradient(to right, #c62828, #e65100);
    height: 48px;
    left: 1075px;
    top: 16px;
    width: 139.84px;
    border: none;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13.3px;
    color: white;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    background: #2e7d32;
    right: -11px;
    top: -11px;
    width: 23px;
    height: 23px;
    border-radius: 9999px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BANNER */
.banner-section {
    position: absolute;
    height: 420px;
    left: 0;
    top: 80px;
    width: 1280px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    width: 1280px;
    height: 420px;
    overflow: hidden;
}

    .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

#slides {
    display: flex;
    transition: transform 0.5s ease;
}

    #slides img {
        width: 1280px;
        height: 420px;
        object-fit: cover;
        display: block;
    }

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    font-size: 24px;
    color: white;
    z-index: 5;
}

    .carousel-button.left {
        left: 13px;
    }

    .carousel-button.right {
        right: 13px;
    }

/* BOTONES DE NAVEGACIÓN */
.nav-buttons {
    position: absolute;
    background: white;
    border-bottom: 0.8px solid #f3f4f6;
    height: 96px;
    left: 0;
    top: 500px;
    width: 1280px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-button {
    position: absolute;
    background: white;
    border: 1px solid;
    height: 47.2px;
    top: 24px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 13.3px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-left: 40px;
}

    .nav-button.pedidos {
        border-color: #c62828;
        color: #c62828;
        left: 304px;
        width: 197.75px;
        transition: all  0.9s;
    }
    .nav-button.nav-button.pedidos:hover {
        background-color:#c62828;
        color: white;

    }
    .img-nav:hover{
        color: white;
    }

    .nav-button.quienes {
        border-color: #e65100;
        color: #e65100;
        left: 521px;
        width: 224.59px;
        transition: all 0.9s;
    }
    .nav-button.quienes:hover {
        background-color: #e65100;
        color: white;
    }

    .nav-button.preferencial {
        border-color: #2e7d32;
        color: #2e7d32;
        left: 763px;
        width: 207.75px;
        transition: all 0.9s;
    }
    .nav-button.preferencial:hover {
        background-color: #2e7d32;
        color: white;
    }
    #searchSugerencia {
    width: 300px;
    position: absolute;
    top: 47px;
    left: 17px;
    border: none;
    background: white;
}

#searchSugerencia div{
    padding: 10px;
    cursor: pointer;
}

#searchSugerencia div:hover{
    background: #f2f2f2;
}

/* SECCIÓN TABS Y PRODUCTOS */
.tab-section {
    position: absolute;
    background: #f9fafb;
    border-top: 0.8px solid #e5e7eb;
    height: 812.2px;
    left: 0;
    top: 596px;
    width: 1280px;
}

.tabs {
    position: absolute;
    left: 19px;
    top: 22px;
    width: 1248px;
    height: 54px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.tab-button {
    flex: 1;
    height: 52px;
    border: none;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tab-button.active {
        background: linear-gradient(135deg, rgb(198, 40, 40) 0%, rgb(230, 81, 0) 100%);
        color: white;
    }

    .tab-button.inactive {
        background: #f9fafb;
        color: #6b7280;
    }

.sidebar {
    position: absolute;
    left: 16px;
    top: 123px;
    bottom: 24px;
    width: 208px;
    border-right: 0.8px solid #e5e7eb;
}

.sidebar-title {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 11.8px;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}

.filter-button {
    background: white;
    border: 1px solid #e5e7eb;
    height: 37.6px;
    width: 191.2px;
    border-radius: 8px;
    margin-bottom: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #374151;
    text-align: left;
    padding-left: 12px;
    cursor: pointer;
    transition: 0.2s;
}

    .filter-button:hover {
        background: linear-gradient(130deg, #C62828, #E65100);
        color: white;
    }

.price-input {
    background: white;
    border: 1px solid #d1d5db;
    height: 33.6px;
    border-radius: 8px;
    padding: 0 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #111827;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-size: 12.7px;
    color: #374151;
}

.checkbox {
    width: 13px;
    height: 13px;
    border: 1px solid #767676;
    border-radius: 2.5px;
}

/* GRID DE PRODUCTOS */
.products-grid {
    position: absolute;
    left: 240px;
    top: 160px;
    right: 17px;
    display: grid;
    grid-template-columns: repeat(3, 309px);
    gap: 48px 48px;
}

.product-card {
    background: white;
    border: 1px solid #f3f4f6;
    height: 285px;
    width: 309px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
}

.product-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    background: #c62828;
    height: 20px;
    left: 7.8px;
    top: 7.8px;
    border-radius: 9999px;
    padding: 0 8px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 11.1px;
    color: white;
    display: flex;
    align-items: center;
    letter-spacing: 0.6px;
}

.product-rating {
    position: absolute;
    left: 11.8px;
    top: 175.8px;
    font-family: "Inter", sans-serif;
    font-size: 12.6px;
    color: #111827;
}

.product-title {
    position: absolute;
    left: 11.8px;
    top: 200.55px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 13.3px;
    color: #111827;
}

.product-category {
    position: absolute;
    left: 12px;
    top: 220px;
    font-family: "Inter", sans-serif;
    font-size: 10.9px;
    color: #9ca3af;
}

.product-price {
    position: absolute;
    left: 11.8px;
    top: 250.3px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 16.7px;
    color: #c62828;
}

.sort-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #d1d5db;
    height: 40px;
    left: 1129px;
    top: 118px;
    width: 134px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    font-family: "Inter", sans-serif;
    font-size: 11.8px;
    color: #111827;
    padding: 0 12px;
}

/* BOTÓN AÑADIR */
.add-button {
    position: absolute;
    right: 10px;
    top: 241.75px;
    width: 80px;
    height: 28px;
    background: linear-gradient(135deg, rgb(198, 40, 40) 0%, rgb(230, 81, 0) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    transition: width 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .add-button {
    width: 146px;
    color: transparent;
}
.product-card:hover{
    box-shadow: 0px 4px 15px -2px orange;
}

.add-button::after {
    content: attr(data-hover-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: nowrap;
    color: white;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-card:hover .add-button::after {
    opacity: 1;
}

/* DIVISOR */
.gradient-divider {
    position: absolute;
    background: linear-gradient(to right, #c62828 0%, #e65100 50%, #2e7d32 100%);
    height: 4px;
    left: 0;
    top: 1408.2px;
    width: 1280px;
}

/* VIDEO */
.video-section {
    position: absolute;
    background: #fff8f6;
    height: 580px;
    left: 0;
    top: 1412.2px;
    width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.video-label {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 11.3px;
    color: #e65100;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 30px;
    margin-bottom: 5px;
}

.video-title {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 22.2px;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 2.24px;
    margin-bottom: 15px;
}

.video-placeholder {
    position: relative;
    width: 1120px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    top:55px;
}

    .video-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


/* DESTACADOS */
.featured-section {
    position: absolute;
    background: white;
    top: 1990px;
    left: 0;
    width: 1280px;
    height: 550px;
}

.featured-title {
    position: absolute;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 11.3px;
    color: #c62828;
    text-align: center;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.featured-heading {
    position: absolute;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 22.2px;
    color: #111827;
    text-align: center;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 2.24px;
}

.category-circles {
    position: absolute;
    display: flex;
    gap: 60px;
    left: 50%;
    transform: translateX(-50%);
    top: 110px;
}

    .category-circles > div {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.category-circle {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    background: #e0e0e0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 5px solid #c62828;
    transition: 1s;
}

    .category-circle:hover {
        border-color: green;
    }

    .category-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.category-name {
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1f2937;
    text-align: center;
    width: 200px;
    margin-top: 20px;
    line-height: 1.3;
}

.category-count {
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #c62828;
    text-align: center;
    width: 200px;
    margin-top: 5px;
}

/* ABOUT SECTION - CORREGIDA */
.about-section {
    position: absolute;
    background: #fafafa;
    height: 680px;
    left: 0;
    top: 2400px;
    width: 1280px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.about-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 649px;
    height: 110%;
    overflow: hidden;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.about-content {
    position: absolute;
    left: 650px;
    top: 48%;
    transform: translateY(-50%);
    width: 550px;
    padding: 0 40px;
}

.about-label {
    display: inline-block;
    background: linear-gradient(135deg, #c62828 0%, #e65100 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.about-title {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.about-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    margin: 30px 0;
}

    .about-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        color: #374151;
    }

        .about-features li::before {
            content: "✓";
            color: #2e7d32;
            font-weight: bold;
            font-size: 18px;
        }

.about-buttons {
    display: flex;
    gap: 38px;
    margin-top: 32px;
}

.about-button-primary {
    background: linear-gradient(135deg, #c62828 0%, #e65100 100%);
    color: white;
    border: none;
    
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 47px;
    width: 168px;
}

    .about-button-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
    }

.about-button-secondary {
    background: white;
    color: #2e7d32;
    border: 2px solid #2e7d32;

    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 168px;
    height: 47px;
}

    .about-button-secondary:hover {
        background: #2e7d32;
        color: white;
    }

/* PLACEHOLDER */
.image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

/* FOOTER */
.site-footer {
    position: absolute;
    top: 3145px;
    left: 0;
    width: 1280px;
    background: #1a1a1a;
    z-index: 50;
}

.footer-container {
    width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 42px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand .logo-placeholder {
    width: 56px;
    height: 56px;
    background-color: #2a2a2a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .footer-brand .logo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .brand-text h2 {
        font-size: 23px;
        font-weight: 800;
        letter-spacing: 2.5px;
        line-height: 1.1;
        margin: 0;
        white-space: nowrap;
    }

        .brand-text h2 .confiteria {
            color: #e53935;
        }

        .brand-text h2 .asdo {
            color: #ff6f00;
        }

    .brand-text .tagline {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        color: #4caf50;
        text-transform: uppercase;
        margin-top: 2px;
    }

.footer-brand p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #9e9e9e;
    max-width: 280px;
    margin: 0;
    margin-top: 6px;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    background-color: #2a2a2a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

    .social-icon:hover {
        background-color: #383838;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
        fill: #ffffff;
        display: block;
    }

.footer-column {
    position: relative;
    padding-top: 4px;
}

    .footer-column h3 {
        font-size: 13.5px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        margin-bottom: 22px;
        padding-bottom: 16px;
        border-bottom: 1px solid #2e2e2e;
    }

    .footer-column ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 17px;
        margin: 0;
        padding: 0;
    }

        .footer-column ul li a {
            text-decoration: none;
            color: #9e9e9e;
            font-size: 15px;
            transition: color 0.3s ease;
        }

            .footer-column ul li a:hover {
                color: #ffffff;
            }

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid #2e2e2e;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon.location {
        background-color: #3e2723;
    }

    .contact-icon.phone {
        background-color: #4e342e;
    }

    .contact-icon.email {
        background-color: #1b3a1b;
    }

    .contact-icon svg {
        width: 19px;
        height: 19px;
        display: block;
        fill: none;
    }

    .contact-icon.location svg {
        stroke: #ef5350;
    }

    .contact-icon.phone svg {
        stroke: #ff8a65;
    }

    .contact-icon.email svg {
        stroke: #66bb6a;
    }

.contact-item span {
    font-size: 14.5px;
    color: #b0b0b0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid #1f1f1f;
    position: relative;
}

    .footer-bottom p {
        font-size: 13px;
        color: #6b6b6b;
        margin: 0;
    }

.made-with {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b6b6b;
}

.heart {
    font-size: 16px;
}

/* responsibe del fouter */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 32px;
    }

    .footer-brand p {
        max-width: 250px;
    }
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 44px 0 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }
}

@media (max-width: 550px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 0 28px;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .contact-item span {
        font-size: 13px;
    }
}
.star{
    width: 40px;
    height: 40px;
}