/*
 * WooCommerce presentation layer.
 * Kept independent from Tailwind so WooCommerce template styling is isolated.
 */

.watch-product-card.product {
    background:#FCFCFC;
    border: 1px solid #DDCCAB;
    border-radius: 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

ul.products.splide__list {
    align-items: stretch;
}

ul.products.splide__list > .watch-product-card.product.splide__slide {
    height: auto;
}

.watch-product-card__image-link {
    color: inherit;
    display: block;
    padding: 20px 18px 0;
    text-decoration: none;
}

.watch-product-card__brand {
    background: linear-gradient(to bottom right, #B89166, #B89265);
    border: 1px solid transparent;
    border-radius: 999px;
    color: #ffffff;
    display: inline-block;
    font-family: "Noto Sans Thai", sans-serif;
    font-size: 13px;
    line-height: 1;
    padding: 4px 12px;
    text-transform: uppercase;
}

.watch-product-card__image {
    align-items: center;
    aspect-ratio: 1 / 1;
    display: flex;
    height: auto;
    justify-content: center;
    margin-top: 16px;
}

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

.watch-product-card__details {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    gap:6px;
    padding: 28px 16px;
}

.watch-product-card__colour {
    color: #CCA459;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 8px;
}

.watch-product-card__title {
    font-family: "Noto Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 6px;
    overflow-wrap: anywhere;
}

.watch-product-card__title a {
    color: #3A3737;
    text-decoration: none;
}

.watch-product-card__title a:hover {
    color: #9d7b49;
}

.watch-product-card__reference {
    color: #393536;
    font-family: "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    overflow-wrap: anywhere;
}

.watch-product-card__request {
    align-self: flex-start;
    color: #635757;
    display: inline-flex;
    font-size: 13px;
    line-height: 1.4;
    margin-top: auto;
    padding-top: 14px;
    text-decoration: none;
}

.watch-product-card__request:hover,
.watch-product-card__request:focus {
    color: #9c722f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-category-container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.product-category-hero {
    background: #3d3131;
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.product-category-hero__image {
    height: 100%!important;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.product-category-hero__overlay {
    background: rgb(0 0 0 / 30%);
    inset: 0;
    position: absolute;
}

.product-category-heading__container {
    padding-bottom: 48px;
    padding-top: 48px;
    text-align: center;
}

.product-category-heading__title {
    color: #c8ab74;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.product-category-heading__description {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
    margin: 16px auto 0;
    max-width: 700px;
}

.product-category-heading__description > :first-child {
    margin-top: 0;
}

.product-category-heading__description > :last-child {
    margin-bottom: 0;
}

.product-category-navigation {
    margin-top: 32px;
}

.product-category-navigation__desktop {
    display: none;
}

.product-category-navigation__mobile {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
    text-align: left;
}

.product-category-navigation__label {
    color: #635757;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-category-navigation__select {
    appearance: none;
    background-color: #fff;
    background-image: linear-gradient(45deg, transparent 50%, #9d7b49 50%), linear-gradient(135deg, #9d7b49 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    border: 1px solid #ddccab;
    border-radius: 8px;
    color: #393536;
    cursor: pointer;
    font: inherit;
    padding: 12px 44px 12px 16px;
    width: 100%;
}

.product-category-navigation__select:focus {
    border-color: #9d7b49;
    outline: 2px solid rgb(157 123 73 / 25%);
    outline-offset: 2px;
}

.product-category-products__container {
    padding-bottom: 64px;
}

.woocommerce ul.products.product-category-grid {
    clear: none;
    display: grid;
    gap: 32px 16px;
    grid-auto-rows: 1fr;
    grid-template-columns: minmax(0, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products.product-category-grid::before,
.woocommerce ul.products.product-category-grid::after {
    display: none;
}

.woocommerce ul.products.product-category-grid li.product {
    clear: none !important;
    float: none;
    margin: 0;
    width: 100%;
}

.product-category-products .woocommerce-pagination {
    margin-top: 48px;
}

.product-category-products .woocommerce-pagination ul.page-numbers {
    align-items: center;
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.product-category-products .woocommerce-pagination ul.page-numbers li {
    border: 0;
    margin: 0;
}

.product-category-products .woocommerce-pagination .page-numbers a,
.product-category-products .woocommerce-pagination .page-numbers span {
    align-items: center;
    background: #f8fafc;
    border-radius: 999px;
    color: #64748b;
    display: inline-flex;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    padding: 0 12px;
    text-decoration: none;
}

.product-category-products .woocommerce-pagination .page-numbers a:hover,
.product-category-products .woocommerce-pagination .page-numbers a:focus,
.product-category-products .woocommerce-pagination .page-numbers .current {
    background: #c19770;
    color: #fff;
}

@media (min-width: 640px) {
    .product-category-hero {
        min-height: 440px;
    }

    .product-category-heading__container {
        padding-bottom: 64px;
        padding-top: 64px;
    }

    .product-category-heading__title {
        font-size: 52px;
    }
}

@media (min-width: 768px) {
    .woocommerce ul.products.product-category-grid {
        gap: 32px 24px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .product-category-navigation__mobile {
        display: none;
    }

    .product-category-navigation__desktop {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 16px 48px;
        justify-content: center;
    }

    .product-category-navigation__link {
        border-bottom: 1px solid transparent;
        color: #9a9492;
        padding-bottom: 6px;
        text-decoration: none;
    }

    .product-category-navigation__link:hover,
    .product-category-navigation__link:focus,
    .product-category-navigation__link.is-current {
        border-color: #c8ab74;
        color: #c19770;
    }

    .woocommerce ul.products.product-category-grid {
        gap: 40px 24px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .woocommerce ul.products.product-search-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 1024px) {
    .woocommerce ul.products.product-search-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Filterable product archives. */

.watch-catalog-archive-header {
    align-items: center;
    background: #3d3131;
    display: flex;
    min-height: 280px;
    padding-top: 80px;
    text-align: center;
}

.watch-catalog-archive-header__container {
    padding-bottom: 48px;
    padding-top: 48px;
}

.watch-catalog-archive-header__title {
    color: #c8ab74;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.watch-catalog-archive-header__description {
    color: rgb(255 255 255 / 75%);
    font-size: 16px;
    line-height: 1.75;
    margin: 16px auto 0;
    max-width: 760px;
}

.watch-catalog-archive-header__description > :first-child {
    margin-top: 0;
}

.watch-catalog-archive-header__description > :last-child {
    margin-bottom: 0;
}

.watch-catalog {
    position: relative;
}

.watch-catalog__container {
    padding-top: 8px;
}

.watch-catalog-toolbar {
    align-items: stretch;
    border-bottom: 1px solid #ece7e1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
}

.watch-catalog-toolbar__primary {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.watch-catalog-toolbar__filter-button {
    align-items: center;
    background: transparent;
    border: 1px solid #ddccab;
    border-radius: 999px;
    color: #393536;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    gap: 9px;
    min-height: 42px;
    padding: 8px 16px;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.watch-catalog-toolbar__filter-button:hover,
.watch-catalog-toolbar__filter-button:focus-visible {
    background: #fbf8f2;
    border-color: #c8ab74;
    color: #9c722f;
    outline: 0;
}

.watch-filter-icon {
    display: block;
    flex: 0 0 auto;
    height: 16px;
    width: 16px;
}

.watch-catalog-toolbar__filter-count {
    align-items: center;
    background: #c19770;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    height: 20px;
    justify-content: center;
    min-width: 20px;
    padding: 0 5px;
}

.watch-catalog-toolbar__result-count {
    color: #817979;
    font-size: 13px;
    margin: 0;
}

.watch-catalog-toolbar__sorting {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.watch-catalog-toolbar__sorting label {
    color: #635757;
    font-size: 13px;
    white-space: nowrap;
}

.watch-catalog-toolbar__sorting select {
    background-color: #fff;
    border: 1px solid #ddccab;
    border-radius: 8px;
    color: #393536;
    font: inherit;
    font-size: 13px;
    min-height: 42px;
    padding: 8px 36px 8px 12px;
    width: 100%;
}

.watch-catalog-toolbar__sorting select:focus {
    border-color: #9d7b49;
    outline: 2px solid rgb(157 123 73 / 22%);
    outline-offset: 2px;
}

.watch-catalog-chips {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.watch-catalog-chip {
    align-items: center;
    background: #fbf8f2;
    border: 1px solid #e7d7b9;
    border-radius: 999px;
    color: #635757;
    display: inline-flex;
    font-size: 12px;
    gap: 8px;
    line-height: 1.3;
    padding: 8px 12px;
    text-decoration: none;
}

.watch-catalog-chip:hover,
.watch-catalog-chip:focus-visible {
    border-color: #c8ab74;
    color: #9c722f;
    outline: 0;
}

.watch-catalog-chips__clear {
    color: #817979;
    font-size: 12px;
    padding: 8px 4px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.watch-filter-overlay {
    background: rgb(24 20 20 / 52%);
    border: 0;
    cursor: pointer;
    inset: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease, visibility 220ms ease;
    visibility: hidden;
    width: 100%;
    z-index: 80;
}

.watch-filter-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.watch-filter-panel {
    background: #fff;
    bottom: 0;
    box-shadow: 12px 0 32px rgb(0 0 0 / 14%);
    left: 0;
    max-width: 440px;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 240ms ease, visibility 240ms ease;
    visibility: hidden;
    width: 100%;
    z-index: 90;
}

.watch-filter-panel.is-open {
    transform: translateX(0);
    visibility: visible;
}

body.watch-filter-is-open {
    overflow: hidden;
}

.watch-filter-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.watch-filter-panel__header {
    align-items: flex-start;
    border-bottom: 1px solid #ece7e1;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    padding: 22px 20px 18px;
}

.watch-filter-panel__title {
    color: #393536;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}

.watch-filter-panel__summary {
    color: #817979;
    font-size: 12px;
    margin: 4px 0 0;
}

.watch-filter-panel__close {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: #635757;
    cursor: pointer;
    display: inline-flex;
    font-size: 19px;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
}

.watch-filter-panel__close:hover,
.watch-filter-panel__close:focus-visible {
    background: #f7f4ef;
    color: #9c722f;
    outline: 0;
}

.watch-filter-panel__body {
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 20px 24px;
}

.watch-filter-group,
.watch-filter-more {
    border-bottom: 1px solid #ece7e1;
}

.watch-filter-group__summary,
.watch-filter-more__summary {
    align-items: center;
    color: #393536;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    justify-content: space-between;
    list-style: none;
    min-height: 58px;
    padding: 12px 2px;
}

.watch-filter-group__summary::-webkit-details-marker,
.watch-filter-more__summary::-webkit-details-marker {
    display: none;
}

.watch-filter-group__summary .watch-filter-icon,
.watch-filter-more__summary .watch-filter-icon {
    color: #a79f99;
    font-size: 11px;
    transition: transform 180ms ease;
}

.watch-filter-group[open] > .watch-filter-group__summary .watch-filter-icon,
.watch-filter-more[open] > .watch-filter-more__summary .watch-filter-icon {
    transform: rotate(180deg);
}

.watch-filter-group__summary:focus-visible,
.watch-filter-more__summary:focus-visible {
    color: #9c722f;
    outline: 2px solid rgb(157 123 73 / 22%);
    outline-offset: 2px;
}

.watch-filter-group__body {
    padding: 0 2px 18px;
}

.watch-filter-group__clear {
    color: #9c722f;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.watch-filter-option {
    align-items: center;
    color: #635757;
    cursor: pointer;
    display: grid;
    font-size: 13px;
    gap: 10px;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    min-height: 38px;
    padding: 5px 0;
}

.watch-filter-option--depth-1 {
    padding-left: 18px;
}

.watch-filter-option--depth-2 {
    padding-left: 36px;
}

.watch-filter-option--depth-3 {
    padding-left: 54px;
}

.watch-filter-option__input {
    height: 1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.watch-filter-option__check {
    align-items: center;
    background: #fff;
    border: 1px solid #cfc4b9;
    border-radius: 4px;
    display: inline-flex;
    height: 18px;
    justify-content: center;
    transition: background-color 160ms ease, border-color 160ms ease;
    width: 18px;
}

.watch-filter-option__input:checked + .watch-filter-option__check {
    background: #c19770;
    border-color: #c19770;
}

.watch-filter-option__input:checked + .watch-filter-option__check::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    height: 8px;
    transform: rotate(45deg) translate(-1px, -1px);
    width: 4px;
}

.watch-filter-option__input:focus-visible + .watch-filter-option__check {
    outline: 2px solid rgb(157 123 73 / 28%);
    outline-offset: 2px;
}

.watch-filter-option:hover .watch-filter-option__label {
    color: #9c722f;
}

.watch-filter-option__count {
    color: #aaa19a;
    font-size: 11px;
}

.watch-filter-more {
    border: 1px solid #e7d7b9;
    border-radius: 10px;
    margin-top: 20px;
    padding: 0 14px;
}

.watch-filter-more__body > .watch-filter-group:last-child {
    border-bottom: 0;
}

.watch-filter-panel__footer {
    align-items: center;
    background: #fff;
    border-top: 1px solid #ece7e1;
    display: flex;
    flex: 0 0 auto;
    gap: 16px;
    justify-content: flex-end;
    padding: 16px 20px;
}

.watch-filter-panel__clear-all {
    color: #817979;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.watch-filter-panel__apply {
    background: #c19770;
    border: 1px solid #c19770;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    min-height: 42px;
    padding: 8px 20px;
}

.has-watch-filter-js .watch-filter-panel__apply {
    display: none;
}

.watch-catalog__results {
    position: relative;
    transition: opacity 160ms ease;
}

.watch-catalog.is-loading .watch-catalog__results {
    opacity: 0.42;
    pointer-events: none;
}

.watch-catalog.is-loading::after {
    animation: watch-catalog-spin 700ms linear infinite;
    border: 3px solid rgb(193 151 112 / 25%);
    border-radius: 50%;
    border-top-color: #c19770;
    content: "";
    height: 34px;
    left: 50%;
    position: absolute;
    top: 150px;
    width: 34px;
    z-index: 2;
}

@keyframes watch-catalog-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 640px) {
    .watch-catalog-archive-header__title {
        font-size: 52px;
    }

    .watch-catalog-toolbar {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .watch-catalog-toolbar__primary {
        justify-content: flex-start;
    }

    .watch-catalog-toolbar__sorting {
        justify-content: flex-end;
    }

    .watch-catalog-toolbar__sorting select {
        min-width: 170px;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .watch-filter-overlay,
    .watch-filter-panel,
    .watch-catalog__results {
        transition: none;
    }

    .watch-catalog.is-loading::after {
        animation-duration: 1400ms;
    }
}

/* Single product. */

.watch-single-container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.watch-related-products__container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.watch-single-breadcrumb {
    padding-bottom: 30px;
    padding-top: 30px;
}

.watch-single-breadcrumb .woocommerce-breadcrumb {
    align-items: center;
    color: #948b87;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 7px;
    margin: 0;
}

.watch-single-breadcrumb .woocommerce-breadcrumb a {
    color: #948b87;
    text-decoration: none;
}

.watch-single-breadcrumb .woocommerce-breadcrumb a:hover,
.watch-single-breadcrumb .woocommerce-breadcrumb a:focus {
    color: #a77f59;
}

.watch-single-overview {
    display: grid;
    gap: 44px;
    min-width: 0;
}

.watch-single-gallery,
.watch-single-summary {
    min-width: 0;
}

.woocommerce .watch-single-product .watch-single-gallery .woocommerce-product-gallery,
.woocommerce .watch-single-product .watch-single-summary {
    clear: none;
    float: none;
    margin: 0;
    width: 100%;
}

.watch-single-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.watch-single-gallery .woocommerce-product-gallery__image {
    background: #faf9f6;
}

.watch-single-gallery .woocommerce-product-gallery__image a {
    align-items: center;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
}

.watch-single-gallery .woocommerce-product-gallery__image img {
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
    width: 100%;
}

.watch-single-gallery .flex-control-thumbs {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.woocommerce .watch-single-product .watch-single-gallery .flex-control-thumbs li {
    float: none;
    margin: 0;
    width: 100%;
}

.watch-single-gallery .flex-control-thumbs img {
    aspect-ratio: 1 / 1;
    background: #faf9f6;
    border: 1px solid transparent;
    border-radius: 2px;
    box-sizing: border-box;
    object-fit: cover;
    opacity: 1;
    padding: 0;
    width: 100%;
}

.watch-single-gallery .flex-control-thumbs img.flex-active,
.watch-single-gallery .flex-control-thumbs img:hover,
.watch-single-gallery .flex-control-thumbs img:focus {
    border-color: #c8ab74;
    opacity: 1;
}

.watch-single-summary__meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.watch-single-summary__categories,
.watch-single-summary__gender {
    align-items: center;
    border-radius: 5px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 500;
    gap: 4px;
    letter-spacing: 0;
    margin: 0;
    padding: 5px 10px;
    text-transform: uppercase;
}

.watch-single-summary__categories {
    background: #f9f5f2;
    color: #a48345;
}

.watch-single-summary__categories a {
    color: inherit;
    text-decoration: none;
}

.watch-single-summary__categories a:hover,
.watch-single-summary__categories a:focus {
    color: #765f32;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.watch-single-summary__gender {
    background: #c7a461;
    color: #fff;
}

.watch-single-summary__gender i {
    font-size: 12px;
}


.watch-single-summary__title {
    color: #171313;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.24;
    margin: 0;
}

.watch-single-summary__excerpt {
    color: #8b8480;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.watch-single-summary__excerpt > :first-child {
    margin-top: 0;
}

.watch-single-summary__excerpt > :last-child {
    margin-bottom: 0;
}

.watch-single-summary__request {
    color: #C09967;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin: 18px 0 24px;
}

.watch-spec-grid {
    display: grid;
    margin: 0;
}

.watch-spec-grid--summary {
    border-top: 1px solid #eee9e2;
    grid-template-columns: minmax(0, 1fr);
}

.watch-spec-item {
    align-items: flex-start;
    border-bottom: 1px solid #eee9e2;
    display: flex;
    gap: 14px;
    min-width: 0;
    padding: 18px 4px;
}

.watch-spec-grid--summary .watch-spec-item {
    min-height: 86px;
    padding-bottom: 16px;
    padding-top: 16px;
}

.watch-spec-item__icon {
    align-items: center;
    color: #bea05f;
    display: inline-flex;
    flex: 0 0 28px;
    font-size: 22px;
    justify-content: center;
    min-height: 30px;
}

.watch-spec-item__content {
    min-width: 0;
}

.watch-spec-item__icon img {
    display: block;
    height: 30px;
    max-width: 30px;
    object-fit: contain;
    width: auto;
}

.watch-spec-grid--technical .watch-spec-item__icon img {
    height: 34px;
    max-width: 34px;
}

.watch-spec-item dt {
    color: #211d1c;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.watch-spec-item dd {
    color: #312c2a;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    overflow-wrap: anywhere;
}

.watch-product-contact {
    margin-top: 20px;
}

.watch-product-contact a {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    gap: 9px;
    justify-content: center;
    min-height: 46px;
    text-decoration: none;
}

.watch-product-contact__icon {
    display: block;
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
}

.watch-product-contact__primary .watch-product-contact__icon {
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 18%));
    flex-basis: 32px;
    height: 32px;
    width: 32px;
}

.watch-product-contact__primary {
    background: #c7a461;
    border-radius: 2px;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    width: 100%;
}

.watch-product-contact__primary:hover,
.watch-product-contact__primary:focus {
    background: #a77f59;
    color: #fff;
}

.watch-product-contact__secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    margin-top: 8px;
}

.watch-product-contact__secondary a {
    background: #fff;
    border: 1px solid #eee9e2;
    color: #3f3937;
    font-size: 12px;
    padding: 7px 9px;
}

.watch-product-contact__secondary a + a {
    border-top: 0;
}

.watch-product-contact__secondary a:hover,
.watch-product-contact__secondary a:focus {
    background: #faf8f4;
    color: #a77f59;
}

.watch-technical-specs {
    background: #fbfaf6;
    margin-top: 56px;
    padding: 22px 28px;
}

.watch-spec-grid--technical {
    grid-template-columns: minmax(0, 1fr);
}

.watch-spec-grid--technical .watch-spec-item {
    min-height: 88px;
}

.woocommerce .watch-single-product .woocommerce-tabs {
    box-sizing: border-box;
    margin: 58px auto 72px;
    max-width: 1180px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
}

.woocommerce .watch-single-product .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #e9e4dd;
    display: flex;
    gap: 48px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.woocommerce .watch-single-product .woocommerce-tabs ul.tabs::before,
.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li::before,
.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li.active {
    background: transparent;
    border-bottom-color: #c8ab74;
}

.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li a {
    color: #292423;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 14px 6px 12px;
    text-transform: uppercase;
}

.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li.active a,
.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce .watch-single-product .woocommerce-tabs ul.tabs li a:focus {
    color: #b58b3b;
}

.woocommerce .watch-single-product .woocommerce-tabs .panel {
    color: #514b48;
    line-height: 1.8;
    margin: 0;
    padding: 30px 0 0;
}

.woocommerce .watch-single-product .woocommerce-tabs .panel > h2:first-child {
    color: #211d1c;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 18px;
}

.woocommerce .watch-single-product .shop_attributes {
    border: 0;
    margin: 0;
}

.woocommerce .watch-single-product .shop_attributes th,
.woocommerce .watch-single-product .shop_attributes td {
    background: transparent;
    border-bottom: 1px solid #eee9e2;
    font-size: 13px;
    font-style: normal;
    padding: 13px 10px;
}

.woocommerce .watch-single-product .shop_attributes th {
    color: #211d1c;
    width: 38%;
}

.woocommerce .watch-single-product .shop_attributes td p {
    margin: 0;
    padding: 0;
}

.watch-related-products {
    background: linear-gradient(135deg, #050505 0%, #080706 56%, #4e4029 100%);
    box-sizing: border-box;
    padding-bottom: 72px;
    padding-top: 72px;
}

.watch-related-products__heading {
    align-self: center;
    margin: 0;
}

.watch-related-products__heading p {
    color: #c8ab74;
    font-size: 11px;
    letter-spacing: 0.12em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.watch-related-products__heading h2 {
    color: #f4e8d4;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.woocommerce .watch-related-products ul.products {
    display: flex;
    margin: 0;
    padding: 0;
}

.woocommerce .watch-related-products ul.products::before,
.woocommerce .watch-related-products ul.products::after {
    display: none;
}

.woocommerce .watch-related-products ul.products li.product {
    clear: none;
    float: none;
    margin: 0;
}

.watch-related-products .splide__arrow {
    background: #c8ab74;
    opacity: 1;
}

.watch-related-products .splide__arrow:hover,
.watch-related-products .splide__arrow:focus {
    background: #a77f59;
}

.watch-related-products .splide__arrow svg {
    fill: #fff;
}

/* WooCommerce header and single-product supporting sections. */

.woocommerce-page .site-header .header-container > div {
    min-height: 72px;
}

.woocommerce-page .site-header .site-branding {
    justify-content: center;
    width: 140px;
}

.woocommerce-page .site-header .header-logo-default,
.woocommerce-page .site-header .header-logo-white,
.woocommerce-page .site-header .custom-logo-link {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.woocommerce-page .site-header img.custom-logo,
.woocommerce-page .site-header .header-logo-white img {
    display: block;
    height: 44px !important;
    max-height: 44px;
    max-width: 140px !important;
    object-fit: contain;
    width: auto !important;
}

.watch-single-notices .woocommerce-error,
.watch-single-notices .woocommerce-info,
.watch-single-notices .woocommerce-message {
    margin-top: 24px;
}

.watch-product-description {
    display: grid;
    gap: 34px;
}

.watch-product-description__content h3 {
    color: #272220;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 16px;
}

.watch-product-description__body {
    color: #6e6865;
    font-size: 14px;
    line-height: 1.85;
}

.watch-product-description__body > :first-child {
    margin-top: 0;
}

.watch-product-description__body > :last-child {
    margin-bottom: 0;
}

.watch-product-description__promises {
    background: #FDFBF8;
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 18px 20px;
}

.watch-product-description__promises li {
    align-items: center;
    display: flex;
    gap: 13px;
    min-width: 0;
    padding: 14px 4px;
}

.watch-product-description__promises li > span:first-child {
    align-items: center;
    color: #c1a05c;
    display: inline-flex;
    flex: 0 0 30px;
    font-size: 23px;
    justify-content: center;
}

.watch-product-description__promises li > span:first-child img {
    display: block;
    height: 32px;
    max-width: 32px;
    object-fit: contain;
    width: auto;
}

.watch-product-description__promises strong,
.watch-product-description__promises small {
    display: block;
}

.watch-product-description__promises strong {
    color: #342f2c;
    font-size: 13px;
    font-weight: 600;
}

.watch-product-description__promises small {
    color: #6f6966;
    font-size: 12px;
    margin-top: 2px;
}

.watch-related-products__layout {
    display: grid;
    gap: 32px;
    min-width: 0;
}

.watch-related-products__heading a {
    align-items: center;
    border: 1px solid #c8ab74;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    gap: 18px;
    margin-top: 28px;
    padding: 10px 20px;
    text-decoration: none;
}

.watch-related-products__heading a:hover,
.watch-related-products__heading a:focus {
    background: #c8ab74;
    color: #17120d;
}

.watch-related-products .splide {
    min-width: 0;
}

.watch-product-assurance {
    background: linear-gradient(180deg, #fffaf1 0%, #fff 100%);
}

.watch-product-assurance__container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1180px;
    padding: 68px 16px 76px;
    text-align: center;
}

.watch-product-assurance__heading > p {
    color: #c5a66a;
    font-size: 11px;
    letter-spacing: 0.14em;
    margin: 0 0 14px;
}

.watch-product-assurance__heading h2 {
    color: #b7904f;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.28;
    margin: 0;
}

.watch-product-assurance__heading > a {
    align-items: center;
    background: #c4a05d;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    gap: 12px;
    margin-top: 24px;
    padding: 9px 20px;
    text-decoration: none;
}

.watch-product-assurance__heading > a:hover,
.watch-product-assurance__heading > a:focus {
    background: #a77f59;
    color: #fff;
}

.watch-product-assurance__items {
    display: grid;
    gap: 24px;
    list-style: none;
    margin: 52px 0 0;
    padding: 0;
    text-align: left;
}

.watch-product-assurance__items li {
    align-items: center;
    display: flex;
    gap: 14px;
    min-width: 0;
}

.watch-product-assurance__icon {
    align-items: center;
    color: #c19c55;
    display: inline-flex;
    flex: 0 0 40px;
    font-size: 30px;
    justify-content: center;
}

.watch-product-assurance__icon img {
    display: block;
    height: 40px;
    max-width: 40px;
    object-fit: contain;
    width: auto;
}

.watch-product-assurance__items strong,
.watch-product-assurance__items small {
    display: block;
}

.watch-product-assurance__items strong {
    color: #51483f;
    font-size: 13px;
    font-weight: 600;
}

.watch-product-assurance__items small {
    color: #756e68;
    font-size: 12px;
    margin-top: 3px;
}

@media (min-width: 560px) {
    .watch-product-contact__secondary a + a {
        border-left: 0;
        border-top: 1px solid #eee9e2;
    }

    .watch-product-description__promises,
    .watch-product-assurance__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .watch-spec-grid--summary,
    .watch-spec-grid--technical {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-spec-grid--summary .watch-spec-item:nth-child(odd) {
        border-right: 1px solid #eee9e2;
        padding-left: 8px;
        padding-right: 18px;
    }

    .watch-spec-grid--summary .watch-spec-item:nth-child(even) {
        padding-left: 20px;
        padding-right: 8px;
    }

    .watch-spec-grid--technical .watch-spec-item:nth-child(odd) {
        border-right: 1px solid #eee9e2;
        padding-right: 20px;
    }

    .watch-spec-grid--technical .watch-spec-item:nth-child(even) {
        padding-left: 20px;
    }

}

@media (min-width: 768px) {
    .watch-product-description {
        align-items: start;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .watch-product-description--promises-only {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 1024px) {
    .watch-single-overview {
        align-items: start;
        gap: 52px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .watch-single-summary {
        padding-top: 4px;
    }

    .watch-single-summary__title {
        font-size: 36px;
    }

    .watch-technical-specs {
        margin-top: 64px;
        padding: 26px 34px;
    }

    .watch-spec-grid--technical {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .watch-spec-grid--technical .watch-spec-item,
    .watch-spec-grid--technical .watch-spec-item:nth-child(odd),
    .watch-spec-grid--technical .watch-spec-item:nth-child(even) {
        border-right: 1px solid #eee9e2;
        padding-left: 26px;
        padding-right: 26px;
    }

    .watch-spec-grid--technical .watch-spec-item:nth-child(3n + 1) {
        padding-left: 4px;
    }

    .watch-spec-grid--technical .watch-spec-item:nth-child(3n) {
        border-right: 0;
        padding-right: 4px;
    }

    .woocommerce .watch-single-product .woocommerce-tabs {
        margin-bottom: 82px;
        margin-top: 68px;
    }

    .watch-related-products {
        padding-bottom: 82px;
        padding-top: 82px;
    }

    .watch-related-products__layout {
        align-items: stretch;
        gap: 36px;
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .watch-related-products__heading h2 {
        font-size: 38px;
    }

    .watch-product-assurance__container {
        padding-bottom: 88px;
        padding-top: 80px;
    }

    .watch-product-assurance__heading h2 {
        font-size: 40px;
    }

    .watch-product-assurance__items {
        gap: 0;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 60px;
    }

    .watch-product-assurance__items li {
        border-right: 1px solid #e7dcc8;
        justify-content: center;
        padding: 0 24px;
    }

    .watch-product-assurance__items li:last-child {
        border-right: 0;
    }
}

@media (max-width: 559px) {
    .woocommerce-page .site-header .site-branding {
        width: 116px;
    }

    .woocommerce-page .site-header img.custom-logo,
    .woocommerce-page .site-header .header-logo-white img {
        height: 38px !important;
        max-height: 38px;
        max-width: 116px !important;
    }

    .watch-product-contact__secondary {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .woocommerce .watch-single-product .shop_attributes tr {
        display: table-row;
    }

    .woocommerce .watch-single-product .shop_attributes th,
    .woocommerce .watch-single-product .shop_attributes td {
        display: table-cell;
        max-width: none;
        text-align: left;
        vertical-align: top;
    }

    .woocommerce .watch-single-product .shop_attributes th {
        width: 38%;
    }

    .woocommerce .watch-single-product .shop_attributes td {
        width: 62%;
    }
}
