/* ==========================================================================
   Luxury Women's Couture Single Product Page (PDP) Styles
   Brand: Asha Devi Mittal (ashadevimittal.in)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

/* --------------------------------------------------------------------------
   1. Breadcrumbs Ribbon
   -------------------------------------------------------------------------- */
.pdp-breadcrumb-bar {
    background-color: #fdfbf7;
    border-bottom: 1px solid #f1e6e9;
    padding: 14px 0;
}
.pdp-breadcrumbs {
    font-size: 12.5px;
    color: #6b7280;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: 'Cinzel', serif;
}
.pdp-breadcrumbs a {
    color: #4b5563;
    text-decoration: none;
}
.pdp-breadcrumbs a:hover {
    color: #881337;
}
.bc-sep {
    color: #c59b27;
}
.bc-current {
    color: #1a070d;
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   2. Main Two-Column Layout
   -------------------------------------------------------------------------- */
.pdp-main-section {
    padding: 45px 0 55px;
    background-color: #ffffff;
}
.pdp-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: flex-start;
}

/* --------------------------------------------------------------------------
   3. Interactive Portrait Gallery (Left Column)
   -------------------------------------------------------------------------- */
.pdp-gallery-column {
    position: sticky;
    top: 95px;
}
.pdp-main-image-wrap {
    position: relative;
    background: #fdfbf7;
    border: 1px solid #f1e6e9;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(42, 8, 19, 0.04);
}
.pdp-main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease, transform 0.35s ease;
}
.pdp-main-image-wrap:hover img {
    transform: scale(1.03);
}
.pdp-discount-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #881337;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 0.5px;
}
.pdp-certified-chip {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(26, 7, 13, 0.85);
    color: #fef08a;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

/* Thumbnails Track */
.pdp-thumbnails-track {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
}
.pdp-thumb-item {
    width: 80px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #fdfbf7;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.pdp-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdp-thumb-item:hover {
    border-color: #c59b27;
}
.pdp-thumb-item.active {
    border-color: #881337;
    box-shadow: 0 0 0 2px rgba(136, 19, 55, 0.25);
}

/* --------------------------------------------------------------------------
   4. Purchasing Summary (Right Column)
   -------------------------------------------------------------------------- */
.pdp-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.pdp-brand-tag {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 800;
    color: #c59b27;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pdp-review-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.pdp-review-rating .stars {
    color: #c59b27;
}
.pdp-review-rating strong {
    color: #2a0813;
}
.pdp-review-rating small {
    color: #6b7280;
}

.pdp-title {
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #2a0813;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

/* Pricing Box */
.pdp-price-box {
    background: #fdfbf7;
    border: 1px solid #f1e6e9;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
}
.price-figures {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 6px;
}
.sale-price {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 900;
    color: #881337;
}
.regular-mrp {
    font-size: 16px;
    color: #9ca3af;
}
.savings-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    font-size: 11.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}
.tax-shipping-note {
    font-size: 12px;
    color: #6b7280;
    display: block;
}

/* Short Description */
.pdp-short-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 22px;
}

/* Feature Bullets */
.pdp-feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #f8ebeb;
}
.f-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2a0813;
}
.f-bullet span {
    color: #c59b27;
    font-weight: 900;
}

/* Action Buttons & Stepper */
.pdp-action-form-wrap {
    margin-bottom: 26px;
}
.pdp-qty-btn-group {
    display: flex;
    gap: 14px;
    align-items: center;
}
.pdp-qty-stepper {
    display: flex;
    align-items: center;
    border: 1.5px solid #f1e6e9;
    border-radius: 8px;
    background: #ffffff;
    height: 52px;
}
.qty-btn {
    background: none;
    border: none;
    width: 44px;
    height: 100%;
    font-size: 18px;
    font-weight: 800;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.2s;
}
.qty-btn:hover {
    background: #fdf8f9;
}
.qty-field {
    width: 45px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #1a070d;
    outline: none;
    background: transparent;
}
.pdp-submit-add-btn {
    flex: 1;
    height: 52px;
    background: #881337;
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(136, 19, 55, 0.3);
}
.pdp-submit-add-btn:hover {
    background: #9f1239;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(136, 19, 55, 0.45);
}

/* Pincode */
.pdp-pincode-card {
    background: #fdfbf7;
    border: 1px solid #f1e6e9;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
}
.pincode-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2a0813;
    margin-bottom: 10px;
}
.pincode-input-group {
    display: flex;
    gap: 8px;
    max-width: 320px;
}
.pincode-input-group input {
    flex: 1;
    border: 1px solid #f1e6e9;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}
.pincode-input-group input:focus {
    border-color: #881337;
}
.pincode-input-group button {
    background: #2a0813;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.pincode-result {
    font-size: 12px;
    margin-top: 8px;
}
.pincode-result.success {
    color: #059669;
    font-weight: 600;
}
.pincode-result.error {
    color: #dc2626;
}

/* 4 Guarantee Badges */
.pdp-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    text-align: center;
}
.guarantee-cell {
    background: #ffffff;
    border: 1px solid #f1e6e9;
    padding: 14px 8px;
    border-radius: 10px;
}
.g-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}
.guarantee-cell strong {
    font-family: 'Cinzel', serif;
    display: block;
    font-size: 11.5px;
    color: #2a0813;
    margin-bottom: 2px;
}
.guarantee-cell small {
    font-size: 10px;
    color: #6b7280;
    display: block;
}

/* Stylist Callout */
.pdp-support-callout {
    background: #fdf8f9;
    border: 1px solid #f3d7df;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.support-text strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: #2a0813;
}
.support-text span {
    font-size: 12px;
    color: #6b7280;
}
.pdp-call-btn {
    background: #881337;
    color: #ffffff;
    font-family: 'Cinzel', serif;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11.5px;
    text-decoration: none;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   5. Complete The Look (Frequently Styled Together)
   -------------------------------------------------------------------------- */
.pdp-bundle-section {
    padding: 20px 0 45px;
    background-color: #ffffff;
}
.pdp-bundle-box {
    background: #fdfbf7;
    border: 1.5px solid #f1e6e9;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 4px 18px rgba(42, 8, 19, 0.03);
}
.bundle-heading-row {
    margin-bottom: 24px;
}
.bundle-kicker {
    font-size: 11px;
    font-weight: 800;
    color: #c59b27;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
    font-family: 'Cinzel', serif;
}
.bundle-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 800;
    color: #2a0813;
    margin: 0;
}
.bundle-interactive-row {
    display: grid;
    grid-template-columns: 240px 1.4fr 1fr;
    gap: 30px;
    align-items: center;
}
.bundle-thumbs-visual {
    display: flex;
    align-items: center;
    gap: 14px;
}
.bundle-visual-item {
    width: 90px;
    height: 115px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f1e6e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.bundle-visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bundle-plus-sign {
    font-size: 26px;
    font-weight: 900;
    color: #c59b27;
}
.bundle-items-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bundle-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #f1e6e9;
    border-radius: 8px;
    padding: 10px 14px;
}
.bundle-check-label input {
    width: 18px;
    height: 18px;
    accent-color: #881337;
    cursor: pointer;
}
.bundle-check-label .item-role {
    font-size: 11.5px;
    color: #881337;
    font-weight: 700;
}
.bundle-check-label strong {
    color: #1a070d;
    flex-grow: 1;
    font-family: 'Playfair Display', serif;
}
.bundle-check-label .item-cost {
    font-weight: 800;
    color: #881337;
    font-family: 'Cinzel', serif;
}
.bundle-action-box {
    background: #ffffff;
    border: 1px solid #f1e6e9;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.calc-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
}
.calc-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 900;
    color: #881337;
    margin: 4px 0 6px;
}
.calc-perk {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 16px;
}
.btn-add-bundle {
    width: 100%;
    background: #881337;
    color: #ffffff;
    border: none;
    font-family: 'Cinzel', serif;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-add-bundle:hover {
    background: #9f1239;
}

/* --------------------------------------------------------------------------
   6. Fabric Specs & Reviews Tabs
   -------------------------------------------------------------------------- */
.pdp-tabs-section {
    padding: 60px 0;
    background-color: #fdfbf7;
    border-top: 1px solid #f1e6e9;
}
.pdp-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}
.pdp-tabs-nav .tab-btn {
    background: #ffffff;
    border: 1px solid #f1e6e9;
    color: #4b5563;
    font-family: 'Cinzel', serif;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.pdp-tabs-nav .tab-btn.active {
    background: #881337;
    color: #ffffff;
    border-color: #881337;
    box-shadow: 0 4px 12px rgba(136, 19, 55, 0.2);
}
.pdp-tab-pane {
    display: none;
    max-width: 860px;
    margin: 0 auto;
}
.pdp-tab-pane.active {
    display: block;
}
.pdp-specs-table {
    width: 100%;
    background: #ffffff;
    border: 1px solid #f1e6e9;
    border-radius: 12px;
    border-collapse: collapse;
    overflow: hidden;
}
.pdp-specs-table th, 
.pdp-specs-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f8ebeb;
}
.pdp-specs-table th {
    background: #fdfbf7;
    color: #2a0813;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    width: 35%;
    text-align: left;
}
.pdp-specs-table td {
    color: #374151;
}
.pdp-reviews-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    background: #ffffff;
    border: 1px solid #f1e6e9;
    border-radius: 14px;
    padding: 30px;
}
.review-breakdown-card {
    text-align: center;
    border-right: 1px solid #f1e6e9;
    padding-right: 20px;
}
.score-large {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: #881337;
    line-height: 1;
}
.review-breakdown-card .stars {
    color: #c59b27;
    font-size: 20px;
    margin: 8px 0;
}
.user-comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.comment-item {
    background: #fdfbf7;
    padding: 16px;
    border-radius: 10px;
}
.comment-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
    color: #2a0813;
}
.comment-item p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. Explore More (Related Products)
   -------------------------------------------------------------------------- */
.pdp-related-section {
    padding: 70px 0 90px;
    background-color: #ffffff;
    border-top: 1px solid #f1e6e9;
}
.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pdp-rel-card {
    background: #ffffff;
    border: 1px solid #f1e6e9;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(42, 8, 19, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pdp-rel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(42, 8, 19, 0.08);
    border-color: #dcb3bc;
}
.pdp-rel-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: 250px;
    background-color: #f7f1f3;
    overflow: hidden;
}
.pdp-rel-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.pdp-rel-card:hover .pdp-rel-thumb-wrap img {
    transform: scale(1.04);
}
.pdp-rel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #881337;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}
.pdp-rel-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pdp-rel-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 11px;
}
.pdp-rel-rating .stars {
    color: #c59b27;
}
.pdp-rel-rating small {
    color: #6b7280;
    font-weight: 700;
}
.pdp-rel-title {
    font-family: 'Playfair Display', serif;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px 0;
    flex-grow: 1;
}
.pdp-rel-title a {
    color: #1a070d;
    text-decoration: none;
}
.pdp-rel-title a:hover {
    color: #881337;
}
.pdp-rel-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}
.btn-pdp-rel-action {
    background: #1f0b12;
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
    display: block;
}
.btn-pdp-rel-action:hover {
    background: #881337;
}

/* --------------------------------------------------------------------------
   8. Mobile Sticky Bottom Purchase Bar
   -------------------------------------------------------------------------- */
.pdp-mobile-sticky-bottom {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f1e6e9;
    padding: 10px 16px;
    box-shadow: 0 -4px 15px rgba(42, 8, 19, 0.08);
    z-index: 998;
    align-items: center;
    gap: 12px;
}
.sticky-thumb {
    width: 44px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    background: #fdfbf7;
    flex-shrink: 0;
}
.sticky-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sticky-meta {
    flex: 1;
    overflow: hidden;
}
.sticky-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1a070d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Playfair Display', serif;
}
.sticky-price {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 900;
    color: #881337;
}
.sticky-cart-btn {
    background: #881337;
    color: #ffffff;
    border: none;
    font-family: 'Cinzel', serif;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   9. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .pdp-grid-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .pdp-gallery-column {
        position: static;
    }
    .pdp-main-image-wrap {
        height: 440px;
    }
    .bundle-interactive-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bundle-thumbs-visual {
        justify-content: center;
    }
    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .pdp-reviews-wrapper {
        grid-template-columns: 1fr;
    }
    .review-breakdown-card {
        border-right: none;
        border-bottom: 1px solid #f1e6e9;
        padding-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .pdp-main-image-wrap {
        height: 340px;
    }
    .pdp-title {
        font-size: 22px;
    }
    .sale-price {
        font-size: 24px;
    }
    .pdp-bundle-box {
        padding: 24px 18px;
    }
    .pdp-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pdp-support-callout {
        flex-direction: column;
        text-align: center;
    }
    .pdp-tabs-nav {
        flex-direction: column;
    }
    .pdp-mobile-sticky-bottom {
        display: flex;
    }
    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .pdp-rel-thumb-wrap {
        height: 180px;
    }
    .pdp-rel-body {
        padding: 10px;
    }
    .pdp-rel-title {
        font-size: 13px;
    }
    .price-val {
        font-size: 14.5px;
    }
}