.pdp-overline {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    margin: 0;
    font-family: var(--bobs-font-sans), sans-serif;
    font-weight: 500;
    font-variation-settings: normal;
    letter-spacing: normal;
    color: inherit;
}

.pdp-overline-overline {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.pdp-overline-title {
    display: block;
    font-family: var(--bobs-font-serif), serif;
    font-size: 48px;
    line-height: 56px;
    font-style: normal;
}

@media screen and (max-width: 1199px) {
    .pdp-overline-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media screen and (max-width: 767px) {
    .pdp-overline-title {
        font-size: 32px;
        line-height: 40px;
    }
}

/* pdp buttons */
.pdp-btn-wrap {
    display: flex;
    max-width: 100%;
}

.pdp-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 16px 32px;
    background: #000;
    color: #fff;
    border-radius: 360px;
    font-family: Inter, proxima_nova_semibold, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pdp-btn::after {
    content: "";
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.pdp-btn:hover {
    color: rgba(177, 243, 71, 1);
    text-decoration: none;
    cursor: pointer;
}

.pdp-btn:hover::after {
    content: url(data:image/svg+xml;charset=UTF-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMCcgaGVpZ2h0PScxMCcgZmlsbD0nI0IxRjM0NycgY2xhc3M9J2JpIGJpLWNoZXZyb24tcmlnaHQnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBkPSdNNC42NDYgMS42NDZhLjUuNSAwIDAgMSAuNzA4IDBsNiA2YS41LjUgMCAwIDEgMCAuNzA4bC02IDZhLjUuNSAwIDAgMS0uNzA4LS43MDhMMTAuMjkzIDggNC42NDYgMi4zNTRhLjUuNSAwIDAgMSAwLS43MDh6Jy8+PC9zdmc+);
    margin-left: 8px;
    opacity: 1;
}

@media screen and (max-width: 575.98px) {
    .pdp-btn {
        width: 100%;
    }
}

/* pdp 2-columns */
.pdp-2col {
    padding: 40px 0;
}

.pdp-2col-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    max-width: 1528px;
    margin: auto;
    gap: 24px;
}

.pdp-2col-left {
    width: 100%;
    padding: 0 12px;
    color: rgba(0, 0, 0, 0.72);
}

.pdp-2col-left .pdp-overline {
    margin-bottom: 24px;
    color: #000;
}

.pdp-2col-left .pdp-btn-wrap {
    margin-top: 56px;
}

.pdp-2col-right {
    width: 100%;
    height: 100%;
}

.pdp-2col-right .pdp-picture {
    display: flex;
    align-self: stretch;
    width: 100%;
}

.pdp-2col-right .pdp-picture img {
    display: flex;
    align-self: stretch;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .pdp-2col {
        padding: 80px 32px;
    }

    .pdp-2col-left {
        padding: 0;
    }
}

@media screen and (min-width: 1024px) {
    .pdp-2col {
        padding: 144px 40px;
    }

    .pdp-2col-content {
        flex-direction: row;
        gap: 40px;
    }

    .pdp-2col-reverse .pdp-2col-content {
        flex-direction: row-reverse;
    }

    .pdp-2col-left,
    .pdp-2col-right {
        width: 50%;
    }
}

/* pdp banners */
.pdp-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    width: 100%;
    background-color: #000;
    color: #fff;
}

.pdp-banner-img-right {
    flex-direction: row-reverse;
}

.pdp-banner-media {
    display: flex;
    align-self: stretch;
    width: 50%;
}

.pdp-banner-media img {
    display: flex;
    align-self: stretch;
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.pdp-banner-content {
    width: 100%;
    max-width: 100%;
    padding: 24px 12px;
    align-content: center;
}

.pdp-banner .pdp-overline {
    margin-bottom: 24px;
    color: #fff;
}

.pdp-banner-body {
    margin: 0;
    font-size: 16px;
    line-height: 28px;
}

.pdp-banner a,
.pdp-banner a:hover {
    color: #fff;
}

@media screen and (min-width: 768px) {
    .pdp-banner-content {
        width: 100%;
        padding: 40px 32px;
    }
}

@media screen and (max-width: 1024px) {
    .pdp-banner,
    .pdp-banner-img-right {
        flex-direction: column;
    }

    .pdp-banner-media {
        min-height: 320px;
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .pdp-banner-content {
        width: 50%;
        padding: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .pdp-banner-content {
        max-width: 988px;
    }
}

@media screen and (min-width: 1681px) {
    .pdp-banner-content {
        max-width: 804px;
    }
}

@media screen and (min-width: 2400px) {
    .pdp-banner-content {
        max-width: 988px;
    }
}

/* pdp cards */
.pdp-bgcard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pdp-bgcard-picture {
    display: flex;
    width: 100%;
}

.pdp-bgcard-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}

.pdp-bgcard-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    height: 100%;
    max-width: 1552px;
    margin: auto;
}

.pdp-bgcard-card {
    width: 100%;
    padding: 24px 12px;
    align-content: center;
    background-color: #fff;
}

.pdp-bgcard-title {
    display: block;
    margin: 0 0 24px 0;
    font-family: var(--bobs-font-serif), serif;
    font-weight: 500;
    font-variation-settings: normal;
    letter-spacing: normal;
    font-size: 32px;
    line-height: 40px;
    font-style: normal;
}

.pdp-bgcard-inner p {
    color: rgba(0, 0, 0, 0.72);
}

@media screen and (min-width: 768px) {
    .pdp-bgcard-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media screen and (min-width: 1200px) {
    .pdp-bgcard {
        min-height: 620px;
        padding: clamp(16px, 2dvw, 64px);
    }

    .pdp-bgcard-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 620px;
    }

    .pdp-bgcard-card {
        max-width: 640px;
        padding: 40px;
        border-radius: 24px;
    }

    .pdp-bgcard-title {
        font-size: 48px;
        line-height: 56px;
    }
}
