/* Reasons section */
@media only screen and (max-width: 1199px) {
    .service-box {
        padding: 20px 5px;
    }
}

@media only screen and (min-width: 1400px) {
    .service-box {
        padding: 20px 5px;
    }
}

.service-box {
    background-color: var(--color-parchment);
    padding: 10px 8px;
}

.service-box:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.01);
    border-color: var(--color-ghost-white);
}

.service-box .icon img {
    max-height: 160px;
}

.service-box .icon {
    margin-bottom: 8px;
}

.reasons {
    background-color: var(--color-parchment);
}

.reasons-content {
    background-color: var(--color-white);
    border-top-left-radius: 7rem !important;
    border-top-right-radius: 7rem !important;
}

.btn-publicidad {
    padding: 10px 2px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    width: 35% !important;
}

/* Category section */
.categories-section {
    background-color: var(--color-ghost-white);
    border-top-left-radius: 7rem !important;
    border-top-right-radius: 7rem !important;
    padding: 60px 20px;
    min-height: 100svh;
}

.categories-header {
    margin-bottom: 60px;
}

.categories-header h2 {
    letter-spacing: -3px;
}

.categories-header h6 {
    letter-spacing: 1px;
}

.categories-container {
    background-color: var(--color-white);
    border-radius: 16px !important;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 1400px;
    margin: 0 auto;
}

.skeleton-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.skeleton-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 50%;
    margin-bottom: 16px;
}

.skeleton-text {
    width: 70%;
    height: 18px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.category-box {
    background-color: var(--color-parchment);
    border-radius: 16px !important;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    border: 2px solid transparent;
}

.category-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px 3px 0 0;
}

.category-box:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.01);
    border-color: var(--color-ghost-white);
}

.category-box:hover::after {
    width: 80%;
}

.category-box .icon {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.category-box .icon img {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-box:hover .icon img {
    transform: scale(1.1);
}

.row--20 {
    margin: 0 -10px;
}

.row--20>.col {
    padding: 0 10px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .categories-header h2 {
        font-size: 2rem;
        letter-spacing: normal;
    }

    .categories-container {
        padding: 30px 20px;
    }

    .category-box {
        min-height: 160px;
        padding: 25px 15px;
    }

    .category-box .icon {
        height: 80px;
    }

    .category-box .icon img {
        max-width: 70px;
        max-height: 70px;
    }
}

@media (max-width: 767px) {
    .categories-section {
        padding: 40px 15px;
    }

    .categories-header {
        margin-bottom: 35px;
    }

    .categories-header h2 {
        font-size: 1.75rem;
    }

    .categories-header p {
        font-size: 1rem;
    }

    .categories-container {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .row--20 {
        margin: 0 -7px;
    }

    .row--20>.col {
        padding: 0 7px;
        margin-bottom: 15px;
    }

    .category-box {
        min-height: 140px;
        padding: 20px 12px;
    }

    .category-box .title {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .category-box {
        min-height: 130px;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Products section */
.products-container {
    background-color: var(--color-ghost-white);

}

.products-section {
    background-color: var(--color-parchment);
    border-top-left-radius: 7rem !important;
    border-top-right-radius: 7rem !important;
    padding: 60px 20px;
    min-height: 90svh;
    position: relative;
}

.products-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 15px;
}

.products-header p {
    font-size: 1.8rem;
    color: var(--color-black);
    font-weight: 300;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-row {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    margin-bottom: 30px;
    position: relative;
}

.carousel-row::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scrollLeft 40s linear infinite;
}

#row1:hover .carousel-track {
    animation-play-state: paused;
}

#row2:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Segunda fila va en dirección contraria */
#row2 .carousel-track {
    animation: scrollRight 45s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

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

.product-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 1.3rem;
    color: var(--color-black);
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.85rem;
    color: #666;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 12px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-view {
    flex: 1;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.btn-view:hover {
    background: #fff5f8 !important;
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary) !important;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-ghost-white);
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-icon:hover {
    border-color: var(--color-primary);
    background: #fff5f8;
}

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

.carousel-nav {
    display: none;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.cta-section h3 {
    color: #1a1a1a;
    margin-bottom: 30px;
}

.btn-explore {
    background: var(--color-lavender);
    color: var(--color-black);
    border: none;
    padding: 16px 12px;
    border-radius: 10px;
    font-size: 1.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: var(--color-ghost-white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }

    .products-header {
        margin-bottom: 40px;
    }

    .products-header h2 {
        font-size: 2rem;
    }

    .products-header p {
        font-size: 1.1rem;
    }

    .carousel-container {
        padding: 0 10px;
    }

    .product-card {
        flex: 0 0 240px;
    }

    .product-image {
        height: 180px;
    }

    .carousel-track {
        animation-duration: 30s;
    }

    #row2 .carousel-track {
        animation-duration: 35s;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h3 {
        font-size: 1.8rem;
    }

    .btn-explore {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-header h2 {
        font-size: 1.6rem;
    }

    .products-header p {
        font-size: 1rem;
    }

    .product-card {
        flex: 0 0 200px;
    }

    .product-image {
        height: 150px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .btn-view {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .btn-icon {
        width: 36px;
        height: 36px;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }
}

.skeleton-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 16px;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.medium {
    width: 80%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Testimonios */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 5rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.testimonials-header h2 .bold {
    font-weight: 950;
    display: block;
    line-height: 1;
}

.testimonials-header p {
    font-size: 2rem;
    color: #666;
    font-weight: 450;
    margin-top: 20px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-ghost-white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 32px;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--color-black);
    font-weight: 450;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--color-ghost-white);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 15%;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFD0D0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-icon {
    width: 28px;
    height: 28px;
    stroke: #e91e63;
    stroke-width: 2;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.author-location {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-header h2 {
        font-size: 2.6rem;
    }

    .testimonials-header p {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 30px 24px;
        min-height: 280px;
    }

    .testimonial-text {
        font-size: 1.6rem;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: 1.2rem;
    }

    .author-location {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-header p {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 1.3rem;
        line-height: 1.6;
    }
}


/* Newsletter */
.newsletter-section {
    padding: 80px 0px 0px 0px;
    background: var(--color-parchment);
}

.newsletter-container {
    width: 100%;
    margin: 0 auto;
    background: var(--color-white);
    border-top-left-radius: 7rem !important;
    border-top-right-radius: 7rem !important;
    padding: 100px 150px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: visible;
}

.newsletter-content {
    z-index: 2;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.newsletter-badge svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

.newsletter-title {
    font-size: 5.7rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.newsletter-title .brand {
    color: var(--color-primary);
}

.newsletter-subtitle {
    font-size: 2.6rem;
    color: var(--color-black);
    margin-bottom: 25px;
    font-weight: 450;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 700px;
}

.newsletter-input-wrapper {
    flex: 1;
    position: relative;
}

.newsletter-input {
    width: 100% !important;
    padding: 22px 24px 22px 56px !important;
    border: 2px solid var(--color-mauve) !important;
    border-radius: 12px !important;
    font-size: 1.7rem !important;
    transition: all 0.3s !important;
    background: white !important;
    color: var(--color-black) !important;
    line-height: 0 !important;
}

.newsletter-input:focus {
    outline: none !important;
    border-color: var(--color-mauve) !important;
    box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.15) !important;
    color: var(--color-black) !important;
}

.newsletter-input::placeholder {
    color: var(--color-mauve) !important;
    font-size: 1.6rem !important;
    text-align: center !important;
}

.input-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    stroke: var(--color-mauve);
}

.newsletter-button {
    padding: 16px 12px !important;
    background: var(--color-mauve) !important;
    color: white !important;
    border: none !important;
    border-radius: 14px !important;
    font-size: 2rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    white-space: nowrap !important;
}

.newsletter-button:hover {
    background: var(--color-lavender) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(192, 132, 252, 0.3) !important;
}

.newsletter-button:active {
    transform: translateY(0) !important;
}

.newsletter-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.newsletter-illustration img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Ilustración como imagen */
.illustration-placeholder {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.newsletter-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

/* Responsive */
@media (max-width: 1200px) {
    .newsletter-container {
        padding: 70px 50px;
        gap: 60px;
        grid-template-columns: 1.3fr 0.7fr;
    }

    .newsletter-title {
        font-size: 4rem;
        letter-spacing: normal;
    }

    .newsletter-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .newsletter-container {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 40px;
    }

    .newsletter-illustration {
        order: -1;
    }

    .illustration-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-title {
        font-size: 3rem;
    }

    .newsletter-subtitle {
        font-size: 1.8rem;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0px 0px 0px;
    }

    .newsletter-container {
        padding: 40px 25px;
    }

    .newsletter-title {
        font-size: 3rem;
    }

    .newsletter-subtitle {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-input-wrapper {
        width: 75%;
    }

    .newsletter-button {
        width: 75%;
        padding: 16px 32px;
        text-align: center;
    }

    .illustration-placeholder {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .newsletter-container {
        padding: 30px 30px;
    }

    .newsletter-title {
        font-size: 2.5rem;
    }

    .newsletter-subtitle {
        font-size: 2rem;
    }

    .newsletter-input {
        padding: 16px 18px 16px 48px;
        font-size: 0.95rem;
    }

    .newsletter-badge {
        font-size: 0.9rem;
    }

    .newsletter-badge svg {
        width: 20px;
        height: 20px;
    }

    .illustration-placeholder {
        max-width: 200px;
    }

    .newsletter-image {
        max-width: 200px;
    }
}

/* Loading state */
.newsletter-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.newsletter-button.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success message */
.success-message {
    display: none;
    padding: 12px 20px;
    background: #4caf50;
    color: white;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.95rem;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

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

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

/* footer */
.footer-section {
    background: var(--color-white);
    padding: 80px 20px 40px;
    border-top: 1px solid var(--color-ghost-white);
}

.footer-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-column h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    max-width: 250px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-ghost-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #666;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-contact-info {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.8;
}

.footer-contact-info a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    transition: color 0.3s;
}

.footer-contact-info a:hover {
    color: var(--color-primary);
}

.footer-contact-info svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-ghost-white);
}

.footer-copyright {
    color: var(--color-gray-600);
    font-size: 1.6rem;
}

.footer-copyright a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-payments span {
    color: var(--color-gray-600);
    font-size: 1.6rem;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    height: 24px;
    width: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-logo-column {
        grid-column: span 2;
        order: -1;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 20px 30px;
    }

    .footer-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-logo-column {
        grid-column: span 1;
        order: -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-payments {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.6rem;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-logo {
        max-width: 150px;
    }
}