/* ============================================
   ESTILOS ESPECÍFICOS PARA ARANDELAS
   ============================================ */

/* Página de producto de arandelas */
.product-page-arandela {
    padding: 2rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-header-arandela {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.product-title-arandela {
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.product-subtitle-arandela {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contenedor imagen izquierda + tabla derecha */
.arandela-image-table-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.arandela-image-left {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #eef2ff;
    padding: 1rem;
}

.arandela-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

.arandela-table-right {
    flex: 2;
    min-width: 300px;
}

.arandela-table-container {
    background: #f8fafc;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #eef2ff;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.arandela-table-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 2px solid #facc15;
    padding-bottom: 0.3rem;
}

.arandela-table-img {
    width: 50%;
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* Footer de marca */
.arandela-brand-footer {
    text-align: center;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #eef2ff;
}

.arandela-brand-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
}

.arandela-brand-text {
    font-size: 0.75rem;
    color: #6b7280;
    letter-spacing: 1px;
}

/* Sección de códigos */
.arandela-codes-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #eef2ff;
    text-align: center;
}

.arandela-codes-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1rem;
}

.arandela-codes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.arandela-code-chip {
    background: #111111;
    color: #facc15;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.arandela-code-chip:hover {
    background: #facc15;
    color: #111111;
    transform: scale(1.02);
}

.arandela-consult-text {
    color: #4b5563;
    font-size: 0.9rem;
}

.arandela-consult-link {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.arandela-consult-link:hover {
    text-decoration: underline;
    color: #128C7E;
}

/* Responsive */
@media (max-width: 768px) {
    .product-page-arandela {
        padding: 1.5rem;
    }
    
    .product-title-arandela {
        font-size: 1.5rem;
    }
    
    .arandela-image-table-container {
        flex-direction: column;
    }
    
    .arandela-image-left {
        min-width: auto;
    }
    
    .arandela-img {
        max-height: 180px;
    }
    
    .arandela-table-right {
        min-width: auto;
    }
    
    .arandela-code-chip {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}