/* Product Detail Page — PDP-specific styles */
/* Most styling is inherited from vdp.css */

.product-detail-page {
    padding-top: 100px;
    /* padding-bottom: 55px; */
}

.product-detail-page .container {
    padding-bottom: 30px;
}

.product-detail-page .breadcrumbs {
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-detail-page .breadcrumb-item {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail-page .breadcrumb-item a {
    color: #5D5D5D;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    word-wrap: break-word;
}

.product-detail-page .breadcrumb-item a:hover {
    color: #A51336;
}

.product-detail-page .breadcrumb-current {
    color: #080808;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
}

.product-detail-page .breadcrumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-detail-page .breadcrumb-separator svg {
    display: block;
}

/* Product Title */
.pdp-title {
    color: #080808;
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Description Section */
.pdp-description-section {
    margin-bottom: 40px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #080808;
}

/* Highlighted Specs Section */
.pdp-highlighted-specs-section {
    margin-bottom: 40px;
}

.pdp-highlighted-specs {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-flex;
    width: 100%;
}

.pdp-spec-item {
    align-self: stretch;
    padding: 16px;
    border-top: 1px solid #E7E7E7;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    gap: 12px;
}

.pdp-spec-item:first-child {
    border-top: none;
}

.pdp-spec-item:last-child {
    border-bottom: 1px solid #E7E7E7;
}

.pdp-spec-label-wrapper {
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    display: flex;
}

.pdp-spec-icon {
    width: 22px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdp-spec-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pdp-spec-label {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #080808;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
    word-wrap: break-word;
}

.pdp-spec-value {
    flex: 1 1 0;
    text-align: right;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: black;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
    word-wrap: break-word;
}

/* Customize Vehicle Button */
.pdp-customize-vehicle-btn {
    margin-bottom: 40px;
    padding: 20px 50px;
    background: #A51336;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pdp-customize-vehicle-btn:hover {
    background: #8a0f2d;
}

.pdp-customize-content h3 {
    color: white;
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    margin: 0;
}

.pdp-customize-vehicle-btn svg {
    width: 47px;
    height: 47px;
    flex-shrink: 0;
}

/* Specs Container */
.pdp-specs-container {
    margin-bottom: 40px;
    padding: 40px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.10);
}

/* Specs Tabs */
.pdp-specs-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid transparent;
}

.pdp-specs-tab {
    padding: 8px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #080808;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pdp-specs-tab:hover {
    color: #A51336;
}

.pdp-specs-tab.active {
    border-bottom-color: #A51336;
    color: #080808;
}

/* Specs Content */
.pdp-specs-content {
    position: relative;
}

.pdp-specs-panel {
    display: none;
}

.pdp-specs-panel.active {
    display: block;
}

/* Spec Rows */
.spec-row {
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #F6F6F6;
    border-top: none;
}

.spec-row:first-child {
    border-top: 2px solid #F6F6F6;
}

.spec-row.alt {
    background: #F6F6F6;
}

.spec-label {
    color: #454545;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.spec-value {
    color: #454545;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
}

/* Fitment Table */
.fitment-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.fitment-table thead th {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.fitment-table tbody tr {
    border-bottom: 1px solid #F6F6F6;
}

.fitment-table tbody tr:nth-child(even) {
    background: #F6F6F6;
}

.fitment-table tbody td {
    padding: 8px 12px;
    color: #454545;
}

/* Accordions Container */
.pdp-accordions {
    margin-bottom: 40px;
}

.pdp-accordion-divider {
    height: 1px;
    background: #EDEEF1;
    margin: 20px 0;
}

/* Accordion Items */
.pdp-accordion-item {
    margin-bottom: 0;
}

.pdp-accordion-header {
    width: 100%;
    padding: 12px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pdp-accordion-header:hover {
    background: #f9f9f9;
}

.pdp-accordion-header span {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: black;
    text-align: left;
}

.pdp-accordion-header svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pdp-accordion-header.active svg {
    transform: rotate(45deg);
}

.pdp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 12px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 22px;
}

.pdp-accordion-body.active {
    max-height: 1000px;
    padding: 12px;
}

.pdp-accordion-body h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pdp-accordion-body p {
    margin: 0;
    color: #454545;
}

/* Social Section */
.pdp-social-section {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
    display: flex;
    padding: 40px 0;
}

.pdp-social-title {
    color: black;
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
}

.pdp-social-icons {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    display: flex;
}

.pdp-social-icon {
    width: 29px;
    height: 30px;
    position: relative;
    overflow: hidden;
    display: block;
    transition: opacity 0.2s ease;
}

.pdp-social-icon:hover {
    opacity: 0.8;
}

/* Size Selector */
.size-selector {
    margin-top: 20px;
    padding: 0 5px;
}

.size-label {
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #080808;
}

.size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    min-width: 48px;
    padding: 8px 16px;
    border: 1px solid #e7e7e7;
    background: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #080808;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-btn:hover {
    border-color: #A51336;
    color: #A51336;
}

.size-btn.active {
    border-color: #A51336;
    background: #A51336;
    color: #fff;
}

.view-size-chart {
    display: inline-block;
    margin-top: 10px;
    color: #A51336;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
}

.view-size-chart:hover {
    color: #7e0f2b;
}

/* Color Selector */
.color-selector {
    margin-top: 15px;
    padding: 0 5px;
}

.color-label {
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #080808;
}

.color-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-btn {
    padding: 8px 16px;
    border: 1px solid #e7e7e7;
    background: #fff;
    font-family: "Open Sans", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #080808;
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-btn:hover {
    border-color: #A51336;
    color: #A51336;
}

.color-btn.active {
    border-color: #A51336;
    background: #A51336;
    color: #fff;
}

.color-btn.active .color-swatch {
    border-color: #fff;
}

.color-swatch {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e7e7e7;
    flex-shrink: 0;
}

/* Add to Cart Button */
.add-cart-btn.inventory-btn {
    background: #A51336;
    border-color: #A51336;
    color: #fff !important;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.add-cart-btn.inventory-btn:hover {
    background: #8a0f2d;
    border-color: #8a0f2d;
}

/* Part Number */
.pdp-part-number {
    text-align: center;
    margin-top: 12px;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4F4F4F;
}

/* Related Products */
.related-products-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.related-products-title {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #080808;
    margin-bottom: 25px;
    text-align: center;
}

.related-products-section .product-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Equifax banner on PDP */
.equifax-banner-container {
    background: #a51336;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-detail-page .equifax-banner-container {
    margin-top: 0;
}

.equifax-banner-container-inner {
    max-width: 1368px;
    padding: 15px 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.equifax-banner-logo {
    width: 200px;
    height: 51px;
}

.equifax-banner-text {
    text-align: center;
    color: white;
    font-size: 28px;
    font-family: Ubuntu, sans-serif;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0.28px;
    word-wrap: break-word;
}

.equifax-banner-finance {
    width: 280px;
    height: 73px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-page {
        padding-top: 80px;
    }

    .related-products-section .product-results {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdp-specs-container {
        padding: 30px 20px;
    }

    .pdp-customize-vehicle-btn {
        padding: 20px 30px;
    }

    .pdp-customize-content h3 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .pdp-title {
        font-size: 22px;
        line-height: 28px;
    }

    .related-products-section .product-results {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdp-social-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    }

    .pdp-social-title {
        font-size: 24px;
        line-height: 32px;
    }

    .pdp-spec-item {
        padding: 12px;
        gap: 8px;
    }

    .pdp-spec-label,
    .pdp-spec-value {
        font-size: 14px;
        line-height: 22px;
    }

    .pdp-spec-icon {
        width: 18px;
    }


    .product-detail-page .breadcrumb-item {
        padding: 6px 8px;
    }

    .product-detail-page .breadcrumb-item a {
        font-size: 13px;
        line-height: 18px;
    }

    .product-detail-page .breadcrumb-current {
        font-size: 14px;
        line-height: 20px;
    }

    .product-detail-page .breadcrumbs {
        gap: 8px;
    }

    .pdp-specs-container {
        padding: 20px 16px;
    }

    .pdp-specs-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }

    .pdp-specs-tab {
        font-size: 13px;
    }

    .pdp-customize-vehicle-btn {
        padding: 16px 20px;
    }

    .pdp-customize-content h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .pdp-customize-vehicle-btn svg {
        width: 38px;
        height: 38px;
    }

    .spec-label,
    .spec-value {
        font-size: 13px;
    }

    .pdp-description-section {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .related-products-section .product-results {
        grid-template-columns: 1fr;
    }

    .pdp-social-section {
        padding: 20px 0;
    }

    .pdp-social-title {
        font-size: 20px;
        line-height: 28px;
    }

    .pdp-social-icons {
        gap: 15px;
    }

    .pdp-social-icon {
        width: 25px;
        height: 26px;
    }

    .pdp-customize-vehicle-btn {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 16px;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .spec-value {
        text-align: left;
    }
}

/* New PDP Col-2 Styles */
.pdp-col2-container {
    align-self: stretch;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    display: inline-flex;
    width: 100%;
}

/* Badges */
.pdp-badges {
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
    display: inline-flex;
    flex-wrap: wrap;
}

.pdp-badge {
    padding: 8px 12px;
    background: white;
    border-radius: 4px;
    outline: 1px #E7E7E7 solid;
    outline-offset: -1px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    display: flex;
}

.pdp-badge-text {
    text-align: center;
    color: #080808;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 20px;
    word-wrap: break-word;
}

.pdp-badge-icon {
    width: 17px;
    height: 17px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title Container */
.pdp-title-container {
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    display: flex;
}

.pdp-title-v2 {
    align-self: stretch;
    color: #080808;
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 48px;
    word-wrap: break-word;
    margin: 0;
}

/* Pricing Hero */
.pdp-pricing-hero {
    align-self: stretch;
    height: 58px;
    background: white;
    overflow: hidden;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: inline-flex;
}

.pdp-pricing-col {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    display: inline-flex;
}

.pdp-pricing-label {
    color: black;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.pdp-pricing-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pdp-price-primary {
    color: #A51336;
    font-size: 32px;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    line-height: 40px;
    word-wrap: break-word;
}

.pdp-price-secondary {
    color: #4F4F4F;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word;
}

.pdp-pricing-value-only {
    color: #080808;
    font-size: 28px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 36px;
    word-wrap: break-word;
}

/* Action Buttons */
.pdp-action-buttons {
    align-self: stretch;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    flex-wrap: wrap;
}

.pdp-action-btn {
    flex: 1 1 0;
    min-width: 120px;
    padding: 8px 12px;
    background: white;
    border-radius: 4px;
    outline: 1px #F6F6F6 solid;
    outline-offset: -1px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdp-action-btn:hover {
    outline-color: #A51336;
    background: #f9f9f9;
}

.pdp-action-btn-label {
    color: #080808;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 20px;
    word-wrap: break-word;
}

.pdp-action-btn-icon {
    padding: 4px;
    background: #E7E7E7;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 28px;
    height: 28px;
}

.pdp-action-btn-icon svg {
    width: 20px;
    height: 20px;
    stroke: #888888;
}

/* Price Breakdown */
.pdp-price-breakdown {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.pdp-price-row {
    align-self: stretch;
    padding: 8px 12px;
    border-bottom: 1px #E7E7E7 solid;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
}

.pdp-price-row:first-child {
    border-top: 1px #E7E7E7 solid;
}

.pdp-price-row-label {
    text-align: center;
    color: #5D5D5D;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.pdp-price-row-value {
    text-align: center;
    color: black;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

/* Stock Number */
.pdp-stock-number {
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    padding: 2px;
    border-radius: 8px;
}

.pdp-stock-label {
    text-align: center;
    color: #4F4F4F;
    font-size: 10px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 16px;
    word-wrap: break-word;
}

.pdp-stock-value {
    text-align: center;
    color: #080808;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

/* CTA Buttons */
.pdp-cta-buttons {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    display: flex;
}

.pdp-cta-primary {
    align-self: stretch;
    height: 67px;
    background: #080808;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pdp-cta-primary:hover {
    background: #2a2a2a;
}

.pdp-cta-primary .pdp-cta-text {
    text-align: center;
    color: white;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

.pdp-cta-secondary {
    align-self: stretch;
    height: 67px;
    padding: 20px;
    background: #BD1F3F;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pdp-cta-secondary:hover {
    background: #9a1833;
}

.pdp-cta-secondary .pdp-cta-text {
    color: white;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

.pdp-cta-icon {
    width: 20px;
    height: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-cta-row {
    align-self: stretch;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    display: inline-flex;
}

.pdp-cta-tertiary {
    flex: 1 1 0;
    height: 50px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.10);
    outline: 1px #B0B0B0 solid;
    outline-offset: -1px;
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pdp-cta-tertiary:hover {
    background: rgba(255, 255, 255, 0.20);
    outline-color: #A51336;
}

.pdp-cta-text-small {
    text-align: center;
    color: #080808;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 18px;
    word-wrap: break-word;
}

/* Trade-in CTA */
.pdp-trade-in-cta {
    align-self: stretch;
    height: 88px;
    padding: 20px;
    background: #A51336;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pdp-trade-in-cta:hover {
    background: #8a0f2d;
}

.pdp-trade-in-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-flex;
}

.pdp-trade-in-title {
    color: white;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 28px;
    word-wrap: break-word;
}

.pdp-trade-in-subtitle {
    color: white;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.pdp-trade-in-icon {
    width: 47px;
    height: 47px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive adjustments for new design */
@media (max-width: 992px) {
    .pdp-title-v2 {
        font-size: 32px;
        line-height: 40px;
    }

    .pdp-action-btn {
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .pdp-title-v2 {
        font-size: 24px;
        line-height: 32px;
    }

    .pdp-pricing-hero {
        flex-direction: column;
        height: auto;
        padding: 16px;
    }

    .pdp-action-buttons {
        flex-direction: column;
    }

    .pdp-action-btn {
        width: 100%;
        min-width: 0;
    }

    .pdp-price-primary {
        font-size: 24px;
        line-height: 32px;
    }

    .pdp-pricing-value-only {
        font-size: 22px;
        line-height: 30px;
    }

    .breadcrumbs a,
    .breadcrumbs span {
        display: block;
    }
}

@media (max-width: 576px) {
    .pdp-badges {
        justify-content: center;
    }

    .pdp-title-v2 {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }

    .pdp-cta-primary,
    .pdp-cta-secondary {
        height: 56px;
    }

    .pdp-trade-in-cta {
        height: auto;
        min-height: 88px;
    }
}

/* PDP Related Products Slider */
.pdp-related-products-section {
    margin-top: 40px;
    padding: 20px;
    background: #F6F6F6;
    border-radius: 20px;
    overflow: hidden;
}

.pdp-related-title {
    text-align: center;
    color: #0D1521;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
}

.pdp-related-slider {
    position: relative;
}

.pdp-related-slide {
    padding: 0 4px;
}

.pdp-related-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: white;
    box-shadow: 0px 2px 6px rgba(16, 24, 40, 0.06);
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    min-height: 230px;
}

.pdp-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(16, 24, 40, 0.12);
}

.pdp-related-image {
    flex: 1;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.pdp-related-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-related-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #ccc;
    font-size: 32px;
}

.pdp-related-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-top: 10px;
}

.pdp-related-price {
    text-align: center;
    color: #BD1F3F;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 26px;
}

.pdp-related-name {
    text-align: center;
    color: black;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 20px;
}

/* Slick arrows for related products */
.pdp-related-slider .slick-prev,
.pdp-related-slider .slick-next {
    width: 32px;
    height: 32px;
    z-index: 10;
}

.pdp-related-slider .slick-prev {
    left: -40px;
}

.pdp-related-slider .slick-next {
    right: -40px;
}

.pdp-related-slider .slick-prev:before,
.pdp-related-slider .slick-next:before {
    display: none;
}

.pdp-related-slider .slick-prev svg,
.pdp-related-slider .slick-next svg {
    width: 18px;
    height: 18px;
}

/* Slick dots for related products */
.pdp-related-slider .slick-dots {
    bottom: -40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pdp-related-slider .slick-dots li {
    width: 6px;
    height: 6px;
    margin: 0;
}

.pdp-related-slider .slick-dots li button {
    width: 6px;
    height: 6px;
    padding: 0;
}

.pdp-related-slider .slick-dots li button:before {
    content: '';
    width: 6px;
    height: 6px;
    background: black;
    opacity: 0.3;
    border-radius: 50%;
}

.pdp-related-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Responsive adjustments for related products */
@media (max-width: 992px) {
    .pdp-related-products-section {
        margin-top: 30px;
        padding: 16px;
    }

    .pdp-related-slider .slick-prev {
        left: -35px;
    }

    .pdp-related-slider .slick-next {
        right: -35px;
    }
}

@media (max-width: 768px) {
    .pdp-related-products-section {
        margin-top: 20px;
        padding: 16px;
        border-radius: 16px;
    }

    .pdp-related-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .pdp-related-slider .slick-prev,
    .pdp-related-slider .slick-next {
        display: none !important;
    }

    .pdp-related-slider .slick-dots {
        bottom: -30px;
    }
}

@media (max-width: 576px) {
    .pdp-related-image {
        min-height: 100px;
    }

    .pdp-related-price {
        font-size: 14px;
        line-height: 20px;
    }

    .pdp-related-name {
        font-size: 13px;
        line-height: 18px;
    }
}