body {
    background-color: #05080d;
}

.product-details-page {
    padding: 30px;
    background-color: white;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 30px;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
}

.product-image-slider {
    position: relative;
}

.product-image-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.product-image-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-image-slider .owl-dots {
    margin-top: 20px;
}

.product-image-slider .owl-dot span {
    background: #bfbfbf !important;
}

.product-image-slider .owl-dot.active span {
    background: var(--gold) !important;
}

.wishlist-btn,
.share-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.wishlist-btn {
    top: 20px;
    right: 20px;
}

.share-btn {
    top: 20px;
    left: 20px;
}

.wishlist-btn img,
.share-btn img {
    width: 24px;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-season {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .05em;
    font-size: 15px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 42px;
    line-height: 1.2;
    color: var(--navy-deep);
    font-weight: 600;
    margin-bottom: 18px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.stars {
    color: #ffbf00;
    font-size: 18px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 15px;
}

.stock-status {
    color: #2ca64c;
    font-weight: 600;
    font-size: 15px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 35px;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--cream);
    border-radius: 12px;
    padding: 18px;
}

.feature-box img {
    width: 36px;
}

.feature-box strong {
    display: block;
    color: var(--navy-deep);
    font-size: 15px;
}

.feature-box span {
    font-size: 13px;
    color: var(--text-muted);
}

.product-size {
    margin-bottom: 35px;
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.size-header span {
    font-weight: 600;
    font-size: 18px;
}

.size-header a {
    color: var(--gold);
    font-size: 14px;
}

.size-list {
    display: flex;
    gap: 12px;
}

.size-list button {
    width: 62px;
    height: 50px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    font-weight: 600;
    transition: .25s;
}

.size-list button:hover {
    border-color: var(--gold);
}

.size-list button.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.product-price {
    font-size: 40px;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 30px;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.cart-btn {
    background: var(--gold);
    color: white;
    height: 58px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-btn:hover {
    background: #be8b49;
}

.buy-btn {
    height: 58px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid var(--navy-deep);
    color: var(--navy-deep);
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-btn:hover {
    background: var(--navy-deep);
    color: white;
}

.buy-btn.white-color {
    display: none;
}

.cart-btn span img,
.buy-btn span img {
    width: 30px;
}

.details-bottom-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 25px;
}

.details-bottom-features div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-bottom-features img {
    width: 28px;
}

.details-bottom-features span {
    font-size: 14px;
    color: var(--text-dark);
}


.m-extra-details {
    display: none;
}


@media(max-width:1024px) {
    .product-details-page {
        padding: 15px;
    }

    .product-season,
    .rating-text,
    .stock-status {
        font-size: 20px;
    }

    .product-title {
        font-size: 30px;
    }

    .stars {
        font-size: 22px;
    }

    .product-price {
        font-size: 34px;
    }

}

@media (max-width: 768px) {
    .product-details-page {
        background-color: #05080d;
        padding: 0;
    }

    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-gallery {
        position: relative;
        top: 0;
        padding: 0;
    }

    .product-image-item {
        height: 600px;
    }

    .product-image-item img {
        object-fit: inherit;
    }

    .product-info {
        z-index: 10;
        margin-top: -172px;
    }

    /* .product-features, */
    .product-size,
    .product-price,
    .product-buttons,
    .details-bottom-features {
        margin-right: 20px;
        margin-left: 20px;
    }

    .product-data {
        position: relative;
        padding: 0 20px;
    }

    .product-data::before {
        content: "";
        position: absolute;
        inset: -80px 0 0;
        z-index: -1;

        background: linear-gradient(to top,
                #05080d 10%,
                rgba(5, 8, 13, 0.9) 35%,
                rgba(5, 8, 13, 0.45) 70%,
                transparent 100%);
    }

    .product-season,
    .rating-text,
    .stock-status {
        font-size: 14px;
        font-weight: 400;
    }

    .product-season {
        margin-bottom: 4px;
    }

    .product-title {
        color: white;
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 4px;
    }

    .product-features,
    .feature-box {
        background-color: #111521;
    }

    .feature-box strong,
    .size-header span,
    .size-header a {
        color: white;
    }

    .feature-box strong {
        font-size: 14px;
    }

    .feature-box span {
        font-size: 12px;
    }

    .stars {
        font-size: 16px;
    }

    .feature-box img {
        width: 30px;
    }

    .size-list button {
        background: #111521;
        color: white;
    }

    .product-price {
        font-size: 30px;
        color: white;
    }

    .buy-btn {
        background: #05080d;
        color: white;
        border: 1px solid var(--gold);
    }

    .buy-btn.navy-deep-color {
        display: none;
    }

    .buy-btn.white-color {
        display: flex;
    }

    .details-bottom-features span {
        color: white;
        justify-items: center;
    }

    .product-rating {
        margin-bottom: 10px;
    }

     /* ---------- Mobile extra details ---------- */
    .m-extra-details {
        display: block;
        margin: 35px 20px 50px;
        color: var(--white);
    }

    .m-section {
        margin-bottom: 28px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .m-section:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .m-section-title {
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 14px;
    }

    .m-desc-text {
        font-size: 13px;
        line-height: 1.7;
        color: #cfcfcf;
        margin-bottom: 12px;
    }

    .m-desc-text:last-child {
        margin-bottom: 0;
    }

    .m-checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
    }

    .m-checklist li {
        font-size: 13px;
        color: var(--white);
        padding-left: 24px;
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .m-checklist li::before {
        content: "\2713";
        position: absolute;
        left: 0;
        color: #fa0000;
        font-weight: 700;
    }

    .m-specs-list {
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .m-specs-list li {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        padding: 11px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .m-specs-list li:last-child {
        border-bottom: none;
    }

    .m-specs-list li span:first-child {
        color: #999999;
        font-weight: 600;
    }

    .m-specs-list li span:last-child {
        color: var(--white);
        font-weight: 700;
        text-align: right;
    }

    .m-ship-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .m-ship-item {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .m-ship-item img {
        width: 24px;
        flex-shrink: 0;
    }

    .m-ship-item strong {
        display: block;
        font-size: 13px;
        color: var(--white);
    }

    .m-ship-item span {
        font-size: 12px;
        color: #999999;
    }

    .m-rating-summary {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .m-rating-summary .stars {
        font-size: 14px;
    }

    .m-rating-text {
        font-size: 12px;
        color: #cfcfcf;
    }

    .m-also-like-scroll {
        display: flex;
        gap: 14px;
        /* overflow-x: hidden !important; */
        padding-bottom: 8px;
        /* -webkit-overflow-scrolling: touch;
        scrollbar-width: none; */
    }

    .m-also-like-scroll::-webkit-scrollbar {
        display: none;
    }

    .m-product-card {
        flex: 0 0 130px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .m-product-card-image {
        background: #1c1c1c;
        border-radius: 10px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 6px;
    }

    .m-product-card-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .m-card-year {
        font-size: 10px;
        color: #999999;
    }

    .m-card-name {
        font-size: 12px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
    }

    .m-card-price {
        font-size: 13px;
        font-weight: 800;
        color: var(--white);
    }
}

@media(max-width:576px) {
    .product-details-page {
        padding: 0;
    }

    .product-gallery {
        border-radius: 0;
        /* padding: 10px; */
    }

    .product-info {
        margin-top: -166px;
    }

    .product-data {
        padding: 0 10px;
    }

    /* .product-features, */
    .product-size,
    .product-price,
    .product-buttons,
    .details-bottom-features {
        margin-right: 10px;
        margin-left: 10px;
    }

    .product-image-item {
        height: 400px;
    }

    .product-title {
        font-size: 20px;
    }

    .feature-box {
        gap: 5px;
        padding: 16px 12px;
    }

    .product-size {
        margin-bottom: 20px;
    }

    .size-list {
        flex-wrap: wrap;
    }

    .size-list button {
        width: 40px;
        height: 35px;
    }

    .product-price {
        font-size: 26px;
    }

    .product-features {
        margin-bottom: 20px;
    }

     .m-extra-details {
        margin-right: 10px;
        margin-left: 10px;
    }

}


/* ================================================================
   PRODUCT DETAILS — DESKTOP REDESIGN (> 768px only)
   Everything above this line is your original file, untouched.
   The mobile design (<= 768px) is not affected by anything below.
   ================================================================ */

.pdp-mobile-only {
    display: block;
}

.pdp-desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .main-content {
        padding-bottom: 0;
    }

    .pdp-mobile-only {
        display: none;
    }

    .pdp-desktop-only {
        display: block;
    }

    .product-details-page {
        padding: 30px 40px;
    }

    /* ---------- Breadcrumb ---------- */
    .dt-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 20px;
    }

    .dt-breadcrumb a {
        color: var(--text-muted);
        transition: color .2s;
    }

    .dt-breadcrumb a:hover {
        color: var(--navy-deep);
    }

    .dt-breadcrumb-current {
        color: var(--navy-deep);
        font-weight: 600;
    }

    /* ---------- Wrapper ---------- */
    .dt-product-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        margin-bottom: 50px;
    }

    /* ---------- Gallery ---------- */
    .dt-gallery {
        display: flex;
        gap: 16px;
        min-width: 350px;
    }

    .dt-thumbs {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 72px;
        flex-shrink: 0;
    }

    .dt-thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid var(--border);
        cursor: pointer;
        background: var(--white);
        transition: border-color .2s;
    }

    .dt-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .dt-thumb:hover {
        border-color: var(--gold);
    }

    .dt-thumb.active {
        border-color: var(--navy-deep);
    }

    .dt-thumbs-more {
        width: 90px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 14px;
    }

    .dt-main-image {
        position: relative;
        flex: 1;
        border-radius: 16px;
        overflow: hidden;
        /* background: var(--navy-deep); */
        height: 600px;
    }

    .dt-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .dt-authentic-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(10, 17, 35, .85);
        color: var(--white);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .05em;
        padding: 6px 14px;
        border-radius: 6px;
        z-index: 5;
    }

    .dt-wishlist-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
        z-index: 5;
    }

    .dt-wishlist-btn img {
        width: 20px;
        object-fit: contain;
    }

    /* ---------- Info column ---------- */
    .dt-info {
        display: flex;
        flex-direction: column;
    }

    .dt-season {
        color: var(--gold);
        font-weight: 700;
        letter-spacing: .06em;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .dt-title {
        font-size: 24px;
        line-height: 1.2;
        font-weight: 700;
        color: var(--navy-deep);
        margin-bottom: 16px;
    }

    .dt-rating {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 10px;
    }

    .dt-stars {
        color: #ffbf00;
        font-size: 16px;
        letter-spacing: 2px;
    }

    .dt-rating-text {
        color: var(--text-muted);
        font-size: 14px;
    }

    .dt-stock {
        color: #2ca64c;
        font-weight: 600;
        font-size: 14px;
    }

    .dt-price {
        font-size: 28px;
        font-weight: 700;
        color: var(--navy-deep);
        margin-bottom: 16px;
    }

    .dt-features-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 20px;
        /* padding: 5px; */
        border: 1px solid var(--bg-cream);
    }

    .dt-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        /* background: var(--cream); */
        border-radius: 12px;
        padding: 14px 12px;
        text-align: center;
    }

    .dt-feature-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(212, 162, 99, .18);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .dt-feature-icon img {
        width: 20px;
    }

    .dt-feature strong {
        display: block;
        font-size: 13px;
        color: var(--navy-deep);
    }

    .dt-feature span {
        font-size: 11px;
        color: var(--text-muted);
    }

    .dt-size {
        margin-bottom: 24px;
    }

    .dt-size-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }

    .dt-size-header span {
        font-weight: 700;
        font-size: 14px;
        letter-spacing: .04em;
        color: var(--navy-deep);
    }

    .dt-size-header a {
        color: var(--gold);
        font-size: 13px;
        font-weight: 600;
    }

    .dt-size-list {
        display: flex;
        gap: 10px;
    }

    .dt-size-list button {
        width: 54px;
        height: 44px;
        border: 1.5px solid var(--border);
        background: var(--white);
        border-radius: 8px;
        font-weight: 600;
        color: var(--navy-deep);
        transition: border-color .2s;
    }

    .dt-size-list button:hover {
        border-color: var(--gold);
    }

    .dt-size-list button.active {
        border: 2px solid var(--navy-deep);
        background-color: var(--navy-deep);
        color: white;
        font-weight: 700;
    }

    .dt-quantity {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 24px;
        gap: 10px;
    }

    .dt-quantity>span {
        font-weight: 700;
        font-size: 14px;
        letter-spacing: .04em;
        color: var(--navy-deep);
    }

    .dt-qty-control {
        display: flex;
        align-items: center;
        gap: 18px;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 8px 18px;
    }

    .dt-qty-btn {
        font-size: 16px;
        color: var(--navy-deep);
        font-weight: 700;
        width: 18px;
    }

    .dt-qty-value {
        font-weight: 600;
        color: var(--navy-deep);
        min-width: 16px;
        text-align: center;
    }

    .dt-buttons {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 16px;
        max-width: 400px;
    }

    .dt-cart-btn,
    .dt-buy-btn {
        height: 54px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: .02em;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: .25s;
        width: 100%;
    }

    .dt-cart-btn {
        background: var(--gold);
        color: var(--white);
    }

    .dt-cart-btn:hover {
        background: #be8b49;
    }

    .dt-cart-btn span img,
    .dt-buy-btn span img {
        width: 20px;
        filter: brightness(0) invert(1);
    }

    .dt-buy-btn {
        background: var(--navy-deep);
        color: var(--white);
    }

    .dt-buy-btn:hover {
        background: var(--navy-mid);
    }

    .dt-viewing-now {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
    }

    /* ---------- Tabs ---------- */
    .dt-tabs {
        margin-bottom: 50px;
    }

    .dt-tabs-header {
        display: flex;
        gap: 40px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 26px;
    }

    .dt-tab {
        padding-bottom: 14px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .04em;
        color: var(--text-muted);
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
    }

    .dt-tab.active {
        color: var(--navy-deep);
        border-bottom-color: var(--gold);
    }

    .dt-tabs-body {
        position: relative;
    }

    .dt-tabs-body-left {
        width: 700px;
    }

    .dt-tabs-body-right {
        overflow-x: hidden;
    }

    .dt-tab-panel {
        display: none;
    }

    .dt-tab-panel.active {
        display: block;
    }

    .dt-tab-panel-grid.active {
        display: grid;
        grid-template-columns: 2.2fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .dt-specs-list {
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .dt-specs-list li {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        color: var(--text-dark);
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        max-width: 480px;
    }

    .dt-specs-list li span:first-child {
        color: var(--text-muted);
        font-weight: 600;
    }

    .dt-specs-list li span:last-child {
        color: var(--navy-deep);
        font-weight: 600;
    }

    .dt-description h3 {
        font-size: 20px;
        color: var(--navy-deep);
        margin-bottom: 14px;
    }

    .dt-description p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--text-dark);
        margin-bottom: 18px;
    }

    .dt-checklist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dt-checklist li {
        font-size: 14px;
        color: var(--text-dark);
        padding-left: 26px;
        position: relative;
        display: flex;
        justify-content: space-between;
        max-width: 480px;
    }

    .dt-checklist li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--gold);
        font-weight: 700;
    }

    .dt-ship-box {
        background: var(--cream);
        border-radius: 12px;
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .dt-ship-item {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .dt-ship-item img {
        width: 26px;
        flex-shrink: 0;
    }

    .dt-ship-item strong {
        display: block;
        font-size: 13px;
        color: var(--navy-deep);
    }

    .dt-ship-item span {
        font-size: 12px;
        color: var(--text-muted);
    }

    /* ---------- You may also like ---------- */
    .dt-also-like {
        position: relative;
    }

    .dt-also-like-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 22px;
    }

    .dt-also-like-header h2 {
        font-size: 18px;
        font-weight: 700;
        color: var(--navy-deep);
    }

    .dt-also-like-header a {
        color: var(--gold);
        font-size: 13px;
        font-weight: 600;
    }

    .dt-also-like-items {
        overflow: hidden;
    }

    .dt-also-like-items .owl-stage {
        display: flex;
    }

    .dt-product-card {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .dt-product-card-image {
        background: var(--cream);
        border-radius: 12px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .dt-product-card-image img {
        max-height: 100%;
        width: auto;
    }

    .dt-card-year {
        font-size: 12px;
        color: var(--text-muted);
    }

    .dt-card-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--navy-deep);
        line-height: 1.3;
    }

    .dt-card-price {
        font-size: 14px;
        font-weight: 700;
        color: var(--navy-deep);
        margin-top: 2px;
    }

    .dt-also-like-next {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-10px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--navy-deep);
        color: var(--white);
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
    }
}

@media (min-width: 1400px) {
    .dt-main-image {
        height: 640px;
    }

    .dt-tabs-body {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .dt-product-wrapper {
        gap: 40px;
    }
}