.product-detail {
    color: var(--color-text);
    background: var(--color-background);
}

.product-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
    padding-block: 22px;
    color: color-mix(in srgb, var(--color-text) 54%, transparent);
    font-size: 12px;
}

.product-detail__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.product-detail__breadcrumb a:hover {
    color: var(--color-primary);
}

.product-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(370px, .75fr);
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
    border-top: 1px solid color-mix(
        in srgb,
        var(--color-text) 11%,
        transparent
    );
}

.product-gallery {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    min-width: 0;
    padding: 24px 24px 20px 0;
    border-right: 1px solid color-mix(
        in srgb,
        var(--color-text) 11%,
        transparent
    );
}

.product-gallery__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;

    /*
     * Thumbnail genişliği yaklaşık 80px.
     * aspect-ratio .8 olduğu için yükseklik yaklaşık 100px.
     * 4 görsel + aralıklar = yaklaşık 430px.
     */
    max-height: 530px;
    padding-right: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;

    scrollbar-width: thin;
    scrollbar-color:
        color-mix(in srgb, var(--color-text) 22%, transparent)
        transparent;
}

.product-gallery__thumbnails::-webkit-scrollbar {
    width: 4px;
}

.product-gallery__thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.product-gallery__thumbnails::-webkit-scrollbar-thumb {
    background: color-mix(
        in srgb,
        var(--color-text) 22%,
        transparent
    );
    border-radius: 999px;
}

.product-gallery__thumbnails::-webkit-scrollbar-thumb:hover {
    background: color-mix(
        in srgb,
        var(--color-text) 40%,
        transparent
    );
}
.product-gallery__thumbnail {
    appearance: none;
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: #f1f0eb;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
}
.product-gallery__thumbnail {
    flex: 0 0 auto;
}
.product-gallery__thumbnail::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 6px;
    left: 8px;
    height: 2px;
    background: var(--color-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.product-gallery__thumbnail:hover::after,
.product-gallery__thumbnail.is-active::after {
    transform: scaleX(1);
}

.product-gallery__thumbnail.is-active {
    border-color: color-mix(
        in srgb,
        var(--color-text) 22%,
        transparent
    );
}

.product-gallery__thumbnail img {
    display: block;
    width: 100%;
    aspect-ratio: .8;
    object-fit: cover;
}

.product-gallery__stage {
    position: relative;
    display: grid;

    overflow: hidden;
    place-items: center;

}

.product-gallery__stage picture {
    display: contents;
}

.product-gallery__stage picture img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 810px;
    object-fit: contain;
    transition:
        opacity 180ms ease,
        transform 380ms cubic-bezier(.2, .7, .2, 1);
}

.product-gallery__stage picture img:hover {
    transform: scale(1.025);
}

.product-gallery__stage picture img.is-changing {
    opacity: .35;
}

.product-gallery__badge {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    padding: 9px 13px;
    color: #fff;
    background: #171715;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-gallery__navigation {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(20, 20, 18, .08);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.product-gallery__navigation button {
    appearance: none;
    display: grid;
    width: 35px;
    height: 35px;
    padding: 0;
    color: #20201e;
    background: transparent;
    border: 0;
    border-radius: 50%;
    place-items: center;
    cursor: pointer;
}

.product-gallery__navigation button:hover {
    background: #e9e7e1;
}

.product-gallery__navigation svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.product-gallery__navigation span {
    min-width: 42px;
    color: #77776f;
    font-size: 11px;
    text-align: center;
}

.product-gallery__navigation strong {
    color: #20201e;
}

.product-gallery__empty {
    display: grid;
    grid-column: 1 / -1;
    min-height: 650px;
    color: #96968e;
    background: #f3f1eb;
    place-items: center;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-purchase {
    padding: 24px clamp(10px, 1vw, 26px);
}

.product-purchase__inner {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.product-purchase__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 20px;
    margin-bottom: 26px;
    color: color-mix(in srgb, var(--color-text) 56%, transparent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.product-purchase h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(28px, 1.2vw, 30px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .98;
}

.product-purchase__description {
    max-width: 540px;
    margin: 25px 0 0;
    color: color-mix(in srgb, var(--color-text) 65%, transparent);
    font-size: 15px;
    line-height: 1.7;
}

.product-purchase__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-top: 34px;
}

.product-purchase__price strong {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.035em;
}

.product-purchase__price del {
    color: color-mix(in srgb, var(--color-text) 42%, transparent);
    font-size: 15px;
}

.product-purchase__separator {
    height: 1px;
    margin-block: 32px 23px;
    background: color-mix(
        in srgb,
        var(--color-text) 12%,
        transparent
    );
}

.product-purchase__availability span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.product-purchase__availability i {
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 50%;
}

.product-purchase__availability .is-in-stock {
    color: #397451;
}

.product-purchase__availability .is-out-of-stock {
    color: #aa3f35;
}

.product-purchase__controls {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-quantity > span {
    font-size: 13px;
    font-weight: 600;
}

.product-quantity__control {
    display: grid;
    grid-template-columns: 42px 46px 42px;
    min-height: 42px;
    overflow: hidden;
    border: 1px solid color-mix(
        in srgb,
        var(--color-text) 18%,
        transparent
    );
    border-radius: 999px;
}

.product-quantity__control button,
.product-quantity__control input {
    appearance: none;
    width: 100%;
    color: inherit;
    background: transparent;
    border: 0;
    text-align: center;
}

.product-quantity__control button {
    font-size: 18px;
    cursor: pointer;
}

.product-quantity__control button:hover {
    background: color-mix(
        in srgb,
        var(--color-text) 6%,
        transparent
    );
}

.product-quantity__control input {
    padding: 0;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    -moz-appearance: textfield;
}

.product-quantity__control input::-webkit-outer-spin-button,
.product-quantity__control input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.product-purchase__button {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    padding: 0 24px;
    color: #fff;
    background: var(--color-primary);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition);
}

.product-purchase__button:hover:not(:disabled) {
    background: color-mix(
        in srgb,
        var(--color-primary) 86%,
        #000
    );
    transform: translateY(-2px);
}

.product-purchase__button:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: .48;
}

.product-purchase__button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.product-purchase__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
    color: color-mix(in srgb, var(--color-text) 54%, transparent);
    font-size: 11px;
}

.product-purchase__notes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.product-purchase__notes svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.product-information {
    display: grid;
    grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
    gap: clamp(60px, 9vw, 180px);
    width: min(calc(100% - 48px), 1480px);
    margin-inline: auto;
    padding-block: clamp(10px, 1vw, 10px);
}

.product-information__intro {
    align-self: start;
}

.product-information__intro > span {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-information__intro h2 {
    max-width: 360px;
    margin: 15px 0 0;
    font-size: clamp(24px, 1.4vw, 28px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .94;
}

.product-information__lead {
    max-width: 480px;
    margin-top: 27px;
    color: color-mix(in srgb, var(--color-text) 63%, transparent);
    font-size: 14px;
    line-height: 1.75;
}

.product-information__accordion {
    align-self: start;
    padding: 8px clamp(24px, 4vw, 54px);
    background: #efeee9;
    border-radius: 28px;
}

.product-information__item {
    border-bottom: 1px solid rgba(30, 30, 27, .14);
}

.product-information__item:last-child {
    border-bottom: 0;
}

.product-information__trigger {
    appearance: none;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    gap: 18px;
    align-items: center;
    width: 100%;
    min-height: 88px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.product-information__number {
    color: rgba(32, 32, 30, .42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.product-information__trigger strong {
    font-size: clamp(17px, 1vw, 22px);
    font-weight: 500;
    letter-spacing: -.025em;
}

.product-information__trigger i {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
}

.product-information__trigger i::before,
.product-information__trigger i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 220ms ease;
}

.product-information__trigger i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.product-information__item.is-open
.product-information__trigger i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.product-information__panel[hidden] {
    display: none;
}

.product-information__panel-inner {
    padding: 0 42px 42px 54px;
}

.product-information__rich-text {
    max-width: 820px;
    color: rgba(32, 32, 30, .7);
    font-size: 15px;
    line-height: 1.75;
}

.product-information__rich-text > :first-child {
    margin-top: 0;
}

.product-information__rich-text > :last-child {
    margin-bottom: 0;
}

.product-information__rich-text h2,
.product-information__rich-text h3 {
    color: #20201e;
    font-weight: 550;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.product-information__rich-text h2 {
    margin: 34px 0 14px;
    font-size: 30px;
}

.product-information__rich-text h3 {
    margin: 28px 0 12px;
    font-size: 22px;
}

.product-information__rich-text ul,
.product-information__rich-text ol {
    padding-left: 21px;
}

.product-information__rich-text li + li {
    margin-top: 7px;
}

.product-information__rich-text a {
    color: var(--color-primary);
    text-underline-offset: 3px;
}

.product-information__document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 23px;
    background: rgba(255, 255, 255, .62);
    border-radius: 16px;
}

.product-information__document span,
.product-information__document strong {
    display: block;
}

.product-information__document span {
    margin-bottom: 6px;
    color: rgba(32, 32, 30, .5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-information__document strong {
    font-size: 15px;
    font-weight: 600;
}

.product-information__document a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 13px 18px;
    color: #fff;
    background: #20201e;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.product-information__document a:hover {
    background: var(--color-primary);
}

.product-information__document svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

@media (max-width: 1050px) {
    .product-overview {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        padding-right: 0;
        border-right: 0;
    }

    .product-purchase {
        padding: 60px 0 90px;
    }

    .product-purchase__inner {
        position: static;
    }

    .product-information {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}

@media (max-width: 700px) {
    .product-detail__breadcrumb,
    .product-overview,
    .product-information {
        width: calc(100% - 28px);
    }

    .product-detail__breadcrumb {
        padding-block: 16px;
        font-size: 10px;
    }

    .product-gallery {
        display: flex;
        flex-direction: column-reverse;
        padding-block: 0;
    }

    .product-gallery__thumbnails {
        flex-direction: row;
        gap: 7px;
        overflow-x: auto;
        padding: 10px 0 0;
        scrollbar-width: none;
    }

    .product-gallery__thumbnails::-webkit-scrollbar {
        display: none;
    }

    .product-gallery__thumbnail {
        width: 70px;
        flex: 0 0 70px;
    }

    .product-gallery__stage {
        min-height: 115vw;
    }

    .product-gallery__navigation {
        right: 12px;
        bottom: 12px;
    }

    .product-purchase {
        padding: 42px 0 74px;
    }

    .product-purchase h1 {
        font-size: 22px;
    }

    .product-purchase__meta {
        margin-bottom: 19px;
    }

    .product-information {
        padding-block: 18px;
    }

    .product-information__intro h2 {
        font-size: 49px;
    }

    .product-information__accordion {
        padding-inline: 18px;
        border-radius: 20px;
    }

    .product-information__trigger {
        grid-template-columns: 25px minmax(0, 1fr) 22px;
        gap: 10px;
        min-height: 78px;
    }

    .product-information__trigger strong {
        font-size: 17px;
    }

    .product-information__panel-inner {
        padding: 0 0 30px 35px;
    }

    .product-information__document {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-information__document a {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 700px) {
    .product-gallery__thumbnails {
        flex-direction: row;
        gap: 7px;
        width: 100%;
        max-height: none;
        padding: 10px 0 2px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .product-gallery__thumbnails::-webkit-scrollbar {
        display: none;
    }

    .product-gallery__thumbnail {
        width: 70px;
        flex: 0 0 70px;
    }
}

.product-hotspots {
    position: relative;
    padding: 30px;
    color: var(--hotspot-text);
}

.product-hotspots__heading {
    width: min(calc(100% - 48px), 1480px);
    margin: 0 auto clamp(38px, 5vw, 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.product-hotspots__heading > span {
    display: block;
    margin-bottom: 13px;
    color: var(--hotspot-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-hotspots__heading h2 {
    margin: 0;
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .95;
    margin-bottom: 20px;
}

.product-hotspots__heading p {
    max-width: 650px;
    margin: 24px 0 0;
    color: color-mix(
        in srgb,
        var(--hotspot-text) 65%,
        transparent
    );
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto;
}

.product-hotspots__container {
    width: min(calc(100% - 48px), 1680px);
    margin-inline: auto;
}

.product-hotspots__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #deddd8;
    border-radius: 4px;
}

.product-hotspots__media picture,
.product-hotspots__media picture img {
    display: block;
    width: 100%;
}

.product-hotspots__media picture img {
    height: auto;
    object-fit: cover;
}

.product-hotspot {
    position: absolute;
    z-index: 3;
    top: var(--position-y);
    left: var(--position-x);
    transform: translate(-50%, -50%);
}

.product-hotspot.is-open {
    z-index: 20;
}

.product-hotspot__trigger {
    appearance: none;
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    color: #1f1f1d;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .24),
        0 0 0 9px rgba(255, 255, 255, .17);
    backdrop-filter: blur(12px);
    place-items: center;
    cursor: pointer;
    transition:
        color 220ms ease,
        background 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.product-hotspot__trigger::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    animation: product-hotspot-pulse 2.4s ease-out infinite;
}

.product-hotspot__trigger > span:first-child,
.product-hotspot__trigger > span:first-child::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
    transition: transform 220ms ease;
}

.product-hotspot__trigger > span:first-child::after {
    content: "";
    transform: rotate(90deg);
}

.product-hotspot.is-open .product-hotspot__trigger {
    color: #fff;
    background: var(--hotspot-accent);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .25),
        0 0 0 8px color-mix(
            in srgb,
            var(--hotspot-accent) 22%,
            transparent
        );
    transform: rotate(45deg);
}

.product-hotspot.is-open
.product-hotspot__trigger::before {
    display: none;
}

@keyframes product-hotspot-pulse {
    0% {
        opacity: .8;
        transform: scale(.82);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.product-hotspot__card {
    position: absolute;
    width: min(370px, 34vw);
    padding: 29px 31px 30px;
    visibility: hidden;
    color: #20201e;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 280ms cubic-bezier(.2, .75, .25, 1);
}

.product-hotspot.is-open .product-hotspot__card {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.product-hotspot--right .product-hotspot__card {
    top: 50%;
    left: calc(100% + 24px);
    transform: translate(15px, -50%);
}

.product-hotspot--right.is-open
.product-hotspot__card {
    transform: translate(0, -50%);
}

.product-hotspot--left .product-hotspot__card {
    top: 50%;
    right: calc(100% + 24px);
    transform: translate(-15px, -50%);
}

.product-hotspot--left.is-open
.product-hotspot__card {
    transform: translate(0, -50%);
}

.product-hotspot--top .product-hotspot__card {
    right: 50%;
    bottom: calc(100% + 24px);
    transform: translate(50%, -15px);
}

.product-hotspot--top.is-open
.product-hotspot__card {
    transform: translate(50%, 0);
}

.product-hotspot--bottom .product-hotspot__card {
    top: calc(100% + 24px);
    right: 50%;
    transform: translate(50%, 15px);
}

.product-hotspot--bottom.is-open
.product-hotspot__card {
    transform: translate(50%, 0);
}

.product-hotspot__index {
    display: block;
    margin-bottom: 17px;
    color: var(--hotspot-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
}

.product-hotspot__card h3 {
    margin: 0;
    font-size: clamp(23px, 2vw, 32px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.product-hotspot__card p {
    margin: 15px 0 0;
    color: rgba(32, 32, 30, .67);
    font-size: 14px;
    line-height: 1.65;
}

.product-hotspot__close {
    appearance: none;
    position: absolute;
    top: 13px;
    right: 15px;
    width: 30px;
    height: 30px;
    padding: 0;
    color: rgba(32, 32, 30, .5);
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.product-hotspot__close:hover {
    color: #20201e;
    background: rgba(32, 32, 30, .06);
}

.product-hotspots__mobile-panels {
    display: none;
}

@media (max-width: 900px) {
    .product-hotspot__card {
        width: min(310px, 40vw);
        padding: 23px;
    }
}

@media (max-width: 700px) {
    .product-hotspots {
        padding-block:
            min(var(--hotspot-padding-top), 70px)
            min(var(--hotspot-padding-bottom), 70px);
    }

    .product-hotspots__heading,
    .product-hotspots__container {
        width: calc(100% - 28px);
    }

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

    .product-hotspots__heading h2 {
        font-size: 45px;
    }

    .product-hotspots__heading p {
        margin-top: 18px;
        font-size: 14px;
    }

    .product-hotspots__media {
        overflow: visible;
        border-radius: 3px;
    }

    .product-hotspots__media picture {
        overflow: hidden;
        border-radius: 3px;
    }

    .product-hotspot__trigger {
        width: 37px;
        height: 37px;
        box-shadow:
            0 8px 24px rgba(0, 0, 0, .25),
            0 0 0 6px rgba(255, 255, 255, .16);
    }

    .product-hotspot__trigger::before {
        inset: -8px;
    }

    .product-hotspot__trigger
    > span:first-child,
    .product-hotspot__trigger
    > span:first-child::after {
        width: 14px;
    }

    /*
     * Mobilde görselin üzerindeki kartları kapatıyoruz.
     * İçerik aşağıdaki mobil panelde gösteriliyor.
     */
    .product-hotspot__card {
        display: none;
    }

    .product-hotspots__mobile-panels {
        display: block;
    }

    .product-hotspots__mobile-panel {
        margin-top: 12px;
        padding: 25px 23px 27px;
        color: #20201e;
        background: rgba(255, 255, 255, .8);
        border: 1px solid rgba(32, 32, 30, .08);
        border-radius: 16px;
    }

    .product-hotspots__mobile-panel[hidden] {
        display: none;
    }

    .product-hotspots__mobile-panel > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .product-hotspots__mobile-panel > div span {
        color: var(--hotspot-accent);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .13em;
    }

    .product-hotspots__mobile-panel button {
        appearance: none;
        width: 31px;
        height: 31px;
        padding: 0;
        color: #66665f;
        background: rgba(32, 32, 30, .06);
        border: 0;
        border-radius: 50%;
        font-size: 21px;
        line-height: 1;
    }

    .product-hotspots__mobile-panel h3 {
        margin: 0;
        font-size: 27px;
        font-weight: 600;
        letter-spacing: -.045em;
        line-height: 1.05;
    }

    .product-hotspots__mobile-panel p {
        margin: 14px 0 0;
        color: rgba(32, 32, 30, .68);
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-hotspot__trigger::before {
        animation: none;
    }

    .product-hotspot__card,
    .product-hotspot__trigger {
        transition: none;
    }
}