/*
Theme Name: Creaciones Cast
Theme URI: https://example.com
Author: Antigravity
Author URI: https://example.com
Description: Un tema simple para mostrar productos y pedir por WhatsApp.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creaciones-cast
*/

/* Reset & Basic Styles */
:root {
    --primary-color: #25d366;
    /* WhatsApp Green */
    --secondary-color: #128c7e;
    --text-color: #333;
    --bg-color: #f4f4f4;
    --card-bg: #fff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Main Slider */
.hero-slider {
    width: 100%;
    height: 500px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-align: center !important;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

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

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

.slide-content h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin: 0 0 1rem 0 !important;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin: 0 auto 2.5rem !important;
    max-width: 600px;
    line-height: 1.4;
}

.slide-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        /* Hide arrows on mobile for cleaner UI */
    }
}

/* Features Banner */
.features-banner {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-wrapper {
    background-color: #a7f3d0;
    /* Soft teal background as requested in image */
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
}

.feature-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #b06ab3;
    /* Purple/pinkish title as in image */
    font-weight: 700;
}

.feature-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .feature-item {
        background: #f8fafc;
        padding: 15px;
        border-radius: 15px;
        border: 1px solid #f1f5f9;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.right-side-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu Dropdown */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 90;
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-menu-dropdown {
    position: fixed;
    top: -100%;
    /* Hidden at top */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 95;
    padding: 130px 30px 40px;
    /* Top padding to clear the header */
    border-bottom: 2px solid #f1f5f9;
}

/* Adjust for Admin Bar */
body.admin-bar .mobile-menu-dropdown {
    padding-top: 170px;
}

.mobile-menu-dropdown.open {
    top: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.mobile-nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-footer p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

/* Menu Toggle Animation */
.menu-toggle {
    display: none;
    z-index: 100;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle svg {
    transition: transform 0.3s ease;
}

.menu-toggle.open svg {
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    .header-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Cart Icon */
.cart-trigger {
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Categories Section (Chip Style) */
.categories-section {
    padding: 30px 0;
    background-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 5px;
}

.section-header p {
    color: #718096;
    font-size: 0.95rem;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    /* Pill/Chip style */
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-card:hover {
    transform: translateY(-2px);
    background-color: #19c1ce;
    border-color: #19c1ce;
}

.category-icon {
    display: none;
    /* Hide large icons for chip style */
}

.category-card h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 600;
    transition: color 0.2s ease;
}

.category-card:hover h3 {
    color: #fff;
}

.category-card span {
    font-size: 0.75rem;
    color: #a0aec0;
    background: #f7fafc;
    padding: 2px 8px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.category-card:hover span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding: 30px 0;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.product-cat-label {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a202c;
}

.product-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.product-title a:hover {
    color: #0fb3c1;
}

.product-description {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.4rem;
    color: #0fb3c1;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: auto;
}

.add-to-cart-btn {
    background: linear-gradient(90deg, #19c1ce 0%, #06b6d4 100%);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.add-to-cart-btn:hover {
    opacity: 0.9;
}

.add-to-cart-btn svg {
    margin-top: -2px;
}

/* Cart Modal/Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.cart-overlay.open {
    display: block;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hidden start */
    width: 350px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.cart-item-thumb-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f1f5f9;
}

.cart-item-info h4 {
    margin: 0 0 5px;
    font-size: 0.9rem;
}

.cart-item-price {
    font-size: 0.85rem;
    color: #666;
}

.remove-item {
    color: red;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 0.8rem;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fdfdfd;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.whatsapp-checkout-btn {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.whatsapp-checkout-btn:hover {
    background-color: var(--secondary-color);
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 220px;
    z-index: 5;
    border: 1px solid #f0f0f0;
}

.about-badge span {
    display: inline-block;
    background: #a7f3d0;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.about-badge h4 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #1a202c;
}

.about-content-label {
    text-transform: uppercase;
    color: #19c1ce;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.about-title {
    font-size: 2.8rem;
    line-height: 1.1;
    color: #0fb3c1;
    margin-bottom: 40px;
    font-weight: 800;
}

.about-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #19c1ce;
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-card-icon {
    width: 45px;
    height: 45px;
    background: #e0f2f1;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #19c1ce;
}

.about-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #1a202c;
    font-weight: 700;
}

.about-card p {
    margin: 0;
    color: #718096;
    line-height: 1.6;
    font-size: 1.05rem;
}

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-badge {
        right: 10px;
        bottom: 10px;
        max-width: 180px;
        padding: 15px;
    }
}

/* Single Product Page */
.product-detail-page {
    padding-top: 40px;
    padding-bottom: 80px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 40px;
}

.breadcrumb a {
    color: #718096;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #19c1ce;
}

.breadcrumb span {
    color: #1a202c;
    font-weight: 700;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.rounded-image {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.single-product-image {
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 30px;
}

.single-product-image .rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-cat-badge {
    display: inline-block;
    background: #e0f2f1;
    color: #0fb3c1;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-main-title {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 800;
}

.product-main-price {
    font-size: 2.2rem;
    color: #19c1ce;
    font-weight: 800;
    margin-bottom: 30px;
}

.product-main-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.purchase-box {
    background: #fff;
    border: 1px solid #edf2f7;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.qty-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #718096;
    margin-bottom: 15px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 25px;
    background: #f7fafc;
    width: fit-content;
    border-radius: 12px;
    padding: 5px;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #4a5568;
    transition: background 0.2s;
    border-radius: 8px;
}

.qty-btn:hover {
    background: #edf2f7;
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none !important;
    background: transparent !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    pointer-events: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-big-btn {
    background: linear-gradient(90deg, #19c1ce 0%, #4f46e5 100%);
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    transition: transform 0.2s, opacity 0.2s;
}

.add-to-cart-big-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #718096;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #1a202c;
}

@media (max-width: 968px) {
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #productos h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        /* Single column list */
        gap: 15px;
        padding: 0 10px;
    }

    .product-card {
        flex-direction: row;
        /* Image on left */
        align-items: center;
        min-height: 120px;
    }

    .product-image-container {
        width: 110px;
        /* Consistent thumbnail size */
        height: 110px;
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
        padding-top: 0;
        margin: 10px;
        border-radius: 12px;
    }

    .product-image {
        position: relative;
    }

    .product-cat-label {
        margin-top: 5px;
        font-size: 0.7rem;
        color: #94a3b8;
    }

    .product-info {
        padding: 10px 15px 10px 0;
        flex-grow: 1;
        justify-content: center;
    }

    .product-title {
        font-size: 1.1rem;
        margin-bottom: 3px;
        font-weight: 500;
        /* Subtle medium weight for better readability at larger size */
        line-height: 1.2;
    }

    .product-description {
        display: none;
    }

    .product-price {
        font-size: 1.05rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .add-to-cart-btn {
        width: auto;
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    /* About Us Responsive */
    .about-section {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .categories-grid {
        gap: 8px;
    }

    .category-card {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        /* Single column on very small screens if desired, but 2 often looks better */
    }
}

/* Footer Styles */
.site-footer {
    background-color: #f1f5f9;
    padding: 60px 0 20px;
    margin-top: 60px;
    font-size: 0.95rem;
    color: #64748b;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.footer-col h3.brand-title {
    color: #128c7e;
    font-size: 1.25rem;
}

.footer-col p {
    line-height: 1.6;
}

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

.footer-contact-list li {
    margin-bottom: 15px;
}

.footer-contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #64748b;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: #128c7e;
}

.footer-socials {
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 8px;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #128c7e;
    color: white;
}

.financed-section {
    margin-top: 30px;
}

.financed-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.financed-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.financed-img {
    height: 65px;
    width: auto;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 30px;
    }
}