
.product-detail-page {
    padding: 32px 0 56px;
}

.product-breadcrumb {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 18px;
}

    .product-breadcrumb span {
        color: #111827;
    }

.product-gallery {
    background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure product image fits the gallery container */
.product-gallery .product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

    .product-gallery i {
        font-size: 96px;
        color: #374151;
    }

.product-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.product-sku {
    color: #6b7280;
    margin-bottom: 16px;
}

.product-highlight {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

    .product-highlight span {
        background: #eef2ff;
        color: #3730a3;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
    }

.product-price {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.btn-main {
    display: inline-block;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
}

.btn-sub {
    display: inline-block;
    border: 1px solid #d1d5db;
    color: #111827;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
}

.spec-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    padding: 24px;
}

    .spec-card h4 {
        font-size: 20px;
        margin-bottom: 16px;
    }

.spec-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .spec-list li {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #e5e7eb;
        padding: 10px 0;
        gap: 16px;
    }

        .spec-list li:last-child {
            border-bottom: none;
        }

.feature-box {
    margin-top: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    padding: 24px;
}

    .feature-box h5 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .feature-box ul {
        margin-bottom: 0;
    }

@media (max-width: 767px) {
    .product-title {
        font-size: 28px;
    }

    .product-gallery {
        min-height: 260px;
        margin-bottom: 20px;
    }
}
