/* Variables */
:root {
    --primary-color: #1E3A8A; /* Azul  */
    --secondary-color: #142a5e; /* Azul denim claro */
    --accent-color: #d1a570; /* Tonos tierra */
    --light-color: #f5f6fa;
    --dark-color: #2f3640;
    --white: #ffffff;
    --gray-light: #f1f2f6;
    --gray-medium: #dfe4ea;
    --gray-dark: #a4b0be;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 4rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-actions a {
    font-size: 1.8rem;
    transition: var(--transition);
}

.user-actions a:hover {
    color: var(--accent-color);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
    background-color: var(--accent-color);
    color: var(--white);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-bottom: 5rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

/* Featured Categories */
.featured-categories {
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: var(--transition);
    height: 300px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card h3 {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--white);
    font-size: 2.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.category-card:hover img {
    transform: scale(1.05);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-weight: 600;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-dark);
    font-size: 1.4rem;
}

.product-rating {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1.4rem;
    transition: var(--transition);
    flex-grow: 1;
}

.add-to-cart:hover {
    background-color: var(--dark-color);
}

.view-details {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1.4rem;
    transition: var(--transition);
    margin-left: 1rem;
}

.view-details:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--error-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.7)), url('../images/banner-oferta.jpg');
    color: var(--white);
    padding: 5rem 0;
    margin: 5rem 0;
    text-align: center;
}

.offer-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.offer-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 700;
}

.countdown-item span:last-child {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Detail Page */
.product-detail-page {
    padding: 5rem 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    cursor: pointer;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.current-price-detail {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price-detail {
    font-size: 1.8rem;
    text-decoration: line-through;
    color: var(--gray-dark);
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.product-description {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.product-variants {
    margin-bottom: 3rem;
}

.variant-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.size-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover {
    border-color: var(--primary-color);
}

.size-option.selected {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.quantity-btn {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--gray-medium);
    background-color: var(--white);
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.quantity-input {
    width: 5rem;
    height: 3rem;
    text-align: center;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
}

.product-actions-detail {
    display: flex;
    gap: 1.5rem;
}

.add-to-cart-detail {
    flex-grow: 1;
    padding: 1.5rem;
    font-size: 1.6rem;
}

.buy-now {
    flex-grow: 1;
    padding: 1.5rem;
    font-size: 1.6rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    transition: var(--transition);
}

.buy-now:hover {
    background-color: #c1915e;
}

.sale-timer {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.sale-timer h3 {
    margin-bottom: 1rem;
    color: var(--error-color);
}

.timer-display {
    font-weight: 600;
}

/* Cart Page */
.cart-page {
    padding: 5rem 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cart-item-variant {
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.remove-item {
    background: none;
    border: none;
    color: var(--error-color);
    font-size: 1.4rem;
    cursor: pointer;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control button {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--gray-medium);
    background-color: var(--white);
    border-radius: 4px;
}

.quantity-control input {
    width: 4rem;
    height: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
}

.cart-summary {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    align-self: flex-start;
    position: sticky;
    top: 2rem;
}

.cart-summary h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-medium);
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-medium);
}

.empty-cart-message {
    text-align: center;
    padding: 3rem 0;
    font-size: 1.8rem;
    color: var(--gray-dark);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

.footer-logo {
    height: 4rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border-radius: 4px;
    border: none;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.modal-icon.success {
    color: var(--success-color);
}

.modal-icon.error {
    color: var(--error-color);
}

.modal-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.modal-message {
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        grid-template-columns: 80px 1fr;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 2rem;
        display: none;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content p {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2.4rem;
    }
    
    .countdown-item span:last-child {
        font-size: 1.2rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 150px;
    }
    
    .cart-item-actions {
        flex-direction: row;
        align-items: center;
    }
}
/*------------CSS para contacto y formulario-----------*/
/* Contact Page Styles */
.contact-page {
    padding: 5rem 0;
}

.page-title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-form-container h2,
.contact-info-container h2,
.map-container h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(93, 109, 126, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.contact-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--dark-color);
    line-height: 1.6;
}

.social-media {
    margin-top: 3rem;
}

.social-media h3 {
    margin-bottom: 1.5rem;
}

.map-container {
    margin-top: 5rem;
}

.google-map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .google-map {
        height: 300px;
    }
}
/*-----------CSS adicional para Mi Cuenta style.css---------------*/
/* Account Page Styles */
.account-page {
    padding: 5rem 0;
}

.account-tabs {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--gray-medium);
}

.tab-btn {
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gray-dark);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    padding: 3rem;
    display: none;
}

.tab-content.active {
    display: block;
}

.login-form,
.register-form,
.profile-section,
.orders-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.forgot-password {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 3rem;
    text-align: center;
}

.social-login p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: var(--gray-medium);
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-social {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-social.facebook {
    background-color: #3b5998;
    color: white;
}

.btn-social.google {
    background-color: #db4437;
    color: white;
}

.btn-social:hover {
    opacity: 0.9;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-right: 1rem;
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Profile Section */
.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-avatar {
    position: relative;
    width: 100px;
    height: 100px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gray-medium);
}

.avatar-upload-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.avatar-upload-btn:hover {
    background-color: var(--dark-color);
}

#avatar-upload {
    display: none;
}

.profile-welcome h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-welcome p {
    color: var(--gray-dark);
    font-size: 1.4rem;
}

.section-subtitle {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-medium);
}

/* Orders Section */
.orders-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    font-size: 1.4rem;
}

.filter-group select {
    padding: 0.8rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--gray-medium);
}

.search-group {
    display: flex;
}

.search-group input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-medium);
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.search-group button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 1.5rem;
    cursor: pointer;
}

.orders-list {
    margin-top: 2rem;
}

.order-item {
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--gray-medium);
    flex-wrap: wrap;
    gap: 1rem;
}

.order-header > div {
    font-size: 1.4rem;
}

.order-id {
    font-weight: 600;
}

.order-status {
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.delivered {
    background-color: #d4edda;
    color: #155724;
}

.order-status.shipped {
    background-color: #cce5ff;
    color: #004085;
}

.order-status.canceled {
    background-color: #f8d7da;
    color: #721c24;
}

.order-total {
    font-weight: 600;
    color: var(--primary-color);
}

.order-details {
    padding: 1.5rem;
}

.order-products {
    margin-bottom: 1.5rem;
}

.product-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.product-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 1.2rem;
    color: var(--gray-dark);
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.orders-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-medium);
    background: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover {
    background-color: var(--light-color);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 0 auto;
        font-size: 1.4rem;
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .orders-filter {
        flex-direction: column;
    }
    
    .search-group {
        width: 100%;
    }
    
    .search-group input {
        flex-grow: 1;
    }
    
    .order-header > div {
        flex: 1 0 50%;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .order-actions .btn {
        width: 100%;
    }
}
/*--------------Estilos CSS adicionales para los colores (style.css)---------------*/
/* Product Detail Page */
.product-detail-page {
    padding: 5rem 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    cursor: pointer;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(93, 109, 126, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.product-info-detail h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.current-price-detail {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price-detail {
    font-size: 1.8rem;
    text-decoration: line-through;
    color: var(--gray-dark);
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.product-description {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.product-variants {
    margin-bottom: 3rem;
}

.variant-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.size-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover {
    border-color: var(--primary-color);
}

.size-option.selected {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Estilos para el selector de colores */
.color-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: var(--dark-color);
}

.color-option.selected::after {
    content: '✓';
    color: white;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
    font-size: 1.2rem;
}

.color-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 1.2rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.color-option:hover .color-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        grid-template-columns: 80px 1fr;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-list {
        flex-direction: row;
        order: 2;
        margin-top: 1rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}
/*------------4. Añade estos estilos CSS en style.css-------------*/
/* Featured Products Section */
.featured-products {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.view-more-container {
    text-align: center;
    margin-top: 4rem;
}

.no-products {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 1.8rem;
    color: var(--gray-dark);
    padding: 3rem 0;
}

/* Responsive para mostrar más columnas en pantallas grandes */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*--------------Añade esto a tu style.css por si faltan imágenes:-------------*/
.product-image {
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}
/*-----------CSS Adicional para Sobre Nosotros - style.css--------------*/
/* About Page Styles */
.about-page {
    padding-bottom: 5rem;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/about-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.about-hero p {
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.about-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.video-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.video-subtitle {
    font-size: 1.6rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.6rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-color);
}

.team-member h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-member .social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-member .social-links a:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* Call to Action */
.about-cta {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.about-cta .btn {
    margin: 0 1rem;
}

.about-cta .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.about-cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .about-hero p {
        font-size: 1.8rem;
    }
    
    .about-cta .btn {
        display: block;
        width: 80%;
        margin: 0 auto 1rem;
    }
}
/*-------------CSS Adicional para Politica de privacidad - style.css-------------*/
/* Privacy Page Styles */
.privacy-page {
    padding: 5rem 0;
}

.page-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-size: 1.4rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.privacy-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.contact-methods {
    list-style: none;
    padding-left: 0;
}

.contact-methods li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-methods i {
    width: 20px;
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
}
/*---------------CSS Adicional para Terminos y Condiciones - style.css--------------*/
/* Terms Page Styles */
.terms-page {
    padding: 5rem 0;
}

.page-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-size: 1.4rem;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.terms-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.terms-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-section a:hover {
    text-decoration: underline;
}

.contact-methods {
    list-style: none;
    padding-left: 0;
}

.contact-methods li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-methods i {
    width: 20px;
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .terms-content {
        padding: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.8rem;
    }
}
/*----------------CSS Adicional para Politica de Envios - style.css-------------*/
/* Shipping Policy Page Styles */
.shipping-page {
    padding: 5rem 0;
}

.page-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-size: 1.4rem;
}

.shipping-content {
    max-width: 1000px;
    margin: 0 auto;
}

.shipping-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.shipping-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shipping-section h2 i {
    color: var(--accent-color);
}

.shipping-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.shipping-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.shipping-section a:hover {
    text-decoration: underline;
}

/* Coverage Map */
.coverage-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.map-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.coverage-info {
    padding: 1rem;
}

.coverage-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.coverage-info ul {
    list-style: none;
    padding-left: 0;
}

.coverage-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.coverage-info i {
    color: var(--accent-color);
}

/* Shipping Cards */
.shipping-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shipping-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.shipping-card.highlight {
    background-color: var(--primary-color);
    color: white;
}

.shipping-card.highlight .price {
    color: white;
}

.shipping-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.shipping-card .price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.shipping-card p {
    margin-bottom: 0.5rem;
}

.shipping-card small {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Delivery Timeline */
.delivery-timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 3px solid var(--light-color);
}

.timeline-content {
    padding: 0.5rem 1.5rem;
    background-color: var(--light-color);
    border-radius: 6px;
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.notice-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    margin-top: 2rem;
}

.notice-box i {
    color: #ffc107;
    font-size: 2rem;
}

/* Icon List */
.icon-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 4px;
}

.icon-list i {
    color: var(--accent-color);
    font-size: 1.6rem;
    width: 25px;
}

/* Shipping Steps */
.shipping-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background-color: var(--light-color);
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.8rem;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Section */
.contact-section {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.contact-section h2 {
    color: white;
}

.contact-section a {
    color: white;
    text-decoration: underline;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background-color: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.contact-option:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-option i {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .coverage-map {
        grid-template-columns: 1fr;
    }
    
    .shipping-section {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .shipping-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}
/*---------------CSS para la página "Política de Devoluciones"-style.css--------------*/
/* Policy Page Styles - Consistent with Shipping Policy */
.policy-page {
    padding: 5rem 0;
}

.policy-page .page-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.policy-page .last-updated {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-size: 1.4rem;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-section h2 i {
    color: var(--accent-color);
}

.policy-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Steps Container - Similar to Shipping Steps */
.steps-container {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.step {
    position: relative;
    padding-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Refund Methods - Similar to Shipping Cards */
.refund-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.method:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.method h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Change Options - Similar to Icon List */
.change-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Defect Process - Similar to Timeline */
.defect-process {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 6px;
}

.process-step .step-number {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

/* Notice Boxes - Consistent with Shipping Page */
.notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin: 2rem 0;
    align-items: center;
}

.notice i {
    color: var(--primary-color);
    font-size: 2rem;
}

.shipping-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff8e6;
    border-left: 4px solid #e8c39e;
    border-radius: 4px;
    margin: 2rem 0;
    align-items: center;
}

.shipping-notice i {
    color: #e8c39e;
    font-size: 2rem;
}

/* FAQ Section - Identical to Shipping Page */
.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background-color: var(--light-color);
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.8rem;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
}

/* Contact Section - Identical to Shipping Page */
.contact-section {
    text-align: center;
    padding: 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    margin-top: 4rem;
}

.contact-section h2 {
    color: white;
}

.contact-section a {
    color: white;
    text-decoration: underline;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background-color: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

.contact-option:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-option i {
    font-size: 2.5rem;
}

/* Responsive Design - Consistent with Shipping Page */
@media (max-width: 768px) {
    .policy-page {
        padding: 3rem 0;
    }
    
    .policy-page .page-title {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .refund-methods, .change-options {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        padding-left: 1rem;
    }
    
    .step {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .policy-page .page-title {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-question {
        font-size: 1.4rem;
        padding: 1rem;
    }
}
/*------------CSS Adicional para el Carrito-style.css-----------*/
/* Estilos del carrito */
.cart-page {
    padding: 2rem 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 50px;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.item-image img {
    width: 100%;
    border-radius: 4px;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--light-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 50px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid var(--gray-medium);
    border-radius: 4px;
}

.item-remove {
    background: none;
    border: none;
    color: var(--danger-color, #e74c3c);
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-summary {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    align-self: start;
    position: sticky;
    top: 1rem;
}

.summary-details {
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: none;
}

.empty-cart-message {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Notificación toast */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.toast-notification.show {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-areas: 
            "image details"
            "quantity quantity"
            "total remove";
        gap: 0.5rem;
    }
    
    .item-image {
        grid-area: image;
    }
    
    .item-details {
        grid-area: details;
    }
    
    .item-quantity {
        grid-area: quantity;
        justify-content: center;
    }
    
    .item-total {
        grid-area: total;
        text-align: right;
    }
    
    .item-remove {
        grid-area: remove;
        text-align: right;
    }
}
/*------------ Estilos CSS para la barra superior(añádelo a tu style.css------------*/
/* Barra Superior */
.top-bar {
    background-color: #1a3e72; /* Azul Kaoba */
    color: white;
    padding: 0.5rem 0;
    font-size: 1.3rem;
}

.top-bar-left a {
    color: white;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: opacity 0.3s;
}

.top-bar-left a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left span {
    margin-right: 1.5rem;
}

.top-bar-left i {
    margin-right: 0.3rem;
    color: #fff;
}

.search-box {
    display: flex;
    align-items: center;
}

#search-input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 250px;
    font-size: 1.2rem;
}

.search-box button {
    background: #142f58;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-box button:hover {
    background: #0d2240;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    .top-bar-left, .top-bar-right {
        width: 100%;
        text-align: center;
    }
    #search-input {
        width: 70%;
    }
}
/*------------CSS (Añade estos estilos) para el WhatsApp-----------*/
/* Botón de WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    width: max-content;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Efecto de pulso continuo */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    /* ... (mantén los estilos anteriores) ... */
    animation: pulse 2s infinite; /* Agrega esta línea */
}

.whatsapp-float:hover {
    animation: none; /* Detiene el pulso al hacer hover */
    /* ... (otros estilos hover) ... */
}
