/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

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

/* Header Principal */
.main-header {
    background: linear-gradient(135deg, #7c4dff 0%, #5e35b1 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Top Bar */
.top-bar {
    padding: 15px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 220px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #fff;
}

.main-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: 0;
    white-space: nowrap;
}
.main-title a img{
width: 220px;
object-fit: contain;
}
.main-title a img:hover{
    opacity: 70%;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.goodwill-logo {
    background: white;
    color: #5e35b1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* Búsqueda */
.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 8px 15px;
    min-width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 5px 10px;
    font-size: 14px;
    color: #666;
}

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

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
}

.search-btn:hover {
    color: #5e35b1;
}

/* Top Bar Right */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.phone-section {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.phone-label {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

.phone-number {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.hours {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    text-align: center;
}

/* User Actions */
.user-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.auth-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.auth-link {
    color: white !important;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
    transition: background-color 0.3s;
}

.auth-link:hover {
    background-color: rgba(255,255,255,0.2);
}

.user-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
}

.icon-item:hover {
    opacity: 0.8;
}

.icon-item span {
    font-size: 11px;
    color: white;
}

.icon-item svg {
    color: white;
    width: 20px;
    height: 20px;
}

.notification .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Botón de Reclutamiento */
.recruitment-btn {
    background: #ffeb3b;
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    font-weight: bold;
}

.recruitment-btn:hover {
    transform: translateY(-2px);
}

.recruitment-text {
    font-size: 18px;
    font-weight: bold;
}

.recruitment-sub {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.recruitment-sub div {
    font-size: 10px;
}

/* Navigation */
.main-nav {
    background: rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.nav-item {
    padding: 12px 15px;
    font-size: 13px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
}

.nav-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-item.featured {
    background: #ff6b35;
    font-weight: bold;
}

.nav-icon {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .top-bar .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        font-size: 12px;
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .search-container {
        min-width: 250px;
    }
    
    .user-icons {
        gap: 15px;
    }
    
    .auth-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .main-title {
        font-size: 16px;
    }
    
    .brand-name {
        font-size: 20px;
    }
}


/* Main Container Layout */
.main-container {
    display: flex;
   max-width: 1200px;
  
    margin: 20px auto;
    gap: 20px;
    padding: 0 20px;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* Payment Section */
.payment-section {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.payment-title {
    color: #1976d2;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.payment-logo {
    flex: 1;
    padding: 6px 8px;
    text-align: center;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    background: white;
    border: 1px solid #ddd;
    color: #333;
}

/* Specific payment logo colors */
.payment-logo.paypal { color: #0070ba; }
.payment-logo.rakuten { color: #bf0000; }
.payment-logo.d-payment { color: #ff6b00; }
.payment-logo.paidy { color: #ff69b4; }
.payment-logo.visa { color: #1a1f71; }
.payment-logo.mastercard { color: #eb001b; }
.payment-logo.jcb { color: #006633; }
.payment-logo.seven { color: #ff6600; }
.payment-logo.lawson { color: #0066cc; }
.payment-logo.family { color: #00a040; }
.payment-logo.smbc { color: #008000; }
.payment-logo.mitsui { color: #0066cc; }
.payment-logo.jaccs { color: #ff6600; }
.payment-logo.orico { color: #ff6600; }

.payment-link {
    display: block;
    text-align: center;
    color: #1976d2;
    text-decoration: none;
    font-size: 12px;
    margin-top: 10px;
    font-weight: bold;
}

.payment-link:hover {
    text-decoration: underline;
}

/* Categories Navigation */
.categories-nav {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-item {
    border-bottom: 1px solid #eee;
}

.category-item:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

.category-header:hover {
    background-color: #f5f5f5;
}

.category-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: #ddd;
    border-radius: 4px;
}

.category-name {
    flex: 1;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    fill: #666;
    transition: transform 0.3s;
}

.category-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.category-item.active .dropdown-content {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 50px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #e9ecef;
    color: #5e35b1;
}

/* Main Content Area */
.main-content {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 850px;
}

/* Section Titles */
.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #5e35b1;
    padding-bottom: 8px;
}

/* Recommended Categories Grid */
.recommended-section {
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.category-card {
    background: #f8f9fa;
    border-radius: 8px;
  
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 100%;
}
.category-card img{
    width: 100%;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-image {

    height: 100px;
    margin: 0 auto 10px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.card-title {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* News Section */
.news-section {
    margin-top: 40px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 12px;
    color: #666;
    min-width: 80px;
    flex-shrink: 0;
}

.news-link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-link:hover {
    color: #5e35b1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .sidebar {
        width: 100%;
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .category-card {
        padding: 10px;
    }
    
    .card-image {
        width: 60px;
        height: 60px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .news-date {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-row {
        flex-wrap: wrap;
    }
    
    .payment-logo {
        min-width: 60px;
        font-size: 10px;
    }
}

/* Sección de Carruseles */
.carousels-section {
    margin: 30px 0;
    max-width: 900px;
   
}

/* Container del Carrusel */
.carousel-container {
    margin-bottom: 40px;
    max-width: 100%;
}

.carousel-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid #5e35b1;
}

/* Wrapper del Carrusel */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 20px;
}

.carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 15px;
}

/* Botones de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

/* Cards de Productos */
.product-card {
    flex: 0 0 250px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 250px;
}

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

/* Imagen del Producto */
.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* Badge NEW */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    color: white;
}

.product-badge.new {
    background: #ff4444;
}

/* Información de Colaboración */
.collab-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gaming-base {
    color: #ffeb3b;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.collab-brand {
    color: white;
    font-size: 13px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Contenido del Producto */
.product-content {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-subtitle {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}



/* Variaciones de color para diferentes colaboraciones */
.product-card:nth-child(1) .product-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-card:nth-child(3) .product-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-card:nth-child(4) .product-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.product-card:nth-child(5) .product-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 220px;
        max-width: 220px;
    }
    
    .carousel-wrapper {
        margin: 0 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 200px;
        max-width: 200px;
    }
    
    .carousel-wrapper {
        margin: 0 10px;
    }
    
    .carousel-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-content {
        padding: 12px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .product-subtitle {
        font-size: 11px;
    }
    
    .prev-btn {
        left: -5px;
    }
    
    .next-btn {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 180px;
        max-width: 180px;
    }
    
    .carousel-wrapper {
        margin: 0 5px;
    }
    
    .carousel-track {
        gap: 10px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .collab-info {
        bottom: 5px;
        left: 5px;
        right: 5px;
    }
    
    .gaming-base {
        font-size: 10px;
    }
    
    .collab-brand {
        font-size: 11px;
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
}


/* Sección de Soporte */
.support-section {
    background: #f8f9fa;
    padding: 50px 0;
    margin: 40px 0;
}

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

/* Título de la sección */
.support-title {
    background: #e8f5e8;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding: 15px 20px;
    margin: 0 0 40px 0;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

/* Grid de servicios */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Cards de soporte */
.support-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Iconos de soporte */
.support-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Wrapper de iconos para el primer card */
.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

.clock-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
}

.operator-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

.clock-svg, .operator-svg {
    width: 100%;
    height: 100%;
}

/* Badge de garantía */
.warranty-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.warranty-svg {
    width: 80px;
    height: 80px;
}

.warranty-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #00bcd4;
    font-weight: bold;
}

.warranty-period {
    font-size: 14px;
}

.warranty-type {
    font-size: 12px;
}

/* Icono de tienda */
.store-icon {
    display: flex;
    justify-content: center;
}

.store-svg {
    width: 80px;
    height: 80px;
}

/* Títulos de las cards */
.support-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* Descripciones */
.support-card-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Call to Action */
.support-cta {
    text-align: center;
    margin-top: 30px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #333;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.support-link:hover {
    border-color: #5e35b1;
    color: #5e35b1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.support-link:hover .arrow-icon {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .support-card {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 30px 0;
    }
    
    .support-title {
        font-size: 18px;
        padding: 12px 15px;
        margin-bottom: 30px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-card {
        padding: 20px 15px;
    }
    
    .support-card-title {
        font-size: 15px;
    }
    
    .support-card-description {
        font-size: 12px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .clock-icon {
        width: 50px;
        height: 50px;
    }
    
    .operator-icon {
        width: 40px;
        height: 40px;
    }
    
    .warranty-svg, .store-svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .support-container {
        padding: 0 15px;
    }
    
    .support-title {
        font-size: 16px;
        padding: 10px 12px;
    }
    
    .support-card {
        padding: 15px 10px;
    }
    
    .support-link {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .clock-icon {
        width: 45px;
        height: 45px;
    }
    
    .operator-icon {
        width: 35px;
        height: 35px;
    }
    
    .warranty-svg, .store-svg {
        width: 60px;
        height: 60px;
    }
}

/* Sección de Contacto */
.contact-section {
    background: white;
    padding: 40px 0;
    margin: 30px 0;
}

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

/* Título principal */
.contact-title {
    background: #e8f4f8;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    padding: 15px 20px;
    margin: 0 0 40px 0;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

/* Grid de contactos */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Cards de contacto */
.contact-card {
    background: #fafafa;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

/* Subtítulos */
.contact-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    font-weight: 500;
}

/* Badges de tipo de cliente */
.contact-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.contact-badge.individual {
    background: #2196f3;
}

.contact-badge.corporate {
    background: #ff9800;
}

/* Números de teléfono principales */
.contact-phone {
    margin-bottom: 15px;
}

.phone-number {
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.individual-phone {
    color: #2196f3;
}

.corporate-phone {
    color: #ff9800;
}

.phone-number:hover {
    opacity: 0.8;
}

/* Instrucciones */
.contact-instruction {
    font-size: 13px;
    color: #666;
    margin: 0 0 20px 0;
}

/* Números alternativos */
.contact-alternative {
    margin-bottom: 15px;
    font-size: 12px;
    color: #777;
}

.alt-text {
    display: block;
    margin-bottom: 5px;
}

.alt-phone {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.alt-phone:hover {
    text-decoration: underline;
}

/* Horarios */
.contact-hours {
    font-size: 12px;
    color: #777;
}

/* Información adicional */
.contact-additional {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.additional-text {
    font-size: 14px;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

/* Botón de guía */
.contact-cta {
    text-align: center;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #333;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.guide-link:hover {
    border-color: #5e35b1;
    color: #5e35b1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.guide-link:hover .arrow-icon {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 25px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .phone-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-title {
        font-size: 16px;
        padding: 12px 15px;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .contact-subtitle {
        font-size: 13px;
    }
    
    .contact-badge {
        font-size: 13px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .contact-card {
        padding: 15px 10px;
    }
    
    .phone-number {
        font-size: 22px;
    }
    
    .contact-subtitle {
        font-size: 12px;
    }
    
    .contact-instruction {
        font-size: 12px;
    }
    
    .additional-text {
        font-size: 13px;
    }
    
    .guide-link {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Footer principal */
.main-footer {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

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

/* Enlaces del footer */
.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-column {
    min-width: 0;
}

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

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

.footer-link {
    color: white !important;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Iconos externos */
.external-icon {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Redes sociales */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Colores específicos de redes sociales */
.social-link.twitter {
    background: #000;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link.line {
    background: #00c300;
    color: white;
}

/* Parte inferior del footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Información de marca */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.goodwill-badge {
    background: white;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Certificación SECOM */
.footer-certification {
    display: flex;
    align-items: center;
}

.secom-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    color: #333;
}

.secom-logo {
    width: 40px;
    height: 30px;
    background: #e53935;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
}

.secom-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.secom-title {
    font-size: 12px;
    font-weight: bold;
    color: #e53935;
}

.secom-subtitle {
    font-size: 9px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .brand-info {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .secom-badge {
        padding: 6px 10px;
    }
    
    .secom-logo {
        width: 35px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-list li {
        margin-bottom: 10px;
    }
    
    .footer-link {
        font-size: 11px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .goodwill-badge {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .copyright {
        font-size: 10px;
    }
    
    .secom-badge {
        flex-direction: column;
        gap: 5px;
        padding: 8px;
    }
    
    .secom-text {
        text-align: center;
    }
}

/* Sidebar de Información */
.info-sidebar {
    width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-right: 20px;
    flex-shrink: 0;
}

/* Secciones del sidebar */
.sidebar-section {
    border-bottom: 1px solid #eee;
}

.sidebar-section:last-child {
    border-bottom: none;
}

/* Títulos de sección */
.sidebar-title {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 15px;
    margin: 0;
    border-left: 4px solid #2196f3;
}

/* Listas de enlaces */
.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fafafa;
}

.sidebar-list li {
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

/* Enlaces del sidebar */
.sidebar-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-link:hover {
    background: #f0f8ff;
    color: #1976d2;
    padding-left: 20px;
}

.sidebar-link:before {
    content: '▶';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 10px;
    color: #1976d2;
}

.sidebar-link:hover:before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-sidebar {
        width: 280px;
        margin-right: 15px;
    }
    
    .sidebar-title {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .sidebar-link {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .sidebar-link:hover {
        padding-left: 17px;
    }
}

@media (max-width: 768px) {
    .info-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .sidebar-title {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .sidebar-link {
        font-size: 11px;
        padding: 7px 10px;
    }
    
    .sidebar-link:hover {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .sidebar-title {
        font-size: 11px;
        padding: 6px 8px;
    }
    
    .sidebar-link {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .sidebar-link:hover {
        padding-left: 13px;
    }
    
    .sidebar-link:before {
        left: 8px;
        font-size: 8px;
    }
}

ol{
    list-style: none;
}
.product1 {
  display: flex;
  background-color: #fbfbfb;
  padding: 20px;
  align-items:flex-start;
  justify-content:center;

  width: 95%;
  margin: 0 auto;
  
}
.product-image_container {
  width: 50%;
  padding: 10px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 30px; 
}
.product__image {
  width: 100%;
  height: auto;
}
.product-info {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column; /* Para alinear elementos verticalmente */
  align-items: flex-start; /* Alinea elementos al principio del contenedor */
  margin-bottom: 60px;
  margin-top: 20px;
  width: 50%;
  margin-left: 15px;
}
.product-title {
  font-size: 1.4em;
  margin-bottom: 20px; /* Reducido para dispositivos móviles */
  font-weight: 600;
}
.product-price {
  font-size: 20px;
  margin-left: 10px; /* Agregamos margen izquierdo */
  margin-bottom: 20px; /* Reducido para dispositivos móviles */
  margin-top: 35px;
  font-weight: 600;
  color: red;
}
.product-code1{
  margin-left: 10px;
  font-size: 14px;
  color: #333;
  margin-top: 30px;
}
.product-code2{
  margin-left: 10px;
  margin-bottom: 20px;
  font-size: 12px;
}
.cart-link{
  text-decoration: none;
  color: red;
}
.cart-link:hover{
  border-bottom: 1px solid red;
}
.product__add-to-cart-button{
  margin: 20px;
  width: 280px;
  height: 45px;
  cursor: pointer;
  margin-top: 60px;
  color: #fff;
  font-weight: 600;
  background-color: red;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}
.product-quantity {
  margin-top: 40px;
  margin-left: 10px;
  display: flex;
  align-items: center; /* Para centrar verticalmente los botones */
}

.product-quantity label {
  display: block;
  font-size: 20px;
  margin-right: 15px;
  font-weight: 500;
}

.product-quantity input {
  width: 40px;
  height: 40px;
  font-size: 16px;
 
  text-align: center;
  border: 0.5px solid #333;
  border-right: none;
  border-left: none;
}

.quantity-btn i{
  color: #fff;
}
.quantity-btn2 i{
  color: #fff;
}

.quantity-btn {
  background: #8e8e8e;
  padding: 5px 10px;
  font-size: 20px;
  cursor: pointer;
  border: 0.5px solid #333;
  width: 40px;
  height: 40px;
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.quantity-btn2 {
  background: #8e8e8e;
  padding: 5px 10px;
  font-size: 20px;
  cursor: pointer;
  border: 0.5px solid #333;
  width: 40px;
  height: 40px;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.product__thumbnails {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  width: 90%;
}
.product__thumbnail {
  width: 20%; /* Aumentamos el tamaño de las miniaturas */
  height: auto; /* Aumentamos el tamaño de las miniaturas */
  cursor: pointer;
  margin-right: 5px;
  transition: all 0.3s;
}
.product-description-section {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 400;
  font-family: "sansjp";
}










/* ===== CARRUSEL DE PRODUCTOS ===== */

.product-carousel-section {
    margin: 40px 0;
    max-width: 900px; /* Igual que tus carruseles originales */
    overflow: hidden;
}

.carousel-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid #5e35b1;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 40px; /* Más margen para los botones */
}

.carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 12px; /* Reducido de 15px */
}

/* ===== BOTONES DE NAVEGACIÓN ===== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.prev-btn {
    left: -30px; /* Dentro del margen de 40px */
}

.next-btn {
    right: -30px; /* Dentro del margen de 40px */
}

/* ===== CARDS DE PRODUCTOS PARA CARRUSEL ===== */
.carousel .product-card {
    flex: 0 0 240px;
    max-width: 240px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
}

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

.carousel .product-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.carousel .product-image {
    position: relative;
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .product-info2 {
    padding: 12px;
}

.carousel .product-name {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.carousel .product-specs {
    margin: 8px 0;
}

.carousel .spec-item {
    font-size: 10px;
    color: #666;
    margin-bottom: 2px;
    line-height: 1.2;
}

.carousel .spec-label {
    font-weight: 500;
    color: #555;
}

.carousel .spec-value {
    margin-left: 5px;
}

.carousel .product-price {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.carousel .price {
    font-size: 16px;
    font-weight: bold;
    color: #e53935;
}

.carousel .tax-info {
    font-size: 11px;
    color: #666;
    margin-left: 3px;
}

/* ===== LOADING STATE ===== */
.carousel-loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #5e35b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

.carousel-loading p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .carousel .product-card {
        flex: 0 0 220px;
        max-width: 220px;
    }
    
    .carousel-wrapper {
        margin: 0 35px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .prev-btn {
        left: -25px;
    }
    
    .next-btn {
        right: -25px;
    }
}

@media (max-width: 768px) {
    .carousel .product-card {
        flex: 0 0 200px;
        max-width: 200px;
    }
    
    .carousel-wrapper {
        margin: 0 30px;
    }
    
    .carousel-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .carousel .product-image {
        height: 150px;
    }
    
    .carousel .product-info2 {
        padding: 10px;
    }
    
    .carousel .product-name {
        font-size: 12px;
    }
    
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .carousel .product-card {
        flex: 0 0 180px;
        max-width: 180px;
    }
    
    .carousel-wrapper {
        margin: 0 25px;
    }
    
    .carousel-track {
        gap: 10px;
    }
    
    .carousel .product-image {
        height: 130px;
    }
    
    .carousel .product-info2 {
        padding: 8px;
    }
    
    .carousel .product-name {
        font-size: 11px;
    }
    
    .carousel .spec-item {
        font-size: 9px;
    }
    
    .carousel .price {
        font-size: 14px;
    }
    
    .prev-btn {
        left: -15px;
    }
    
    .next-btn {
        right: -15px;
    }
}

.search-btn i{
    

    color: #333;
}
