/* ================================
   PRODUCT DETAIL PAGE
================================ */

.product-detail-page {
    min-height: 700px;
    padding: 45px 0 90px;
    background: var(--light-grey);
    color: var(--black);
}

.breadcrumb {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #777777;
    font-size: 12px;
}

.breadcrumb a {
    color: #777777;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #918500;
}

.product-detail {
    display: grid;
    grid-template-columns: 55% 45%;
    background: var(--white);
}

/* Product visual */

.product-detail-image {
    min-height: 590px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle,
            rgba(245, 223, 0, 0.22),
            transparent 55%
        ),
        linear-gradient(145deg, #181919, #050505);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image::before {
    content: "RZ SPORTS";
    position: absolute;
    color: transparent;
    -webkit-text-stroke: 1px #292a2a;
    font-size: 85px;
    font-weight: 900;
    font-style: italic;
    transform: rotate(-18deg);
    white-space: nowrap;
}

.product-detail-image > strong {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: clamp(80px, 10vw, 145px);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -10px;
    text-shadow: 12px 12px var(--yellow);
    transform: rotate(-12deg);
}

.product-detail-image > small {
    position: absolute;
    bottom: 28px;
    color: #8a8a8a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 5px;
}

/* Product information */

.product-detail-info {
    padding: 70px 55px;
}

.product-detail-info h1 {
    margin-bottom: 20px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 0.95;
    font-style: italic;
    letter-spacing: -3px;
}

.detail-price {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-price strong {
    font-size: 23px;
}

.detail-price del {
    color: #999999;
    font-size: 14px;
}

.detail-description {
    padding: 22px 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    color: #696969;
    font-size: 14px;
    line-height: 1.8;
}

.stock-information {
    margin: 22px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555555;
    font-size: 12px;
    font-weight: 700;
}

.stock-dot {
    width: 9px;
    height: 9px;
    background: #35a853;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(53, 168, 83, 0.15);
}

/* Quantity */

.quantity-section {
    margin-bottom: 25px;
}

.quantity-section > label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quantity-control {
    width: 135px;
    height: 45px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    border: 1px solid #cccccc;
}

.quantity-control button {
    background: #eeeeee;
    border: none;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
}

.quantity-control button:hover {
    background: var(--yellow);
}

.quantity-control input {
    width: 100%;
    border: none;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    outline: none;
    text-align: center;
    font-weight: 900;
    appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.detail-add-to-cart {
    width: 100%;
    min-height: 56px;
    padding: 15px 22px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.25s;
}

.detail-add-to-cart:hover {
    background: var(--black);
    color: var(--white);
}

.detail-add-to-cart:disabled {
    background: #cccccc;
    color: #777777;
    cursor: not-allowed;
}

/* Product services */

.product-services {
    margin-top: 30px;
    border-top: 1px solid #dddddd;
}

.product-services > div {
    padding: 14px 0;
    border-bottom: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-services strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.product-services span {
    color: #888888;
    font-size: 11px;
    text-align: right;
}

/* Product detail tablet */

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 480px;
    }
}

/* Product detail mobile */

@media (max-width: 600px) {
    .product-detail-page {
        padding-top: 25px;
    }

    .product-detail-image {
        min-height: 350px;
    }

    .product-detail-image > strong {
        font-size: 80px;
        letter-spacing: -6px;
    }

    .product-detail-image::before {
        font-size: 55px;
    }

    .product-detail-info {
        padding: 45px 22px;
    }

    .product-detail-info h1 {
        font-size: 39px;
    }

    .product-services > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .product-services span {
        text-align: left;
    }
}
/* ================================
   PRODUCT GALLERY
================================ */

.product-detail {
    grid-template-columns:
        minmax(0, 55%)
        minmax(0, 45%);
    overflow: hidden;
}

.product-gallery,
.product-detail-info {
    min-width: 0;
}

.product-gallery {
    overflow: hidden;
    background: #111212;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 590px;
    background:
        radial-gradient(
            circle,
            rgba(245, 223, 0, 0.13),
            transparent 58%
        ),
        #111212;
}

.gallery-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition:
        opacity 0.55s ease,
        visibility 0.55s ease;
}

.gallery-slide.active {
    visibility: visible;
    opacity: 1;
}

.gallery-slide img,
.gallery-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-slide img {
    cursor: zoom-in;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.gallery-main.is-zooming .gallery-slide.active img {
    cursor: zoom-out;
    transform: scale(1.8);
}

.gallery-slide video {
    background: #000000;
}

.gallery-main .product-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 54px;
    color: #ffffff;
    font-size: 32px;
    background: rgba(8, 9, 9, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.25s;
}

.gallery-previous {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-main:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    color: #080909;
    background: #f5df00;
    border-color: #f5df00;
}

.gallery-zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 20;
    padding: 8px 11px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(8, 9, 9, 0.78);
    pointer-events: none;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
    padding: 12px;
    background: #080909;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 0;
    background: #171818;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.25s;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    border-color: #f5df00;
}

.gallery-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #ffffff;
}

.video-thumbnail span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #080909;
    background: #f5df00;
    border-radius: 50%;
}

.video-thumbnail small {
    font-size: 8px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 520px;
    }
}

@media (max-width: 600px) {
    .gallery-main {
        height: 410px;
    }

    .gallery-arrow {
        width: 38px;
        height: 46px;
        font-size: 26px;
        opacity: 1;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(5, 70px);
        overflow-x: auto;
    }

    .gallery-main.is-zooming .gallery-slide.active img {
        transform: none;
    }

    .gallery-zoom-hint {
        display: none;
    }
}
/* ================================
   PRODUCT VARIANT SELECTION
================================ */

.variant-selection {
    margin-bottom: 24px;
}

.variant-selection > label {
    display: block;
    margin-bottom: 10px;
    color: #080909;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.variant-selection select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: #080909;
    font-size: 12px;
    font-weight: 700;
    background: #f3f3f0;
    border: 1px solid #ccccca;
    outline: none;
    cursor: pointer;
    transition: 0.25s;
}

.variant-selection select:focus {
    border-color: #918500;
    box-shadow: 0 0 0 3px rgba(145, 133, 0, 0.08);
}

#variant-stock-message {
    min-height: 16px;
    margin-top: 8px;
    color: #777777;
    font-size: 10px;
    font-weight: 700;
}

#variant-stock-message.variant-error {
    color: #c52d2d;
}

#variant-stock-message.variant-success {
    color: #25823a;
}
/* ================================
   PRODUCT REVIEWS
================================ */

.product-reviews-section {
    margin-top: 55px;
    padding: 45px;
    color: #111111;
    background: #ffffff;
}

.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dddddd;
}

.reviews-heading h2 {
    margin: 6px 0 0;
    font-size: 32px;
    font-style: italic;
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-summary > strong {
    color: #111111;
    font-size: 42px;
    line-height: 1;
}

.review-summary > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-stars,
.review-stars {
    color: #f5c400;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-summary small {
    color: #777777;
    font-size: 11px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr;
    gap: 35px;
    margin-top: 30px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card {
    padding: 22px;
    background: #f5f5f3;
    border-left: 4px solid #f5c400;
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.review-card-header > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-card-header strong {
    color: #111111;
    font-size: 14px;
}

.review-card-header small {
    color: #888888;
    font-size: 10px;
}

.review-card p {
    margin: 0;
    color: #626262;
    font-size: 13px;
    line-height: 1.7;
}

.no-reviews {
    padding: 50px 20px;
    text-align: center;
    background: #f5f5f3;
    border: 1px dashed #cccccc;
}

.no-reviews h3 {
    margin-bottom: 8px;
    color: #111111;
}

.no-reviews p {
    color: #777777;
    font-size: 13px;
}

.review-form-wrapper {
    padding: 28px;
    background: #111111;
    color: #ffffff;
}

.review-form-wrapper h3 {
    margin: 6px 0 25px;
    font-size: 25px;
    font-style: italic;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form-group > label {
    color: #dddddd;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: #ffffff;
    font-family: inherit;
    background: #080808;
    border: 1px solid #383838;
    outline: none;
    box-sizing: border-box;
}

.review-form textarea {
    resize: vertical;
    line-height: 1.6;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #f5c400;
}

/* Star selection */

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.star-rating label {
    color: #4a4a4a;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #f5c400;
}

.submit-review-button {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111111;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    background: #f5c400;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.submit-review-button:hover {
    color: #ffffff;
    background: #292929;
}

.review-form-note {
    margin: 0;
    color: #888888;
    font-size: 10px;
    line-height: 1.5;
}

.review-alert {
    margin-bottom: 22px;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    border-left: 4px solid;
}

.review-alert.success {
    color: #176c35;
    background: #e6f7ec;
    border-color: #23a455;
}

.review-alert.error {
    color: #9b2424;
    background: #fdeaea;
    border-color: #df3d3d;
}


/* Reviews tablet */

@media (max-width: 900px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }
}


/* Reviews mobile */

@media (max-width: 600px) {
    .product-reviews-section {
        margin-top: 30px;
        padding: 25px 18px;
    }

    .reviews-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-heading h2 {
        font-size: 27px;
    }

    .review-card-header {
        flex-direction: column;
    }

    .review-form-wrapper {
        padding: 22px 18px;
    }
}

/* =========================================================
   RZ SPORTS — PRODUCT DETAIL COMPACT GALLERY POLISH
   Safe final overrides
========================================================= */

@media (min-width: 1100px) {
    .product-detail {
        grid-template-columns:
            minmax(0, 46%)
            minmax(0, 54%);
        align-items: stretch;
    }

    .product-gallery {
        max-width: 100%;
    }

    .gallery-main {
        height: 500px;
    }

    .product-detail-info {
        padding: 52px 46px;
    }

    .product-detail-info h1 {
        font-size: clamp(36px, 4vw, 52px);
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(5, 88px);
        justify-content: center;
        gap: 10px;
        padding: 14px;
    }

    .gallery-thumbnail {
        width: 88px;
        aspect-ratio: 1 / 1;
    }
}

@media (min-width: 1400px) {
    .product-detail {
        grid-template-columns:
            minmax(0, 44%)
            minmax(0, 56%);
    }

    .gallery-main {
        height: 480px;
    }

    .product-detail-info {
        padding: 48px 52px;
    }
}

/* Keep media centered without making the gallery feel oversized */
.gallery-slide img,
.gallery-slide video {
    object-fit: contain;
    object-position: center;
}

/* Smoother image transitions and zoom */
.gallery-slide {
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.5s ease;
}

.gallery-slide img {
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-main.is-zooming .gallery-slide.active img {
    transform: scale(1.55);
}

/* Cleaner controls */
.gallery-arrow {
    transition:
        opacity 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.gallery-thumbnail {
    transition:
        border-color 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;
}

.gallery-thumbnail:hover {
    transform: translateY(-3px);
}

/* Tablet */
@media (min-width: 701px) and (max-width: 1099px) {
    .gallery-main {
        height: 470px;
    }

    .product-detail-info {
        padding: 42px 34px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .gallery-main {
        height: 360px;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(5, 64px);
        gap: 8px;
        padding: 10px;
    }

    .product-detail-info {
        padding: 36px 20px;
    }
}


/* =========================================================
   RZ SPORTS — CLEAN PRODUCT GALLERY
   Remove black box, zoom hint and thumbnails
========================================================= */

.product-gallery {
    background: transparent;
}

.gallery-main {
    background: #f4f4f1;
}

.gallery-slides {
    background: #f4f4f1;
}

.gallery-slide {
    background: #f4f4f1;
}

.gallery-zoom-hint {
    display: none !important;
}

.gallery-thumbnails {
    display: none !important;
}

/* Keep product image centered and clean */
.gallery-slide img,
.gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Remove hover zoom behavior visually */
.gallery-slide img {
    cursor: default;
}

.gallery-main.is-zooming .gallery-slide.active img {
    transform: none !important;
    cursor: default;
}

/* Since thumbnails are removed, keep gallery compact */
@media (min-width: 1100px) {
    .gallery-main {
        height: 470px;
    }
}

@media (min-width: 1400px) {
    .gallery-main {
        height: 450px;
    }
}

@media (min-width: 701px) and (max-width: 1099px) {
    .gallery-main {
        height: 440px;
    }
}

@media (max-width: 700px) {
    .gallery-main {
        height: 340px;
    }
}
/* =========================================================
   RZ SPORTS — HERO RIGHT GRAPHIC CLEANUP
========================================================= */

.hero-design {
    min-height: 430px;
}

.yellow-circle {
    width: 300px;
    height: 300px;
    box-shadow:
        0 0 0 26px rgba(245, 223, 0, 0.02),
        0 0 70px rgba(245, 223, 0, 0.07);
}

.hero-badge {
    width: 255px;
    height: 150px;
    border-radius: 65px 26px 65px 26px;
    transform: rotate(-8deg);
    box-shadow: 0 24px 35px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

.hero-badge:hover {
    transform: rotate(-5deg) translateY(-5px);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.58);
}

.hero-badge strong {
    font-size: 68px;
    letter-spacing: -6px;
}

.hero-badge span {
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: 4px;
}

.hero-design > p {
    display: none;
}

@media (max-width: 900px) {
    .hero-design {
        min-height: 360px;
    }

    .yellow-circle {
        width: 260px;
        height: 260px;
    }

    .hero-badge {
        width: 220px;
        height: 130px;
    }

    .hero-badge strong {
        font-size: 58px;
    }
}

@media (max-width: 600px) {
    .hero-design {
        min-height: 300px;
    }

    .yellow-circle {
        width: 220px;
        height: 220px;
    }

    .hero-badge {
        width: 190px;
        height: 112px;
    }

    .hero-badge strong {
        font-size: 50px;
    }
}

/* =========================================================
   RZ SPORTS — PRODUCT DETAIL PAGE
   Professional black / yellow storefront UI
========================================================= */

.product-detail-page {
    min-height: 700px;
    padding: 42px 0 80px;
    background: #f2f2ef;
    color: #111;
}

.product-detail-page .container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 24px;
    color: #7a7a7a;
    font-size: 11px;
    font-weight: 700;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #9f8d00;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid #deded9;
    box-shadow: 0 22px 60px rgba(0,0,0,.08);
}

.product-gallery {
    min-width: 0;
    background: #ecece8;
    border-right: 1px solid #deded9;
}

.gallery-main {
    position: relative;
    height: 610px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,224,0,.08), transparent 42%),
        #f2f2ef;
}

.gallery-slides {
    position: absolute;
    inset: 0;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    background: #f2f2ef;
    transition: opacity .45s ease, visibility .45s ease;
}

.gallery-slide.active {
    visibility: visible;
    opacity: 1;
}

.gallery-slide img,
.gallery-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.gallery-slide img {
    cursor: zoom-in;
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.gallery-main.is-zooming .gallery-slide.active img {
    transform: scale(1.55);
    cursor: zoom-out;
}

.gallery-placeholder {
    flex-direction: column;
    gap: 10px;
    color: #fff;
    background: linear-gradient(145deg,#171717,#050505);
}

.gallery-placeholder strong {
    font-size: clamp(68px,9vw,120px);
    font-style: italic;
    letter-spacing: -7px;
    text-shadow: 8px 8px #ffe000;
}

.gallery-placeholder small {
    color: #aaa;
    font-size: 9px;
    letter-spacing: 4px;
    font-weight: 900;
}

.gallery-main .product-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 20;
    padding: 10px 13px;
    color: #111;
    background: #ffe000;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 44px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    background: rgba(10,10,10,.72);
    border: 1px solid rgba(255,255,255,.2);
    font-size: 28px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: .2s ease;
}

.gallery-previous { left: 14px; }
.gallery-next { right: 14px; }

.gallery-arrow:hover {
    color: #111;
    background: #ffe000;
    border-color: #ffe000;
}

.gallery-zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 20;
    padding: 7px 10px;
    color: #fff;
    background: rgba(0,0,0,.72);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 9px;
    padding: 12px;
    background: #0b0b0b;
}

.gallery-thumbnail {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    padding: 0;
    background: #181818;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .2s ease;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    border-color: #ffe000;
    transform: translateY(-2px);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-thumbnail {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    color: #fff;
}

.video-thumbnail span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #111;
    background: #ffe000;
    border-radius: 50%;
}

.video-thumbnail small {
    font-size: 8px;
    font-weight: 900;
}

.product-detail-info {
    min-width: 0;
    padding: 48px 42px;
    background: #fff;
}

.product-detail-info .section-label {
    margin: 0 0 10px;
    color: #9c8900;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-detail-info h1 {
    margin: 0 0 18px;
    color: #111;
    font-size: clamp(34px,4vw,52px);
    line-height: 1;
    font-weight: 950;
    font-style: italic;
    letter-spacing: -2.5px;
    text-transform: uppercase;
}

.detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
}

.detail-price strong {
    color: #111;
    font-size: 24px;
    font-weight: 950;
}

.detail-price del {
    color: #999;
    font-size: 13px;
}

.detail-description {
    margin: 0;
    padding: 18px 0;
    color: #656565;
    border-top: 1px solid #e5e5e1;
    border-bottom: 1px solid #e5e5e1;
    font-size: 13px;
    line-height: 1.75;
}

.stock-information {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0;
    color: #4f4f4f;
    font-size: 11px;
    font-weight: 800;
}

.stock-dot {
    width: 8px;
    height: 8px;
    background: #2ca84c;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44,168,76,.12);
}

.variant-selection {
    margin-bottom: 18px;
}

.variant-selection > label,
.quantity-section > label {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.variant-selection select {
    width: 100%;
    min-height: 48px;
    padding: 0 13px;
    color: #111;
    background: #f5f5f2;
    border: 1px solid #d7d7d2;
    outline: 0;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
}

.variant-selection select:focus {
    border-color: #c7ae00;
    box-shadow: 0 0 0 3px rgba(255,224,0,.12);
}

#variant-stock-message {
    min-height: 15px;
    margin: 7px 0 0;
    color: #777;
    font-size: 10px;
    font-weight: 700;
}

#variant-stock-message.variant-error { color: #c92e2e; }
#variant-stock-message.variant-success { color: #24833d; }

.quantity-section {
    margin-bottom: 18px;
}

.quantity-control {
    width: 145px;
    height: 46px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    border: 1px solid #d4d4cf;
}

.quantity-control button {
    border: 0;
    background: #f1f1ee;
    color: #111;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.quantity-control button:hover {
    background: #ffe000;
}

.quantity-control input {
    width: 100%;
    border: 0;
    border-inline: 1px solid #d4d4cf;
    outline: 0;
    text-align: center;
    font-weight: 900;
    appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.detail-add-to-cart {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    color: #111;
    background: #ffe000;
    border: 1px solid #ffe000;
    font-family: inherit;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .22s ease;
}

.detail-add-to-cart:hover {
    color: #fff;
    background: #111;
    border-color: #111;
}

.detail-add-to-cart:disabled {
    color: #777;
    background: #d5d5d0;
    border-color: #d5d5d0;
    cursor: not-allowed;
}

.product-services {
    margin-top: 24px;
    border-top: 1px solid #e3e3de;
}

.product-services > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid #e3e3de;
}

.product-services strong {
    color: #111;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.product-services span {
    color: #878787;
    font-size: 10px;
    text-align: right;
}

.product-reviews-section {
    margin-top: 34px;
    padding: 36px;
    background: #fff;
    border: 1px solid #deded9;
}

.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e1dc;
}

.reviews-heading .section-label {
    margin: 0;
    color: #a18d00;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.reviews-heading h2 {
    margin: 5px 0 0;
    color: #111;
    font-size: 30px;
    font-style: italic;
    text-transform: uppercase;
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-summary > strong {
    color: #111;
    font-size: 40px;
    line-height: 1;
}

.review-summary > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-stars,
.review-stars {
    color: #e0ba00;
    font-size: 17px;
    letter-spacing: 1px;
}

.review-summary small {
    color: #777;
    font-size: 10px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr);
    gap: 28px;
    margin-top: 26px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card {
    padding: 18px;
    background: #f5f5f2;
    border-left: 4px solid #ffe000;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.review-card-header > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card-header strong {
    color: #111;
    font-size: 13px;
}

.review-card-header small {
    color: #888;
    font-size: 9px;
}

.review-card p {
    margin: 0;
    color: #626262;
    font-size: 12px;
    line-height: 1.65;
}

.no-reviews {
    padding: 42px 18px;
    text-align: center;
    background: #f5f5f2;
    border: 1px dashed #cfcfca;
}

.no-reviews h3 {
    margin: 0 0 7px;
    color: #111;
}

.no-reviews p {
    margin: 0;
    color: #777;
    font-size: 12px;
}

.review-form-wrapper {
    padding: 24px;
    color: #fff;
    background: #111;
}

.review-form-wrapper .section-label {
    margin: 0;
    color: #ffe000;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.review-form-wrapper h3 {
    margin: 5px 0 20px;
    font-size: 23px;
    font-style: italic;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.review-form-group > label {
    color: #ddd;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    color: #fff;
    background: #090909;
    border: 1px solid #373737;
    outline: 0;
    font-family: inherit;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #ffe000;
}

.review-form textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.star-rating label {
    color: #484848;
    font-size: 28px;
    cursor: pointer;
    transition: .15s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffe000;
}

.submit-review-button {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    color: #111;
    background: #ffe000;
    border: 0;
    font-family: inherit;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 1px;
    cursor: pointer;
}

.submit-review-button:hover {
    color: #fff;
    background: #292929;
}

.review-form-note {
    margin: 0;
    color: #888;
    font-size: 9px;
    line-height: 1.5;
}

.review-alert {
    margin-bottom: 18px;
    padding: 12px 15px;
    border-left: 4px solid;
    font-size: 11px;
    font-weight: 700;
}

.review-alert.success {
    color: #176c35;
    background: #e7f7ec;
    border-color: #23a455;
}

.review-alert.error {
    color: #9b2424;
    background: #fdeaea;
    border-color: #df3d3d;
}

@media (max-width: 980px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        border-right: 0;
        border-bottom: 1px solid #deded9;
    }

    .gallery-main {
        height: 520px;
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-detail-page {
        padding: 24px 0 55px;
    }

    .product-detail-page .container {
        width: min(100% - 20px, 1180px);
    }

    .gallery-main {
        height: 390px;
    }

    .gallery-arrow {
        width: 38px;
        height: 44px;
        font-size: 24px;
    }

    .gallery-zoom-hint {
        display: none;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(5,70px);
        overflow-x: auto;
    }

    .product-detail-info {
        padding: 30px 20px;
    }

    .product-detail-info h1 {
        font-size: 36px;
    }

    .product-services > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .product-services span {
        text-align: left;
    }

    .product-reviews-section {
        margin-top: 22px;
        padding: 22px 16px;
    }

    .reviews-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-card-header {
        flex-direction: column;
    }

    .review-form-wrapper {
        padding: 20px 16px;
    }
}