/* ============================================================
   Product Detail Page
   ============================================================ */

/* ─── Product Description ─── */
.product-description {
    max-width: 800px;
    margin: 0 auto var(--sp-12);
    text-align: center;
}

.product-description p {
    font-size: var(--fs-lg);
    color: var(--color-text);
    line-height: var(--lh-loose);
    word-break: keep-all;
}

/* ─── Product Detail Grid ─── */
.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    margin-bottom: var(--sp-12);
}

.product-detail-grid .info-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--sp-6);
    box-shadow: var(--shadow-card);
    border: 1px solid transparent;
}

.product-detail-grid .info-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.product-detail-grid .info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
}

.product-detail-grid .info-card-label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    margin-bottom: var(--sp-2);
    letter-spacing: var(--ls-wide);
}

.product-detail-grid .info-card-value {
    font-size: var(--fs-base);
    color: var(--color-text-dark);
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-medium);
}

/* ─── Benefits Section ─── */
.product-benefits {
    background: var(--color-primary-bg-alt);
    border-radius: var(--radius-2xl);
    padding: var(--sp-10) var(--sp-8);
    margin-bottom: var(--sp-12);
}

.product-benefits-title {
    text-align: center;
    margin-bottom: var(--sp-8);
}

.product-benefits-title h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
}

.product-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
    max-width: 800px;
    margin: 0 auto;
}

.product-benefit-item {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-5);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-fast);
}

.product-benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.product-benefit-check {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success-bg);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.product-benefit-check svg {
    color: var(--color-success);
}

.product-benefit-text {
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--color-text-dark);
}

/* ─── Other Products ─── */
.other-products {
    margin-top: var(--sp-8);
}

.other-products-title {
    text-align: center;
    margin-bottom: var(--sp-8);
}

.other-products-title h3 {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-dark);
}

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}

.other-product-card {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition-base);
}

.other-product-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card-hover);
    color: var(--color-text);
    transform: translateY(-2px);
}

.other-product-card .op-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: var(--color-primary);
}

.other-product-card .op-icon img {
    width: 24px;
    height: 24px;
}

.other-product-card .op-name {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-base);
    color: var(--color-text-dark);
}

.other-product-card .op-rate {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    margin-top: var(--sp-1);
}
