/* =====================================================
   PRODUCT DETAILS PAGE (FULLY STYLED & RESPONSIVE)
===================================================== */

.product-details-section {
    padding: 70px 0 90px;
    background: var(--white);
}

/* =====================================================
   BREADCRUMB
===================================================== */

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
    color: var(--text-subtle);
    font-size: 14px;
}

.product-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.product-breadcrumb a:hover {
    color: var(--secondary-color);
}

.product-breadcrumb i {
    color: var(--secondary-color);
    font-size: 11px;
}

/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image-wrapper {
    position: relative;
    max-width: 560px;
    margin: auto;
}

.product-main-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / .85;
    border-radius: 20px 20px 20px 0;
    background: var(--bg-soft-blue);
    box-shadow: var(--shadow-md);
}

.product-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(118, 103, 223, .05),
        rgba(237, 77, 120, .05)
    );
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-image-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

.product-image-decoration span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.product-image-decoration span:nth-child(1) { background: var(--accent-green); }
.product-image-decoration span:nth-child(2) { background: var(--accent-pink); }
.product-image-decoration span:nth-child(3) { background: var(--accent-teal); }

.product-image-label {
    position: absolute;
    left: -20px;
    bottom: 25px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 0 20px 20px 0;
    background: var(--white);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.product-image-label i {
    color: var(--secondary-color);
}

/* =====================================================
   CONTENT & RATING
===================================================== */

.product-details-content {
    padding-left: 20px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--accent-teal);
    font-size: 15px;
    font-weight: 600;
}

.product-title {
    margin: 0 0 15px;
    color: var(--primary-color);
    font-size: 43px;
    line-height: 1.15;
    font-weight: 500;
    font-style: italic;
}

.product-title span {
    color: var(--secondary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--text-subtle);
    font-size: 13px;
}

.product-rating .stars {
    color: var(--secondary-color);
    font-size: 14px;
}

.product-description {
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
}

/* FEATURES INCLUDED */
.product-features h3 {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 13px;
}

.feature-icon.green { background: var(--accent-green); }
.feature-icon.pink { background: var(--accent-pink); }
.feature-icon.purple { background: var(--accent-purple); }
.feature-icon.blue { background: var(--accent-blue); }

/* PRODUCT BUTTONS */
.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.book-now-btn:hover {
    background: var(--primary-color-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.call-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* =====================================================
   BOOKING SECTION & FORM ("BOOK YOUR EXPERIENCE")
===================================================== */

.booking-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    align-items: center;
}

.booking-label {
    display: inline-block;
    color: var(--accent-pink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-style: italic;
    margin: 0 0 15px;
}

.booking-content h2 strong {
    color: var(--secondary-color);
}

.booking-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 25px;
}

.booking-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 22px;
    background: var(--bg-soft-blue);
    border-radius: 12px;
    width: max-content;
}

.booking-contact i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.booking-contact small {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.booking-contact a {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* FORM INPUT STYLING */
.booking-form-wrapper {
    width: 100%;
}

.booking-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.booking-input {
    position: relative;
}

.booking-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    z-index: 2;
}

.booking-input input,
.booking-input select,
.booking-input textarea {
    width: 100%;
    min-height: 48px;
    padding-left: 44px;
    padding-right: 15px;
    border: 1px solid var(--border-color-dark);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: var(--transition-fast);
}

.booking-input input:focus,
.booking-input select:focus,
.booking-input textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(118, 103, 223, 0.12);
}

.booking-textarea > i {
    top: 20px;
    transform: none;
}

.booking-textarea textarea {
    padding-top: 14px;
    resize: vertical;
}

.booking-submit-btn {
    width: 100%;
    min-height: 50px;
    margin-top: 10px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.booking-submit-btn:hover {
    background: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 77, 120, 0.25);
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES
===================================================== */
@media (max-width: 991px) {
    .product-details-content { padding-left: 0; margin-top: 30px; }
    .booking-wrapper { grid-template-columns: 1fr; gap: 35px; padding: 30px 25px; }
    .product-title { font-size: 34px; }
    .booking-content h2 { font-size: 28px; }
}

@media (max-width: 575px) {
    .feature-list { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; align-items: stretch; }
    .book-now-btn, .call-btn { justify-content: center; }
}