/* --- SINGLE PRODUCT CUSTOM STYLES --- */

.product-page-wrapper {
    padding: 40px 0 80px;
    background: #fff;
    min-height: 600px;
}

.product-breadcrumbs {
    font-size: 13px;
    color: #999;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-breadcrumbs a {
    color: #999;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: #e8d44d;
}

/* Layout Main Row */
.product-main-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-gallery {
    flex: 0 0 calc(43% - 15px);
    max-width: calc(43% - 15px);
}

.product-summary {
    flex: 0 0 calc(57% - 15px);
    max-width: calc(57% - 15px);
}

/* Slider Style */
.product-main-swiper {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
}

.product-main-swiper img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-thumbs-swiper {
    margin-top: 10px;
}

.thumb-item {
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.swiper-slide-thumb-active {
    border-color: #e8d44d;
}

.thumb-item img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Summary Content */
.product-rating {
    margin-bottom: 10px;
}

.product-rating .stars {
    color: #f1c40f;
    font-size: 16px;
}

.product-rating .rating-text {
    color: #888;
    font-size: 13px;
    margin-left: 8px;
}

.product-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a2a4e;
    margin: 0 0 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.divider {
    width: 30px;
    height: 2px;
    background: #1a2a4e;
    margin-bottom: 25px;
}

.product-price-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-price-contact .label {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.btn-call-now {
    background: #d4a017;
    color: #fff !important;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.btn-call-now:hover {
    background: #000;
}

.product-short-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-action {
    flex: 1;
    background: #1a2a4e;
    color: #fff !important;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-action--alt {
    background: #222;
}

.btn-action:hover {
    background: #d4a017;
}

/* Details Separator */
.product-details-separator {
    position: relative;
    text-align: center;
    margin: 60px 0 40px;
}

.product-details-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.product-details-separator span {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 30px;
    color: #1a2a4e;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Main Content */
.product-main-content {
    color: #444;
    line-height: 1.8;
}

.product-main-content h2, 
.product-main-content h3 {
    color: #1a2a4e;
    margin-top: 30px;
}

/* Meta */
.product-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.meta-item {
    font-size: 13px;
    margin-bottom: 5px;
    color: #888;
}

.meta-value {
    color: #333;
    font-weight: 600;
    margin-left: 5px;
}

h2 {
    color: #1a2a4e !important;
}

h1 {
    color: #d4a017 !important;
}

.product-main-content h3 {
    color: #000 !important;
}

/* Responsive */
@media (max-width: 850px) {
    .product-gallery, .product-summary {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-details-separator {
        margin: 20px 0;
    }

    .product-main-content h2, .product-main-content h3 {
        margin-top: 0;
    }
}
