/* Products Separator - Premium Luxury Design */
.products-separator-home {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: none;
}

.products-separator-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.separator-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-eyebrow-center {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 20px;
}

.section-title-main-center {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle-center {
    font-size: 19px;
    line-height: 1.6;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.products-choice-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-choice-card {
    position: relative;
    padding: 20px 20px;
    background: white;
    border-radius: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    align-items: center;
    gap: 42px;
    border: 1px solid #d0d0d0;
}

.product-choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 0px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.jewelry-card {
    background: linear-gradient(135deg, #fcf7f1 0%, #fcf7f1 20%, #fcf7f1 100%);
    /* box-shadow: 0 20px 60px rgba(251, 191, 36, 0.15); */
}

.jewelry-card::before {
    background: linear-gradient(135deg, #fff2ea 0%, #87614b 100%);
}

.diamond-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 20%, #ffffff 100%);
    /* box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15); */
}

.diamond-card::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.product-choice-card:hover {
    transform: translateY(-8px);
}

.jewelry-card:hover {
    box-shadow: 0 30px 80px rgba(251, 191, 36, 0.25);
}

.jewelry-card:hover::before {
    opacity: 1;
}

.diamond-card:hover {
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.25);
}

.diamond-card:hover::before {
    opacity: 1;
}

.choice-image-wrapper {
    width: 177px;
    height: 100px;
    /* margin: 0 auto 32px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    padding: 3px;
    position: relative;
    overflow: hidden;
}

.jewelry-card .choice-image-wrapper {
    background: #f8f8f8;
    border: 1px solid #8a7a6e24;
}

.diamond-card .choice-image-wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    /* box-shadow: 0 10px 30px rgba(59, 130, 246, 0.12); */
    background: transparent;
}

.choice-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #87614b45 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.choice-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border-radius: 13px;
}

.product-choice-card:hover .choice-image {
    transform: scale(1.12);
}

.choice-title {
    font-size: 20px;
    font-weight: 700;
    color: #87614b;
    /* margin-bottom: 16px; */
    letter-spacing: -0.5px;
    text-align: left;
}

.choice-description {
    font-size: 17px;
    line-height: 1.7;
    color: #8a7a6e;
    /* margin-bottom: 32px; */
    flex-grow: 1;
    text-align: left;
}

.choice-stats {
    display: flex;
    gap: 32px;
    padding: 28px 0;
    /* margin-bottom: 32px; */
    border-top: 0px solid rgba(0, 0, 0, 0.06);
    border-bottom: 0px solid rgba(0, 0, 0, 0.06);
    justify-content: center;
}

.choice-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.stat-num {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.jewelry-card .stat-num {
    color: #87614b;
}

.diamond-card .stat-num {
    color: #1e40af;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.choice-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.jewelry-card .choice-cta {
    color: white;
    background: #87614b;
}

.jewelry-card:hover .choice-cta {
    transform: translateY(-2px);
}

.diamond-card .choice-cta {
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.diamond-card:hover .choice-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .products-separator-home {
        padding: 80px 0;
    }

    .products-choice-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title-main-center {
        font-size: 36px;
    }

    .product-choice-card {
        padding: 40px 32px;
    }

    .choice-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .choice-title {
        font-size: 26px;
    }

    .choice-stats {
        gap: 24px;
    }
}
