/* ===========================================================
   BABICHA PRODUCT DETAIL PAGE (PDP) STYLES
   Updated to match PDP.jpg mockup
=========================================================== */

.babicha-pdp-wrapper {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 991.98px) {
    .babicha-pdp-wrapper {
        padding: 20px 0 60px 0;
    }
}

/* Swiper Main Slider */
.pdp-main-slider {
    border-radius: 12px;
    overflow: hidden;
}
.pdp-main-slide-item {
    background-color: #fcf1fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
.pdp-main-slide-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Swiper Thumbnail Slider */
.pdp-thumb-slider {
    margin-top: 10px;
    padding-bottom: 5px;
}
.pdp-thumb-slide-item {
    background-color: #fcf1fa;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.pdp-thumb-slide-item.swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #c93b32;
}
.pdp-thumb-slide-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Right Content Info */
.pdp-info-content {
    color: #000;
}
.pdp-item-title {
    margin-bottom: 8px;
    color: #000;
}
.pdp-item-subtitle {
    color: #000;
    margin-bottom: 35px;
}

/* Price & Cart Box */
.pdp-price-cart-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.pdp-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #c93b32;
    font-family: 'Outfit', sans-serif;
}
.pdp-qty-box {
    display: flex;
    align-items: center;
    border: 1.5px solid #000;
    border-radius: 50px;
    height: 46px;
    width: 95px;
    background-color: #fff;
    padding: 0 10px 0 18px;
}
.pdp-qty-val {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-align: center;
    flex-grow: 1;
    user-select: none;
}
.pdp-qty-spinners {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-left: auto;
}
.pdp-qty-spinners button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    height: 14px;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 8px;
    transition: color 0.2s;
}
.pdp-qty-spinners button:hover {
    color: #555;
}
.pdp-qty-spinners button i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pdp-btn-add-cart {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 30px;
    height: 46px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pdp-btn-add-cart:hover {
    background-color: #222;
}

/* Customization Area (Variations & Addons) */
.pdp-customization-area {
    margin-bottom: 30px;
}
.pdp-customization-area .fw-bold {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}
.pdp-customization-area label {
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 10px;
    transition: all 0.2s ease;
    user-select: none;
}
.pdp-customization-area label:hover {
    border-color: #000 !important;
    background-color: #fafafa;
}
.pdp-customization-area label input:checked ~ span {
    font-weight: 600;
}
.pdp-customization-area label strong {
    font-size: 14px;
    color: #000;
}

/* Meta Data */
.pdp-meta-group {
    margin-bottom: 30px;
}
.pdp-meta-line {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}
.pdp-meta-line strong {
    color: #000;
    font-weight: 700;
}

/* Info Blocks */
.pdp-section-block {
    margin-bottom: 30px;
}
.pdp-block-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -0.2px;
}
.pdp-block-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}
.pdp-list-unstyled {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.pdp-list-unstyled li {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}
.pdp-info-table {
    width: 100%;
}
.pdp-info-table tr {
    display: flex;
    margin-bottom: 6px;
}
.pdp-info-table td {
    padding: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}
.pdp-info-table td:first-child {
    font-weight: 400;
    color: #333;
    width: auto;
    margin-right: 6px;
}

/* Related Products */
.pdp-related-products-section {
    position: relative;
}
.pdp-related-title {
    color: #d13a3a;
    margin-bottom: 30px;
}
.pdp-related-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s;
}
.pdp-related-link:hover {
    transform: translateY(-5px);
}
.pdp-related-img-box {
    border-radius: 20px;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 12px;
}
.pdp-related-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pdp-card-star-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
}
.pdp-related-text-box {
    text-align: left;
    padding-left: 5px;
}
.pdp-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    text-decoration: none;
}
.pdp-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #d13a3a;
}

@media (max-width: 768px) {
    .pdp-gallery-grid-2x2 {
        grid-template-columns: 1fr;
    }
    .pdp-item-title {
        font-size: 32px;
    }
}
