/* Alchimiam_Mercadolibre — Storefront best-sellers block (C063)
   Palette references (from Alchimiam/main theme C021):
     cream         #F5F0E8
     cream-light   #FBF8F3
     ink           #1F1E1A
     terracotta    #B65C3C
     gold          #B89364
     taupe         #C9BFAF
*/

.alchimiam-bestsellers {
    background: #FBF8F3;
    padding: 60px 0 70px;
    margin-top: 32px;
    border-top: 1px solid #E2DCCE;
    border-bottom: 1px solid #E2DCCE;
}

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

.alchimiam-bestsellers__head {
    text-align: center;
    margin-bottom: 40px;
}

.alchimiam-bestsellers__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B89364;
    margin: 0 0 12px;
}

.alchimiam-bestsellers__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 500;
    font-style: italic;
    color: #1F1E1A;
    margin: 0 0 12px;
    line-height: 1.15;
}

.alchimiam-bestsellers__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #3A372F;
    margin: 0;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.alchimiam-bestsellers__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 960px) {
    .alchimiam-bestsellers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
    .alchimiam-bestsellers__grid { grid-template-columns: 1fr; }
}

.alchimiam-bestsellers__card {
    position: relative;
    display: block;
    background: #FFFFFF;
    border: 1px solid #E2DCCE;
    border-radius: 4px;
    padding: 18px 14px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.alchimiam-bestsellers__card:hover,
.alchimiam-bestsellers__card:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(31, 30, 26, 0.08);
    border-color: #B89364;
    text-decoration: none;
}

.alchimiam-bestsellers__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #B65C3C;
    color: #FBF8F3;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
    z-index: 1;
}

.alchimiam-bestsellers__image {
    aspect-ratio: 1 / 1;
    background: #F5F0E8;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alchimiam-bestsellers__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.alchimiam-bestsellers__name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1F1E1A;
    margin: 0 0 8px;
    line-height: 1.35;
    min-height: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.alchimiam-bestsellers__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #8E4429;
    margin: 0;
    letter-spacing: 0.02em;
}

.alchimiam-bestsellers__price small {
    font-size: 11px;
    color: #B89364;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-left: 3px;
}
