.product-detail-wrap {
    padding: 70px 0 30px;
}

.product-gallery-card,
.product-info-card,
.related-products-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.product-gallery-card {
    padding: 20px;
}

.product-info-card {
    padding: 32px;
    height: 100%;
}

.product-category-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #b37b2b;
    background: #fff4de;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.product-info-card h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.25;
}

.product-info-card .product-desc {
    color: #475569;
    line-height: 1.85;
    margin-bottom: 28px;
}

.product-info-card .product-desc p:last-child {
    margin-bottom: 0;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-product-primary,
.btn-product-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-product-primary {
    background: #b37b2b;
    color: #fff;
    border: 1px solid #b37b2b;
}

.btn-product-primary:hover {
    background: #9d6920;
    border-color: #9d6920;
    color: #fff;
}

.btn-product-outline {
    background: #fff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.btn-product-outline:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

.product-meta-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.product-meta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    color: #334155;
    font-size: 14px;
}

.product-meta-list li i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff4de;
    color: #b37b2b;
    flex-shrink: 0;
}

.product-details-gallery-area {
    margin: 0;
}

.product-large-image-horaizontal {
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 14px;
}

.product-large-image-horaizontal .product-image-large-single {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 16px;
}

.product-large-image-horaizontal img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: 8px;
}

.product-image-thumb-horizontal {
    margin: 0 -6px;
}

.product-image-thumb-horizontal .product-image-thumb-single {
    padding: 0 6px;
    cursor: pointer;
}

.product-image-thumb-horizontal .product-image-thumb-single img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.product-image-thumb-horizontal .slick-current .product-image-thumb-single img,
.product-image-thumb-horizontal .zoom-active img {
    border-color: #b37b2b;
    box-shadow: 0 0 0 3px rgba(179, 123, 43, 0.15);
}

.product-image-thumb-horizontal .gallery-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    border: 0;
    z-index: 2;
}

.product-image-thumb-horizontal .gallery-nav:hover {
    background: #b37b2b;
}

.related-products-wrap {
    padding: 0 0 70px;
}

.related-products-card {
    padding: 28px;
}

.related-products-card h3 {
    font-size: 26px;
    color: #0f172a;
    margin-bottom: 22px;
}

.related-product-item {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s ease;
    height: 100%;
}

.related-product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    border-color: #b37b2b;
}

.related-product-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    padding: 12px;
}

.related-product-item span {
    display: block;
    padding: 14px 16px;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
    .product-detail-wrap {
        padding: 55px 0 20px;
    }

    .product-large-image-horaizontal .product-image-large-single {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .product-info-card {
        padding: 22px 18px;
        margin-top: 20px;
    }

    .product-info-card h2 {
        font-size: 26px;
    }

    .product-gallery-card {
        padding: 14px;
    }

    .product-actions .btn-product-primary,
    .product-actions .btn-product-outline {
        width: 100%;
        justify-content: center;
    }

    .product-large-image-horaizontal .product-image-large-single {
        min-height: 260px;
    }
}
