/* ═══════════════════════════════════════════════════
   DAMIRICA PRODUCT SHOWCASE — Alternating Full-Width Blocks
   Design System: Canvas-Cream bg, Surface-White cards,
   Playfair Display headings, Inter body, Brand-Gold accents
   ═══════════════════════════════════════════════════ */

.damirica-product-showcase {
    position: relative;
    width: 100%;
    background-color: #F5F2EA;
    padding: 80px 0;
    overflow: hidden;
}

.damirica-product-showcase__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
}

/* ── PRODUCT ITEM ── */
.damirica-product-showcase__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 64px;
}

/* Alternating Layout */
.damirica-product-showcase__item:nth-child(even) {
    flex-direction: row-reverse;
}

/* ── MEDIA / IMAGE ── */
.damirica-product-showcase__image-wrapper {
    flex: 1;
    position: relative;
}

.damirica-product-showcase__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(26,26,26,0.08);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* .damirica-product-showcase__item:hover .damirica-product-showcase__image {
    transform: scale(1.02);
} */

/* ── CONTENT ── */
.damirica-product-showcase__content {
    flex: 1;
}

.damirica-product-showcase__name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.damirica-product-showcase__description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #6B6158;
    margin: 0 0 24px 0;
}

/* ── HIGHLIGHTS / BULLETS ── */
.damirica-product-showcase__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.damirica-product-showcase__highlight {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.4;
}

.damirica-product-showcase__highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #D4AF37; /* Brand-Gold */
    border-radius: 50%;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .damirica-product-showcase {
        padding: 64px 0;
    }

    .damirica-product-showcase__item {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .damirica-product-showcase__container {
        padding: 0 24px;
    }

    .damirica-product-showcase__item,
    .damirica-product-showcase__item:nth-child(even) {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .damirica-product-showcase__highlight {
        padding-left: 0;
        display: inline-block;
        margin: 0 10px 12px;
    }

    .damirica-product-showcase__highlight::before {
        display: none;
    }

    .damirica-product-showcase__name {
        font-size: 32px;
        margin-bottom: 16px;
    }
}
