/* ========== JEWELRY SHOWCASE SECTION ========== */
.jewelry-showcase {
    padding: 150px 0;
    background: #ffffff;
}

.jewelry-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cada item de joya */
.jewelry-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.jewelry-item:last-child {
    margin-bottom: 0;
}

/* Alternar orden - para que la segunda vaya imagen derecha */
.jewelry-item.reverse {
    direction: rtl;
}

.jewelry-item.reverse .jewelry-info {
    direction: ltr;
}

.jewelry-item.reverse .jewelry-image {
    direction: ltr;
}

/* Imagen */
.jewelry-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.jewelry-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.jewelry-image:hover .jewelry-img {
    transform: scale(1.03);
}

.jewelry-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D5BCAB;
    color: #3A2D2B;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

/* Información */
.jewelry-info {
    padding: 20px 0;
}

.jewelry-category {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D5BCAB;
    margin-bottom: 16px;
    font-weight: 500;
}

.jewelry-title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #3A2D2B;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.jewelry-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

/* Características */
.jewelry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.jewelry-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #E2DDDA;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jewelry-features li:last-child {
    border-bottom: none;
}

/* Precio */
.jewelry-price {
    margin-bottom: 30px;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #D5BCAB;
    display: block;
}

.tax-info {
    font-size: 0.7rem;
    color: #999;
}

/* Botón */
.jewelry-btn {
    display: inline-block;
    background: #3A2D2B;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #3A2D2B;
}

.jewelry-btn:hover {
    background: #D5BCAB;
    border-color: #D5BCAB;
    color: #3A2D2B;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .jewelry-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .jewelry-item.reverse {
        direction: ltr;
    }
    
    .jewelry-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .jewelry-info {
        text-align: center;
    }
    
    .jewelry-features li {
        justify-content: center;
    }
    
    .jewelry-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .jewelry-showcase {
        padding: 60px 0;
    }
    
    .jewelry-item {
        margin-bottom: 60px;
    }
    
    .jewelry-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .jewelry-btn {
        width: 100%;
        text-align: center;
    }
}