@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

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

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    height: 60px;
    background-color: white;
    width: 100%;
    position: static;
    border-bottom: 1px solid #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    flex: 1;
}

.navbar .logo img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    cursor: default;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 40px;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    order: 1;
    position: relative;
}

@media (max-width: 768px) {
    .search-container.active {
        order: initial;
        position: fixed;
        width: 100%;
        padding: 1rem;
        background: white;
        z-index: 1002;
        display: flex;
        opacity: 1;
        visibility: visible;
        justify-content: center;
        transform: none;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
        top: 60px;
        left: 0;
    }

    .search-results {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: calc(100vh - 110px);
        z-index: 1005;
    }
}

.search-input {
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    width: 180px;
    font-size: 14px;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.search-results {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 300px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1005;
    display: none;
}

.search-result-item {
    display: flex;
    padding: 0.75rem;
    gap: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.result-info {
    flex: 1;
}

.result-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.result-info p {
    margin: 0.25rem 0;
    font-size: 0.8rem;
    color: #666;
}

.result-price {
    font-weight: 600;
    color: #2c5282;
    font-size: 0.9rem;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
}

.no-results p {
    margin: 10px 0;
}

.no-results p:first-child {
    font-size: 1.1em;
    color: #333;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.2s ease;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.whatsapp-link i {
    margin-right: 6px;
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
}

#pagina_actual{
    color: #CA0C0C;;
}

.nav-links a:hover {
    color: #CA0C0C;
}

.cart-icon {
    margin-left: 24px;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    order: 2;
}

.hero-carousel {
    position: relative;
    height: 85vh;
    overflow: hidden;
    max-height: 900px;
    min-height: 600px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .hero-carousel {
        height: 60vh;
        min-height: 400px;
    }
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 768px) {
    .hero-carousel {
        height: 50vh;
        min-height: 300px;
    }

    .carousel-slide img {
        object-position: top;
    }

    .carousel-content {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }

    .carousel-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #000000;
    }

    .carousel-content p {
        font-size: 0.9rem;
    }
}

.carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.size-guide {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.size-guide-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.size-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.size-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.size-guide-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.size-guide-info h3 {
    margin-bottom: 1rem;
}

.size-guide-info ul {
    list-style: none;
    padding: 0;
}

.size-guide-info li {
    margin-bottom: 0.5rem;
    color: #666;
}

.carousel-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background-color: #f5f5f5;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 800px;
}

.carousel-content h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.carousel-content p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 3;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.best-sellers {
    padding: 4rem 5%;
}

.best-sellers h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-card img:hover {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
    margin: 0;
}

.product-card a{
    text-decoration: none;
    color: #333333;
}

.product-card .price {
    padding: 0 1rem;
    font-weight: 600;
    color: #000;
}

.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Featured Collection */
.featured-collection {
    padding: 4rem 5%;
}

.featured-collection h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.collection-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    margin: 0;
    text-align: center;
}

/* Size Guide */
.size-guide {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.size-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.size-chart {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.size-chart table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.size-chart th,
.size-chart td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #eee;
}

.size-chart th {
    background: #000;
    color: #fff;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ccc;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    padding: 0.5rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    flex-grow: 1;
}

.newsletter-button {
    padding: 0.5rem 1rem;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background: #ccc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ccc;
}

.copyright {
    font-size: 0.9rem;
    color: #ccc;
}

.size-guide {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.size-guide-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.size-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.size-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.size-guide-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.size-guide-info h3 {
    margin-bottom: 1rem;
}

.size-guide-info ul {
    list-style: none;
    padding: 0;
}

.size-guide-info li {
    margin-bottom: 0.5rem;
    color: #666;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.previous {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}
/* Mobile Navigation Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    color: #333;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        height: 60px;
        width: 100%;
        background: white;
        z-index: 1000;
    }

    .menu-toggle {
        display: block;
        order: 1;
        z-index: 1001;
    }

    .logo {
        order: 2;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .cart-icon {
        order: 3;
        margin-left: auto;
        margin-right: 0;
        display: flex;
        align-items: center;
        height: 100%;
        z-index: 1001;
        position: absolute;
        right: 5%;
    }

    .search-container {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: white;
        z-index: 1002;
        display: none;
        justify-content: center;
        transform: none;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .search-container.active {
        display: flex;
    }

    .nav-links.active ~ .search-container {
        display: flex;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 32px;
    color: #fff;
}

.top-banner {
    width: 100%;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.site-banner {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.banner-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.banner-content span {
    display: inline-block;
}

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