:root {
    --am-bg: #ffffff;
    --am-ink: #171717;
    --am-muted: #6e6a64;
    --am-line: #e8e2d9;
    --am-soft: #f7f2ea;
    --am-accent: #b7352d;
    --am-accent-dark: #8f241f;
    --am-gold: #c89531;
    --am-radius: 6px;
    --am-container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    color: var(--am-ink);
    background: var(--am-bg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeSpeed;
    overflow-x: clip;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--am-container));
    margin-inline: auto;
}

.narrow {
    max-width: 860px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip-path: none;
    background: #fff;
    border: 1px solid var(--am-ink);
}

.top-strip {
    background: var(--am-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.top-strip-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    overflow: hidden;
    white-space: nowrap;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--am-line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-bar .site-header {
    top: 32px;
}

.header-main {
    min-height: 86px;
    display: grid;
    grid-template-columns: 220px minmax(260px, 1fr) 110px;
    gap: 28px;
    align-items: center;
}

.site-logo-text {
    display: inline-flex;
    align-items: center;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
}

.custom-logo {
    max-width: 220px;
    max-height: 70px;
    object-fit: contain;
}

.header-search form {
    display: flex;
    width: 100%;
    position: relative;
}

.header-search label {
    flex: 1;
}

.header-search input[type="search"],
.search-field {
    width: 100%;
    min-height: 46px;
    padding: 0 128px 0 16px;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    background: var(--am-soft);
    color: var(--am-ink);
}

.header-search button,
.search-submit {
    position: absolute;
    right: 4px;
    top: 4px;
    min-height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 4px;
    background: var(--am-ink);
    color: #fff;
    cursor: pointer;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.account-link,
.site-cart {
    width: 42px;
    height: 42px;
    border: 1px solid var(--am-line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.account-link::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 12px 0 -5px currentColor;
}

.site-cart-icon {
    width: 16px;
    height: 14px;
    border: 2px solid currentColor;
    border-top: 0;
    position: relative;
}

.site-cart-icon::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    top: -8px;
    height: 10px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.site-cart-count {
    position: absolute;
    right: -3px;
    top: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 99px;
    background: var(--am-accent);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--am-line);
    border-radius: 50%;
    background: #fff;
    padding: 11px;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--am-ink);
}

.site-navigation {
    border-top: 1px solid var(--am-line);
}

.site-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation a {
    display: block;
    padding: 15px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.home-hero {
    background: linear-gradient(180deg, #faf7f1 0%, #fff 100%);
    border-bottom: 1px solid var(--am-line);
}

.hero-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(340px, 1.12fr);
    gap: 52px;
    align-items: center;
    padding-block: 54px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--am-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.feature-band h2,
.archive-header h1,
.page-content h1,
.single-post-content h1,
.not-found h1 {
    margin: 0;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 620px;
    font-size: clamp(42px, 6vw, 76px);
}

.hero-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--am-muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--am-ink);
    border-radius: var(--am-radius);
    background: var(--am-ink);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.button-secondary {
    background: #fff;
    color: var(--am-ink);
}

.hero-product {
    display: block;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    box-shadow: 0 18px 55px rgba(23, 23, 23, .08);
}

.hero-product img,
.hero-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #f1d56e, #d34d3f 44%, #245a94);
}

.home-section,
.reviews-section,
.content-section,
.shop-shell,
.page-content,
.single-post-content,
.not-found {
    padding-block: 70px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-heading h2,
.feature-band h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.section-heading a {
    color: var(--am-accent);
    font-weight: 800;
}

.products,
.artmandre-products {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 10px;
    margin: 0;
    padding: 0;
}

.product-card {
    min-width: 0;
    position: relative;
}

.product-card-link {
    display: block;
}

.product-card-image {
    display: block;
    overflow: hidden;
    background: var(--am-soft);
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    aspect-ratio: 4 / 5;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.025);
}

.product-badges {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    padding: 0 10px;
    border-radius: 0;
    background: var(--am-ink);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.badge.sale {
    background: var(--am-accent);
}

.product-card-body {
    display: block;
    padding-top: 12px;
}

.woocommerce-loop-product__title {
    display: block;
    min-height: 46px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.price {
    display: block;
    margin-top: 8px;
    color: var(--am-ink);
    font-weight: 800;
}

.price del {
    color: var(--am-muted);
    font-weight: 600;
    margin-left: 5px;
}

.price ins {
    text-decoration: none;
}

.product-card-action {
    margin-top: 12px;
}

.product-card-action .button {
    width: 100%;
    min-height: 42px;
    font-size: 13px;
}

.feature-band {
    padding-block: 64px;
    background: var(--am-ink);
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(280px, 1.15fr);
    gap: 54px;
    align-items: center;
}

.feature-band p {
    max-width: 560px;
    color: rgba(255,255,255,.72);
}

.feature-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.feature-points span {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--am-radius);
    font-weight: 800;
}

.reviews-section {
    background: var(--am-soft);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.reviews-grid article {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
}

.stars {
    color: var(--am-gold);
    font-size: 15px;
    letter-spacing: 0;
}

.reviews-grid h3 {
    margin: 12px 0 8px;
    font-size: 20px;
}

.reviews-grid p {
    color: var(--am-muted);
}

.reviews-grid span {
    font-weight: 800;
}

.archive-header {
    padding-block: 48px;
    background: var(--am-soft);
    border-bottom: 1px solid var(--am-line);
}

.archive-header h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.archive-description {
    max-width: 760px;
    color: var(--am-muted);
}

.post-type-archive-product .shop-shell,
.tax-product_cat .shop-shell,
.tax-product_tag .shop-shell {
    background: #fff;
    padding-top: 0;
}

.am-shop-archive-header {
    padding: 34px 0 26px;
}

.am-shop-breadcrumb {
    margin-bottom: 68px;
    color: #777;
    font-size: 14px;
    line-height: 1.4;
}

.am-shop-breadcrumb a {
    color: #777;
}

.am-shop-breadcrumb .breadcrumb_last,
.am-shop-breadcrumb-current {
    color: #111;
    font-weight: 700;
}

.am-shop-breadcrumb-separator {
    display: inline-block;
    margin: 0 10px;
    color: #111;
}

.am-shop-archive-heading {
    text-align: center;
}

.am-shop-archive-heading h1 {
    margin: 0;
    color: #111;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.am-shop-archive-heading .archive-description {
    width: 80%;
    max-width: 80%;
    margin: 48px auto 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.am-shop-archive-heading .archive-description p {
    margin: 0;
}

.am-archive-description-toggle {
    display: none;
}

.am-shop-filter-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin: 14px 0 36px;
}

.am-archive-color-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 80%;
    max-width: 80%;
    margin: 0 auto 20px;
}

.am-archive-color-filter-shell {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.archive-description.term-description .am-archive-color-filter {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
}

.am-archive-color-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    background: #fff;
}

.am-archive-color-swatch:hover,
.am-archive-color-swatch.is-active {
    border-color: #111;
}

.am-archive-color-swatch img {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 999px;
}

.am-archive-color-swatch span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.am-archive-color-clear {
    color: #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.woocommerce-result-count,
.woocommerce-ordering {
    margin: 0 0 24px;
}

.woocommerce-ordering select {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    background: #fff;
}

.am-shop-filter-row .woocommerce-ordering {
    margin: 0 0 0 auto;
}

.am-shop-filter-row .woocommerce-ordering select {
    width: 118px;
    min-width: 118px;
    min-height: 44px;
    padding: 0 30px 0 12px;
    border: 1px solid #333;
    border-radius: 0;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25L7 7.25L13 1.25' fill='none' stroke='%23b8b8b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 9px;
}

.woocommerce-pagination,
.pagination {
    grid-column: 1 / -1;
    margin-top: 36px;
}

.woocommerce-pagination ul,
.nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span,
.page-numbers {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
}

.woocommerce-pagination .current,
.page-numbers.current {
    background: var(--am-ink);
    color: #fff;
    border-color: var(--am-ink);
}

.woocommerce-pagination .page-numbers {
    border: 0;
}

.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 14px;
    border-bottom: 1px solid var(--am-line);
    text-align: left;
    vertical-align: middle;
}

.woocommerce table.shop_table th {
    background: var(--am-soft);
    font-size: 13px;
    text-transform: uppercase;
}

.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    margin-bottom: 28px;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    background: #fff;
}

.woocommerce form .form-row {
    margin: 0 0 16px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    margin: 0 0 24px;
    padding: 14px 16px;
    border: 1px solid var(--am-line);
    border-left: 4px solid var(--am-accent);
    border-radius: var(--am-radius);
    background: var(--am-soft);
    list-style-position: inside;
}

.quantity .qty {
    width: 72px;
    min-height: 40px;
    padding: 0 8px;
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    text-align: center;
}

.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    gap: 48px;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
    float: none;
    width: auto;
}

.single-product .product_title {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
}

.single-product .summary .price {
    font-size: 22px;
    margin: 16px 0;
}

.single-product .cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.single-product .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 34px;
}

.single-product .tabs {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    border-bottom: 1px solid var(--am-line);
}

.single-product .tabs a {
    display: block;
    padding: 12px 14px;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.post-card {
    border: 1px solid var(--am-line);
    border-radius: var(--am-radius);
    overflow: hidden;
}

.post-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--am-soft);
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-body {
    padding: 18px;
}

.post-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
}

.entry-content {
    color: #2b2a27;
}

.entry-content a {
    color: var(--am-accent);
    text-decoration: underline;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 1.8em;
    line-height: 1.2;
}

.entry-content p,
.entry-content li {
    color: #3d3934;
}

.am-about-page {
    padding: 70px 0;
}

.am-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.am-about-media {
    margin: 0;
}

.am-about-image {
    width: 100%;
    height: auto;
    display: block;
}

.am-about-content {
    max-width: 560px;
}

.am-about-content h1 {
    margin: 0 0 20px;
    color: #111;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

.am-about-copy {
    color: #000;
    font-size: 16px;
    line-height: 1.65;
}

.am-about-copy p {
    margin: 0 0 18px;
}

.am-about-copy p:last-child {
    margin-bottom: 0;
}

.am-about-principle {
    padding-top: 2px;
}

.am-contact-page {
    padding: 70px 0;
}

.am-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}

.am-contact-page .am-contact-panel {
    padding: 20px 50px 10px;
}

.am-contact-page .am-contact-info {
    border-right: 1px solid #e8e8e8;
}

.am-contact-page .am-contact-panel h1,
.am-contact-page .am-contact-panel h2 {
    margin: 0 0 20px;
    color: #111;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

.am-contact-form > p {
    margin: -8px 0 22px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.am-contact-details {
    display: grid;
    gap: 10px;
    margin: 0;
    color: #111;
    font-size: 16px;
    line-height: 1.6;
}

.am-contact-details div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.am-contact-details dt {
    font-weight: 800;
}

.am-contact-details dd {
    margin: 0;
}

.am-contact-details a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.am-contact-form .wpcf7 form {
    display: grid;
    gap: 14px;
}

.am-contact-form .wpcf7 p {
    margin: 0;
}

.am-contact-form .wpcf7 input:not([type="submit"]),
.am-contact-form .wpcf7 textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    background: #fff;
    color: #111;
}

.am-contact-form .wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.am-contact-form .wpcf7 input[type="submit"] {
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid #000;
    border-radius: 3px;
    background: #000;
    color: #fff;
    font-weight: 800;
}

.single-featured-image {
    margin: 28px 0;
}

.single-featured-image img {
    border-radius: var(--am-radius);
}

.site-footer {
    background: #111;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(160px, .5fr));
    gap: 42px;
    padding-block: 54px;
}

.footer-brand p,
.footer-links a {
    color: rgba(255,255,255,.72);
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-links h3,
.footer-widget-title {
    margin: 0 0 8px;
    font-size: 15px;
    text-transform: uppercase;
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .header-main {
        grid-template-columns: 180px minmax(220px, 1fr) 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .products,
    .artmandre-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .top-strip-inner {
        justify-content: flex-start;
        gap: 24px;
        overflow-x: auto;
    }

    .header-main {
        min-height: 72px;
        grid-template-columns: 44px 1fr 92px;
        gap: 12px;
    }

    .menu-toggle {
        display: block;
    }

    .site-branding {
        text-align: center;
    }

    .site-logo-text {
        font-size: 24px;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 4;
        padding-bottom: 14px;
    }

    .site-navigation {
        display: none;
    }

    .menu-open .site-navigation {
        display: block;
    }

    .site-navigation ul {
        display: grid;
        gap: 0;
        padding: 8px 0 16px;
    }

    .site-navigation a {
        padding: 11px 0;
    }

    .hero-grid {
        padding-block: 34px;
        gap: 30px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .home-section,
    .reviews-section,
    .content-section,
    .shop-shell,
    .page-content,
    .single-post-content,
    .not-found {
        padding-block: 46px;
    }

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-block;
        margin-top: 10px;
    }

    .products,
    .artmandre-products,
    .reviews-grid,
    .content-grid,
    .feature-grid,
    .am-about-layout,
    .am-contact-layout,
    .footer-top,
    .single-product div.product {
        grid-template-columns: 1fr;
    }

    .am-about-page {
        padding: 46px 0;
    }

    .am-about-layout {
        gap: 28px;
    }

    .am-about-content {
        max-width: none;
    }

    .am-contact-page {
        padding: 46px 0;
    }

    .am-about-page > .container,
    .am-contact-page > .container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .am-contact-page .am-contact-panel {
        padding: 0;
    }

    .am-contact-page .am-contact-info {
        padding-bottom: 28px;
        margin-bottom: 28px;
        border-right: 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .feature-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, var(--am-container));
    }

    .header-actions {
        gap: 8px;
    }

    .account-link,
    .site-cart {
        width: 38px;
        height: 38px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p:not(.eyebrow) {
        font-size: 16px;
    }

    .products,
    .artmandre-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 12px;
    }

    .woocommerce-loop-product__title {
        font-size: 14px;
        min-height: 56px;
    }

    .product-card .am-card-from-price {
        gap: 3px;
    }

    .product-card-action .button {
        padding: 0 10px;
        font-size: 12px;
    }

    .footer-bottom {
        display: grid;
        justify-content: start;
        padding-block: 16px;
    }
}

@media (max-width: 360px) {
    .product-card .price,
    .product-card .price .woocommerce-Price-amount,
    .product-card .price .amount,
    .product-card .am-card-from,
    .product-card .am-card-sale-price,
    .product-card .am-card-regular-price {
        font-size: 13px;
        line-height: 1.25;
    }
}

@media (max-width: 320px) {
    .product-card .price,
    .product-card .price .woocommerce-Price-amount,
    .product-card .price .amount,
    .product-card .am-card-from,
    .product-card .am-card-sale-price,
    .product-card .am-card-regular-price {
        font-size: 11px;
    }
}

/* ArtMandre reference frontpage styling */
:root {
    --am-bg: #f9f9f9;
    --am-ink: #111111;
    --am-muted: #767676;
    --am-line: rgba(0, 0, 0, .105);
    --am-soft: #f9f9f9;
    --am-accent: #c3010c;
    --am-accent-dark: #c3010c;
    --am-radius: 0px;
    --am-container: 1100px;
}

body {
    background: #f9f9f9;
    color: #111;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: clip;
}

.site-header {
    background: #f9f9f9;
    border-bottom: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.site-header .container {
    width: min(100% - 32px, 1375px);
}

.top-strip {
    height: 42px;
    background: #111;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.top-strip-inner {
    min-height: 42px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    text-align: center;
}

.top-strip-inner > span:first-child {
    grid-column: 2;
}

.top-language {
    grid-column: 3;
    justify-self: end;
    font-size: 13px;
}

.header-main {
    min-height: 90px;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: 20px;
    border-bottom: 1px solid #646464;
}

.site-branding img,
.site-logo-link img {
    width: 175px;
    height: auto;
}

.site-logo-text {
    font-size: 28px;
    font-weight: 700;
}

.header-search {
    justify-self: end;
    width: 42px;
    height: 42px;
    order: 2;
}

.header-search form {
    width: 42px;
    height: 42px;
}

.header-search label,
.header-search input[type="search"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.header-search button,
.search-submit {
    position: static;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-size: 0;
}

.header-search button::before,
.search-submit::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 7px 7px 0 -5px currentColor;
}

.header-actions {
    order: 3;
    gap: 0;
}

.account-link,
.site-cart {
    border: 0;
    border-radius: 0;
    width: 42px;
    height: 42px;
}

.site-cart-count {
    background: #111;
}

.site-navigation {
    background: #f9f9f9;
    border-top: 0;
}

.site-navigation .container {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-navigation ul {
    gap: 40px;
}

.site-navigation a {
    min-height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

.home-hero-reference {
    padding-top: 0;
    margin-top: -40px;
    margin-bottom: 20px;
}

.single-product .woocommerce-notices-wrapper,
.single-product .woocommerce-message,
.single-product .woocommerce-info,
.single-product .woocommerce-error {
    display: none !important;
}

.home-hero-image {
    display: block;
}

.home-hero-image img {
    width: 100%;
    height: auto;
}

.home-section {
    padding-block: 0 60px;
}

.reference-heading {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.reference-heading h2 {
    margin: 0;
    color: #242424;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.products,
.artmandre-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 10px;
}

.product-card {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.12);
    transition: box-shadow .25s ease, transform .25s ease;
}

.product-card:hover {
    box-shadow: 0 0 16px rgba(0,0,0,.18);
}

.product-card-link {
    padding: 0;
}

.product-card-image {
    border: 0;
    border-radius: 0;
    background: #fff;
    aspect-ratio: 1 / 1;
}

.product-card-image img {
    object-fit: cover;
}

.product-card:hover .product-card-image img {
    transform: none;
}

.product-badges {
    left: 7px;
    top: 7px;
    gap: 5px;
}

.badge {
    min-width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.badge.sale {
    background: #c3010c;
}

.badge.new {
    background: #f5be42;
    color: #111;
}

.product-card-body {
    padding: 12px 12px 0;
    text-align: center;
}

.woocommerce-loop-product__title {
    min-height: 42px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.price {
    margin-top: 6px;
    min-height: 24px;
    text-align: center;
    white-space: nowrap;
}

.am-card-from-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    max-width: 100%;
    gap: 5px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.am-card-from,
.am-card-sale-price {
    color: #c3010c;
    font-size: 15px;
    font-weight: 700;
}

.am-card-regular-price {
    color: #a8a8a8;
    font-size: 15px;
    font-weight: 400;
    text-decoration: line-through;
}

.product-card-action {
    display: none;
}

.product-card-action .button {
    min-height: 40px;
    border: 0;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card-action .button:hover {
    background: #c3010c;
}

.promo-banners-section {
    padding-block: 0 60px;
}

.promo-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.promo-banner {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
}

.promo-banner img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .35s ease;
}

.promo-banner:hover img {
    transform: scale(1.06);
}

.promo-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.48));
}

.promo-banner span {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.reviews-section {
    padding-block: 70px;
    background: #e9e9e9;
}

.reviews-stars {
    margin-bottom: 16px;
    color: #000;
    text-align: center;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 3px;
}

.reviews-section .reference-heading h2 {
    color: #1f2430;
    font-size: 32px;
    line-height: 1.2;
    text-transform: none;
}

.reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 35px;
}

.reviews-grid article {
    min-height: 220px;
    padding: 24px 20px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.03);
    text-align: center;
}

.stars {
    color: #000;
    font-size: 20px;
    letter-spacing: 2px;
}

.reviews-grid h3 {
    color: #202532;
    font-size: 20px;
    font-weight: 700;
}

.reviews-grid p,
.reviews-grid span {
    color: #202532;
    font-size: 14px;
}

.reviews-grid span {
    font-style: italic;
    font-weight: 400;
}

.site-footer {
    background: rgb(2,9,18);
}

.site-footer .site-logo-link img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
    .header-main {
        min-height: 60px;
        grid-template-columns: 48px 1fr auto;
        border-bottom: 0;
    }

    .menu-toggle {
        display: block;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .site-branding {
        justify-self: center;
    }

    .site-branding img,
    .site-logo-link img {
        width: 149px;
    }

    .header-search {
        grid-column: auto;
        order: 0;
        padding-bottom: 0;
    }

    .site-navigation .container {
        min-height: 52px;
    }

    .products,
    .artmandre-products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px 10px;
    }

    .product-card-action {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 782px) {
    .top-strip {
        height: 38px;
    }

    .top-strip-inner {
        min-height: 38px;
        display: flex;
        justify-content: center;
    }

    .top-language {
        display: none;
    }

    .home-hero-reference {
        margin-top: 0;
    }

    .products,
    .artmandre-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 10px;
    }

    .promo-banners-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .promo-banners-section,
    .home-section {
        padding-bottom: 42px;
    }
}

/* Header clone */
.site-header .header-main {
    position: relative;
    display: grid;
    grid-template-columns: 260px minmax(520px, 1fr) 42px 156px;
    align-items: center;
    min-height: 112px;
    gap: 22px;
    border-bottom: 0;
}

.site-header .site-branding {
    justify-self: start;
}

.site-header .site-logo-link img,
.site-header .site-branding img {
    width: 220px;
    max-width: 220px;
}

.site-header .site-navigation {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
}

.site-header .site-navigation .container {
    min-height: 0;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 47px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu > li {
    position: relative;
    margin: 0;
}

.header-menu > li > a {
    min-height: 90px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.submenu-caret {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.header-menu > li.menu-item-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.header-menu > li.menu-item-has-children > a .submenu-caret {
    display: none;
}

.header-menu > li:hover > a,
.header-menu > li:focus-within > a {
    box-shadow: inset 0 -3px #111;
}

.submenu-panel,
.header-menu > li > .sub-menu {
    position: absolute;
    left: 50%;
    top: calc(100% - 7px);
    z-index: 80;
    width: 276px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.header-menu > li:hover > .submenu-panel,
.header-menu > li:focus-within > .submenu-panel,
.header-menu > li:hover > .sub-menu,
.header-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.submenu-panel ul,
.header-menu > li > .sub-menu {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.submenu-panel li,
.header-menu .sub-menu li {
    margin: 0;
}

.submenu-panel a,
.header-menu .sub-menu a {
    display: block;
    padding: 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    text-transform: none;
}

.submenu-panel a:hover,
.header-menu .sub-menu a:hover {
    color: #000;
}

.top-language {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-language > img {
    width: 38px;
    height: 25px;
    object-fit: cover;
}

.top-language > span {
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translateY(-2px);
}

.site-header .header-search {
    justify-self: end;
    order: 0;
}

.site-header .header-actions {
    justify-self: end;
    order: 0;
    gap: 19px;
}

.wishlist-link,
.site-header .account-link,
.site-header .site-cart {
    width: 28px;
    height: 42px;
    border: 0;
    border-radius: 0;
    color: #001027;
    background: transparent;
}

.wishlist-link {
    position: relative;
    display: grid;
    place-items: center;
}

.wishlist-link::before,
.wishlist-link::after {
    content: "";
    position: absolute;
    top: 11px;
    width: 15px;
    height: 22px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 15px 15px 0 0;
    transform-origin: bottom center;
}

.wishlist-link::before {
    left: 4px;
    transform: rotate(-45deg);
}

.wishlist-link::after {
    right: 4px;
    transform: rotate(45deg);
}

.header-action-count,
.site-header .site-cart-count {
    position: absolute;
    right: -8px;
    top: 7px;
    z-index: 2;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 50px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
}

.site-header .account-link::before {
    width: 19px;
    height: 19px;
    border-width: 3px;
    box-shadow: 0 18px 0 -8px currentColor;
}

.site-header .site-cart-icon {
    width: 22px;
    height: 23px;
    border-width: 2px;
}

.site-header .site-cart-icon::before {
    left: 4px;
    right: 4px;
    top: -9px;
    height: 11px;
    border-width: 2px;
}

.site-header .header-search button::before,
.site-header .search-submit::before {
    width: 23px;
    height: 23px;
    border-width: 3px;
    box-shadow: 11px 11px 0 -8px currentColor;
}

@media (max-width: 1280px) {
    .site-header .header-main {
        grid-template-columns: 240px minmax(470px, 1fr) 42px 150px;
    }

    .header-menu {
        gap: 32px;
    }

    .header-menu > li > a {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .site-header .header-main {
        grid-template-columns: 48px 1fr 42px 118px;
        min-height: 110px;
        border-bottom: 1px solid #646464;
    }

    .site-header .site-branding {
        justify-self: start;
    }

    .site-header .site-logo-link img,
    .site-header .site-branding img {
        width: 220px;
        max-width: min(220px, 44vw);
    }

    .site-header .site-navigation {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        background: #f9f9f9;
        border-top: 1px solid #646464;
        border-bottom: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 2px 4px rgba(0,0,0,.04);
    }

    .menu-open .site-header .site-navigation {
        display: block;
    }

    .header-menu {
        width: min(100% - 30px, 1375px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        align-items: start;
        padding: 16px 0 12px;
    }

    .header-menu > li > a {
        min-height: 40px;
        font-size: 16px;
        font-weight: 700;
    }

    .header-menu > li:hover > a,
    .header-menu > li:focus-within > a {
        box-shadow: none;
    }

    .submenu-caret {
        display: none;
    }

    .header-menu > li.menu-item-has-children > a::after {
        display: none;
    }

    .submenu-panel,
    .header-menu > li > .sub-menu {
        position: static;
        width: auto;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .submenu-panel ul,
    .header-menu > li > .sub-menu {
        display: grid;
        gap: 0;
    }

    .submenu-panel a,
    .header-menu .sub-menu a {
        padding: 8px 0;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
    }
}

@media (max-width: 782px) {
    .site-header .header-main {
        grid-template-columns: 42px 1fr 34px 90px;
        min-height: 76px;
        gap: 8px;
    }

    .site-header .site-logo-link img,
    .site-header .site-branding img {
        width: 160px;
    }

    .site-header .header-actions {
        gap: 8px;
    }

    .wishlist-link,
    .site-header .account-link,
    .site-header .site-cart,
    .site-header .header-search,
    .site-header .header-search form {
        width: 28px;
    }

    .header-menu {
        grid-template-columns: 1fr;
    }
}

/* Migrated ArtMandre custom functionality */
.single-product .single_add_to_cart_button.button.alt,
.single-product .single_add_to_cart_button.button {
    margin-top: 30px;
    border-color: #000;
    background: #000;
    color: #fff;
}

.single-product .single_add_to_cart_button.button.alt:hover,
.single-product .single_add_to_cart_button.button:hover {
    border-color: #c3010c;
    background: #c3010c;
    color: #fff;
}

.single-product table.variations {
    margin-bottom: 0;
}

.single-product table.variations tr {
    display: flex;
    flex-wrap: wrap;
}

.single-product table.variations th,
.single-product table.variations td,
.single-product table.variations .label,
.single-product table.variations .value {
    display: block;
    width: 100%;
    padding: 0 0 10px;
}

.single-product table.variations select {
    max-width: 100%;
}

.am-extra-select,
.wc-personalisation-field,
.am-visual-selector {
    margin: 0 0 12px;
}

.am-extra-select label,
.wc-personalisation-field label,
.am-visual-label {
    display: block;
    margin-bottom: 5px;
    color: #242424;
    font-size: 14px;
    font-weight: 600;
}

.am-extra-select-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.am-extra-select-row select {
    flex: 1;
}

.am-clear-extra-select {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
}

.wc-personalisation-field textarea {
    width: 100%;
    min-height: 42px;
    height: 42px;
    padding: 8px 10px;
    line-height: 24px;
    resize: vertical;
    overflow-y: hidden;
}

.am-visual-selector select[name="attribute_pa_material"],
.am-visual-selector select[name="attribute_pa_frame"],
select[name="attribute_pa_material"],
select[name="attribute_pa_frame"] {
    display: none !important;
}

.am-selected-label {
    margin-left: 6px;
    color: #555;
    font-weight: 400;
}

.am-visual-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 10px;
}

.am-visual-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 3px;
    cursor: pointer;
}

.am-visual-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.am-visual-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #c0c0c0;
    border-radius: 3px;
    background: #f5f5f5;
    transition: border-color .2s ease;
}

.am-visual-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.am-visual-option-text {
    color: #555;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
}

.am-visual-option input:checked ~ .am-visual-img-wrap {
    border-color: #333;
    border-width: 2px;
    box-shadow: inset 0 0 0 1px #333;
}

.am-visual-option input:checked ~ .am-visual-option-text {
    color: #111;
    font-weight: 600;
}

.woocommerce-mini-cart__totals.custom-mini-totals,
.custom-row-subtotal,
.custom-row-discount-tier,
.custom-row-discount-coupon,
.custom-row-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.woocommerce-mini-cart__totals.custom-mini-totals {
    display: block;
    margin: 12px 0;
}

.widget_shopping_cart_content > .woocommerce-mini-cart__total.total {
    display: none !important;
}

.custom-row-subtotal,
.custom-row-discount-tier,
.custom-row-discount-coupon,
.custom-row-total {
    margin: 0;
}

.custom-row-total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.custom-product-labels {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.custom-product-labels span {
    width: fit-content;
    min-width: 0;
    display: inline-block;
    padding: 4px 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.custom-product-labels .label-sale {
    background: #b4161e;
}

.custom-product-labels .label-new {
    background: #f5be42;
    color: #111;
}

.single-product div.product {
    position: relative;
}

.woocommerce-mini-cart del,
.woocommerce-cart del,
.woocommerce-checkout del {
    color: #000;
    opacity: .72;
}

.woocommerce-mini-cart ins,
.woocommerce-cart ins,
.woocommerce-checkout ins {
    color: #c3010c;
    font-weight: 600;
    text-decoration: none;
}

#shipping_method {
    list-style: none;
    padding-left: 0;
}

.woocommerce-shipping-destination,
.woocommerce-shipping-calculator {
    display: none !important;
}

.promo-discount-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.promo-discount-top,
.promo-discount-bottom {
    width: 100%;
    box-sizing: border-box;
    background: #f2ff00;
}

.promo-discount-top {
    padding: 12px 16px;
}

.promo-top-row,
.promo-fire-text-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.promo-top-row {
    flex-direction: column;
}

.promo-fire,
.promo-inline-text,
.promo-countdown,
.promo-discount-bottom {
    color: #000;
    font-weight: 700;
    line-height: 1;
}

.promo-fire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.promo-fire svg {
    display: block;
    width: 16px;
    height: 16px;
}

.promo-inline-text {
    font-size: 12px;
    white-space: nowrap;
}

.promo-countdown {
    font-size: 18px;
}

.promo-plus {
    margin: 6px 0;
    text-align: center;
    font-weight: 700;
}

.promo-discount-bottom {
    padding: 10px 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

.rcs-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 70px 20px;
    overflow: hidden;
    background: #e9e9e9;
}

.rcs-container {
    width: 100%;
    margin: 0 auto;
    padding-inline: 40px;
    text-align: center;
}

.rcs-top-stars {
    margin-bottom: 16px;
    color: #000;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 3px;
}

.rcs-heading {
    margin: 0 0 35px;
    color: #1f2430;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.rcs-carousel-wrap {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 24px;
}

.rcs-track-viewport {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.rcs-track-viewport.is-dragging {
    cursor: grabbing;
}

.rcs-carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.rcs-review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-height: 220px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.03);
    text-align: center;
}

.rcs-card-stars {
    margin-bottom: 14px;
    color: #000;
    font-size: 20px;
    letter-spacing: 2px;
}

.rcs-card-title {
    margin-bottom: 12px;
    color: #202532;
    font-size: 20px;
    font-weight: 700;
}

.rcs-card-content,
.rcs-card-author {
    color: #202532;
    font-size: 14px;
}

.rcs-card-author {
    margin-top: auto;
    font-style: italic;
}

.rcs-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
}

@media (max-width: 767px) {
    .am-visual-options {
        gap: 8px;
    }

    .am-visual-option-text {
        font-size: 11px;
    }

    .rcs-section {
        padding: 36px 10px;
    }

    .rcs-carousel-wrap {
        display: block;
    }

    .rcs-carousel-track {
        gap: 0;
    }

    .rcs-review-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .rcs-btn {
        display: none;
    }
}

/* Final header reference polish */
.site-header {
    background: #fff;
    border-bottom: 1px solid #8f8f8f;
}

.site-header .top-strip {
    height: 54px;
    background: #111;
    color: #fff;
}

.site-header .top-strip-inner {
    position: relative;
    min-height: 54px;
    max-width: 1380px;
    padding: 0 18px;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

.site-header .top-language {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    gap: 9px;
}

.site-header .top-language > img {
    width: 39px;
    height: 27px;
}

.site-header .top-language > span {
    width: 8px;
    height: 8px;
    border-right-width: 2px;
    border-bottom-width: 2px;
}

.site-header .header-main {
    max-width: 1380px;
    min-height: 140px;
    grid-template-columns: 255px minmax(560px, 1fr) 42px 170px;
    gap: 28px;
    padding: 0 18px;
    border-bottom: 0;
}

.site-header .site-branding {
    justify-self: start;
}

.site-header .site-logo-link img,
.site-header .site-branding img,
.site-header .custom-logo {
    width: 220px;
    max-width: 220px;
    max-height: 70px;
    display: block;
}

.site-header .site-navigation {
    justify-self: center;
}

.site-header .header-menu {
    gap: 48px;
}

.site-header .header-menu > li > a {
    min-height: 140px;
    padding: 0;
    gap: 6px;
    color: #000;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.site-header .header-menu > li.menu-item-has-children > a::after {
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
}

.site-header .header-menu > li:hover > a,
.site-header .header-menu > li:focus-within > a {
    box-shadow: inset 0 -3px #111;
}

.site-header .submenu-panel,
.site-header .header-menu > li > .sub-menu {
    top: calc(100% - 1px);
    width: 276px;
    padding: 20px 24px;
}

.site-header .submenu-panel a,
.site-header .header-menu .sub-menu a {
    padding: 10px 0;
    font-size: 18px;
    line-height: 1.25;
}

.site-header .header-search {
    width: 42px;
    height: 42px;
    justify-self: end;
    overflow: hidden;
}

.site-header .header-search form {
    width: 42px;
    height: 42px;
    display: block;
}

.site-header .header-search label,
.site-header .header-search input[type="search"],
.site-header .search-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-header .header-search button,
.site-header .search-submit {
    position: relative;
    inset: auto;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: block;
    overflow: hidden;
    background: transparent;
    color: #001027;
    font-size: 0;
    text-indent: -9999px;
}

.site-header .header-search button::before,
.site-header .search-submit::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 22px;
    height: 22px;
    border: 3px solid currentColor;
    border-radius: 50%;
    box-shadow: none;
}

.site-header .header-search button::after,
.site-header .search-submit::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 29px;
    width: 10px;
    height: 3px;
    border-radius: 3px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.site-header .header-actions {
    gap: 18px;
    justify-self: end;
}

.site-header .wishlist-link,
.site-header .account-link,
.site-header .site-cart {
    position: relative;
    width: 32px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: block;
    background: transparent;
    color: #001027;
}

.site-header .wishlist-link::before,
.site-header .wishlist-link::after {
    top: 10px;
    width: 14px;
    height: 22px;
    border-width: 3px;
    border-bottom: 0;
}

.site-header .wishlist-link::before {
    left: 4px;
}

.site-header .wishlist-link::after {
    right: 4px;
}

.site-header .account-link::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    width: 17px;
    height: 17px;
    border: 3px solid currentColor;
    border-radius: 50%;
    box-shadow: none;
}

.site-header .account-link::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 28px;
    width: 24px;
    height: 13px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.site-header .site-cart {
    display: grid;
    place-items: center;
}

.site-header .site-cart-icon {
    position: relative;
    width: 21px;
    height: 24px;
    border: 2px solid currentColor;
    border-top: 0;
}

.site-header .site-cart-icon::before {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    top: -10px;
    height: 12px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.site-header .header-action-count,
.site-header .site-cart-count {
    right: -7px;
    top: 4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
}

@media (max-width: 1280px) {
    .site-header .header-main {
        grid-template-columns: 235px minmax(470px, 1fr) 42px 154px;
    }

    .site-header .header-menu {
        gap: 32px;
    }

    .site-header .header-menu > li > a {
        font-size: 18px;
    }
}

/* Header final SVG correction */
.site-header .top-strip {
    height: 54px !important;
}

.site-header .top-strip-inner {
    min-height: 54px !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.site-header .header-main {
    min-height: 110px !important;
    grid-template-columns: 250px minmax(520px, 1fr) 42px 156px !important;
    gap: 26px !important;
}

.site-header .header-menu {
    gap: 45px !important;
}

.site-header .header-menu > li > a {
    min-height: 110px !important;
    font-size: 17px !important;
    line-height: 1 !important;
}

.site-header .site-logo-link img,
.site-header .site-branding img,
.site-header .custom-logo {
    width: 218px !important;
    max-width: 218px !important;
}

.site-header .header-search {
    display: none !important;
}

.site-header .header-search-link,
.site-header .wishlist-link,
.site-header .account-link,
.site-header .site-cart {
    position: relative !important;
    width: 32px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #001027 !important;
    overflow: visible !important;
}

.site-header .header-search-link svg,
.site-header .wishlist-link svg,
.site-header .account-link svg,
.site-header .site-cart svg {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.1 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.site-header .wishlist-link svg {
    width: 32px !important;
    height: 30px !important;
}

.site-header .account-link svg {
    width: 29px !important;
    height: 30px !important;
}

.site-header .site-cart svg {
    width: 28px !important;
    height: 30px !important;
}

.site-header .wishlist-link::before,
.site-header .wishlist-link::after,
.site-header .account-link::before,
.site-header .account-link::after,
.site-header .site-cart-icon,
.site-header .site-cart-icon::before {
    content: none !important;
    display: none !important;
}

.site-header .header-actions {
    gap: 18px !important;
}

.site-header .header-action-count,
.site-header .site-cart-count {
    position: absolute !important;
    right: -7px !important;
    top: 4px !important;
    z-index: 2 !important;
    min-width: 20px !important;
    height: 20px !important;
    padding: 0 5px !important;
    border-radius: 50px !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    text-align: center !important;
}

@media (max-width: 1280px) {
    .site-header .header-main {
        grid-template-columns: 230px minmax(440px, 1fr) 42px 150px !important;
    }

    .site-header .header-menu {
        gap: 30px !important;
    }

    .site-header .header-menu > li > a {
        font-size: 16px !important;
    }
}

/* Header exact reference dimensions */
.site-header .header-main {
    max-width: 1080px !important;
    min-height: 90px !important;
    height: 90px !important;
    grid-template-columns: 175px minmax(560px, 1fr) 32px 138px !important;
    gap: 24px !important;
    padding: 0 !important;
}

.site-header .site-logo-link img,
.site-header .site-branding img,
.site-header .custom-logo {
    width: 175px !important;
    max-width: 175px !important;
    height: 44px !important;
    max-height: 44px !important;
    object-fit: contain !important;
}

.site-header .header-menu {
    gap: 34px !important;
    font-family: "Open Sans", sans-serif !important;
}

.site-header .header-menu > li > a {
    min-height: 90px !important;
    height: 90px !important;
    font-family: "Open Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

.site-header .header-search-link,
.site-header .wishlist-link,
.site-header .account-link,
.site-header .site-cart {
    width: 28px !important;
    height: 36px !important;
}

.site-header .header-search-link svg,
.site-header .wishlist-link svg,
.site-header .account-link svg,
.site-header .site-cart svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2 !important;
}

.site-header .wishlist-link svg {
    width: 22px !important;
}

.site-header .account-link svg {
    width: 22px !important;
}

.site-header .site-cart svg {
    width: 22px !important;
    height: 22px !important;
}

.site-header .header-actions {
    gap: 16px !important;
}

.site-header .header-action-count,
.site-header .site-cart-count {
    right: -6px !important;
    top: 1px !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    font-size: 11px !important;
    line-height: 18px !important;
}

@media (max-width: 1120px) {
    .site-header .header-main {
        padding: 0 18px !important;
        grid-template-columns: 175px minmax(430px, 1fr) 32px 138px !important;
    }

    .site-header .header-menu {
        gap: 24px !important;
    }
}

/* Submenu exact reference dimensions */
.site-header .submenu-panel,
.site-header .header-menu > li > .sub-menu {
    width: 220px !important;
    max-width: 220px !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-content: stretch !important;
    text-align: left !important;
    justify-items: start !important;
    align-items: stretch !important;
    font-family: "Open Sans", sans-serif !important;
}

.site-header .submenu-panel li,
.site-header .header-menu .sub-menu li {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    display: block !important;
    justify-self: stretch !important;
    text-align: left !important;
}

.site-header .submenu-panel a,
.site-header .header-menu .sub-menu a {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    display: block !important;
    padding: 8px 0 !important;
    font-family: "Open Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Single product reference layout */
.single-product .shop-shell {
    padding-block: 0;
    background: #fff;
}

.single-product .shop-shell > .container {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #fff;
}

.am-single-product {
    --am-product-width: 1080px;
    background: #fff;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

.am-product-breadcrumb {
    width: min(100% - 32px, var(--am-product-width));
    margin: 24px auto 0;
    color: #8d8d8d;
    font-size: 12px;
    line-height: 1.4;
}

.am-product-breadcrumb a {
    color: #8d8d8d;
}

.am-product-breadcrumb span {
    margin: 0 7px;
}

.am-product-main {
    width: min(100% - 32px, var(--am-product-width));
    min-height: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 611px 450px;
    gap: 19px;
    justify-content: stretch;
    align-items: start;
}

.am-product-gallery {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0 0;
}

.am-product-gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    width: 100%;
    margin-bottom: 34px;
    overflow: hidden;
    --am-gallery-exit-shift: -26px;
    --am-gallery-enter-shift: 26px;
}

.am-product-lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.am-product-lightbox-trigger.is-dragging {
    cursor: grabbing;
}

.am-product-main-image,
.am-product-gallery-main .wp-post-image,
.am-product-gallery-main img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    transition: transform .18s ease;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

.am-product-gallery-transition-image {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    pointer-events: none;
    transition: transform .18s ease;
}

.am-product-thumbs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    justify-content: stretch;
}

.am-product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    padding: 0;
    border: 1px solid #e4e4e4;
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

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

.am-product-thumb.is-active,
.am-product-thumb:hover {
    border-color: #999;
}

.am-product-gallery-dots {
    display: none;
}

.am-product-gallery-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 1px solid #9b9b9b;
    border-radius: 50%;
    background: #9b9b9b;
    cursor: pointer;
}

.am-product-gallery-dot.is-active {
    border-color: #111;
    background: #111;
}

.am-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.am-product-lightbox.is-open {
    display: flex;
}

body.am-product-lightbox-open {
    overflow: hidden;
}

.am-product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.82);
}

.am-product-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    height: min(100%, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.am-product-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #fff;
}

.am-product-lightbox-close,
.am-product-lightbox-arrow {
    position: absolute;
    z-index: 2;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.am-product-lightbox-close {
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 34px;
    line-height: 44px;
}

.am-product-lightbox-arrow {
    top: 50%;
    width: 52px;
    height: 72px;
    font-size: 62px;
    line-height: 66px;
    transform: translateY(-50%);
}

.am-product-lightbox-prev {
    left: 0;
}

.am-product-lightbox-next {
    right: 0;
}

.am-product-summary {
    position: relative;
    padding-top: 26px;
}

.am-product-title-row {
    display: grid;
    grid-template-columns: 1fr 28px;
    gap: 18px;
    align-items: start;
}

.am-product-summary .product_title {
    margin: 0 0 10px;
    color: #3d3d3d;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
    text-transform: none;
}

.am-product-wishlist {
    width: 30px;
    height: 30px;
    display: inline-flex;
    color: #5c6670;
}

.am-product-wishlist svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.am-single-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.am-single-price-row .price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
    color: #c3010c;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.am-single-price-row .price del {
    order: 2;
    margin-left: 0;
    color: #a8a8a8;
    font-size: 21px;
    font-weight: 400;
}

.am-single-price-row .price ins {
    order: 1;
    color: #c3010c;
    font-weight: 700;
    text-decoration: none;
}

.am-single-sale-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    background: #d00000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
}

.am-product-summary .variations_form {
    display: block;
    margin: 0;
}

.am-product-summary form.cart:not(.variations_form) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    margin: 0;
}

.am-product-summary table.variations {
    width: 100%;
    margin: 0;
    border: 0;
}

.am-product-summary table.variations tr {
    display: block;
    margin: 0 0 14px;
}

.am-product-summary table.variations th,
.am-product-summary table.variations td,
.am-product-summary table.variations .label,
.am-product-summary table.variations .value {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    text-align: left;
}

.am-product-summary table.variations label,
.am-product-summary .am-extra-select label,
.am-product-summary .am-visual-label {
    margin: 0 0 7px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}

.am-product-summary table.variations th.label,
.am-product-summary table.variations th.label label {
    text-align: left !important;
}

.am-product-summary table.variations select,
.am-product-summary .am-extra-select-row select {
    width: 100%;
    height: 46px;
    padding: 0 18px;
    border: 1px solid #bcbcbc;
    border-radius: 3px;
    background: #fff;
    color: #333;
    font-size: 16px;
}

.am-product-summary .am-extra-select {
    margin: 0 0 14px;
}

.am-product-summary .am-extra-select-row {
    gap: 10px;
}

.am-product-summary .am-visual-selector {
    margin: 0 0 14px;
}

.am-product-summary .am-material-selector {
    margin-bottom: 14px;
}

.am-product-summary table.variations + .am-frame-selector {
    margin-top: 0;
}

.am-product-summary .am-visual-options {
    display: flex;
    gap: 10px;
}

.am-product-summary .am-visual-option {
    width: 106px;
    gap: 4px;
    border-radius: 3px;
}

.am-product-summary .am-visual-img-wrap {
    width: 106px;
    height: 50px;
    aspect-ratio: auto;
    border-color: #bdbdbd;
    border-radius: 3px;
}

.am-product-summary .am-visual-options,
.am-product-summary .am-frame-options {
    border-radius: 3px;
}

.am-product-summary .am-visual-option-text {
    color: #333;
    font-size: 12px;
    font-weight: 700;
}

.am-product-summary .woocommerce-variation-add-to-cart {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    margin-top: 16px;
}

.am-product-summary .quantity {
    display: none !important;
    grid-template-columns: 31px 48px 31px;
    align-items: center;
    width: 110px;
    height: 40px;
}

.am-product-summary .quantity::before,
.am-product-summary .quantity::after {
    display: none;
}

.am-product-summary .quantity .qty {
    width: 48px;
    height: 40px;
    min-height: 40px;
    border: 0 !important;
    border-radius: 0;
    background: #fff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    -moz-appearance: textfield;
}

.am-product-summary .quantity .qty::-webkit-outer-spin-button,
.am-product-summary .quantity .qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.am-product-summary .am-single-qty-button {
    width: 31px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-size: 14px;
    line-height: 1;
}

.am-product-summary .single_add_to_cart_button.button {
    width: 100%;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: 0;
    border-radius: 50px;
    background: #050505;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.am-product-summary .single_add_to_cart_button.button .am-button-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 20px;
    margin-left: 22px;
    color: #fff;
    font-size: 14px;
    line-height: inherit;
    vertical-align: baseline;
}

.am-product-summary .single_add_to_cart_button.button .am-button-price .price {
    height: 20px;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.am-product-summary .single_add_to_cart_button.button .am-button-price,
.am-product-summary .single_add_to_cart_button.button .am-button-price .woocommerce-Price-amount,
.am-product-summary .single_add_to_cart_button.button .am-button-price .amount {
    font-weight: 700 !important;
    line-height: 1 !important;
}

.am-product-summary .single_add_to_cart_button.button .am-button-price del {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.68);
}

.am-product-summary .single_add_to_cart_button.button .am-button-price ins {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.am-product-summary .woocommerce-variation-price {
    display: none;
}

.am-sticky-add-to-cart {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    justify-content: center;
    padding: 18px 20px 20px;
    border-top: 1px solid #111;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

body.am-sticky-cart-visible .am-sticky-add-to-cart {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.am-sticky-add-to-cart-button {
    width: min(100%, 304px);
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    gap: 10px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: clamp(13px, 4vw, 16px);
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.am-sticky-add-to-cart-button.disabled,
.am-sticky-add-to-cart-button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.am-sticky-add-to-cart-button .am-button-price,
.am-sticky-add-to-cart-button .am-button-price .woocommerce-Price-amount,
.am-sticky-add-to-cart-button .am-button-price .amount {
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    color: #fff;
    font-size: inherit;
    font-weight: 700;
    line-height: 20px;
}

.am-sticky-add-to-cart-label {
    min-width: 0;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    font-size: inherit;
    font-weight: inherit;
    line-height: 20px;
}

.am-sticky-add-to-cart-button .am-button-price .price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    height: 20px;
    margin-top: 0;
    font-size: inherit;
    line-height: 20px;
}

.am-sticky-add-to-cart-button .am-button-price ins,
.am-sticky-add-to-cart-button .am-button-price del,
.am-sticky-add-to-cart-button .am-button-price bdi {
    min-width: 0;
    line-height: 20px;
    white-space: nowrap;
}

.am-sticky-add-to-cart-button .am-button-price del {
    order: 2;
    flex: 0 1 auto;
    color: rgba(255,255,255,.65);
    font-weight: 400;
    text-decoration: line-through;
}

.am-sticky-add-to-cart-button .am-button-price del,
.am-sticky-add-to-cart-button .am-button-price del .woocommerce-Price-amount,
.am-sticky-add-to-cart-button .am-button-price del .amount {
    color: #a8a8a8 !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
}

.am-sticky-add-to-cart-button .am-button-price ins {
    order: 1;
    flex: 0 1 auto;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.am-single-promos {
    margin-top: 24px;
}

.am-single-promos .promo-discount-wrapper {
    margin: 0 0 18px;
}

.am-single-promos .promo-discount-top,
.am-single-promos .promo-discount-bottom {
    padding: 13px 18px;
    border-radius: 0;
}

.am-single-promos .promo-fire,
.am-single-promos .promo-inline-text,
.am-single-promos .promo-discount-bottom div {
    font-size: 12px;
    font-weight: 700;
}

.am-single-promos .promo-countdown {
    font-size: 18px;
    font-weight: 700;
}

.am-single-promos .promo-plus {
    height: 24px;
    background: url("https://artmandre.com/wp-content/uploads/2026/04/Plius.svg") center / 10px 10px no-repeat;
    font-size: 0;
    line-height: 0;
}

.am-product-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 12px 0 22px;
    color: #777;
    text-align: center;
}

.am-product-benefits div {
    display: grid;
    justify-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 1.25;
}

.am-product-benefits img,
.am-product-benefits svg {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.am-product-benefits svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.am-product-accordions {
    border-top: 1px solid #e5e5e5;
}

.am-product-accordions details {
    border-bottom: 1px solid #e5e5e5;
}

.am-product-accordions summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px 15px 0;
    list-style: none;
    cursor: pointer;
    color: #444;
    font-size: 16px;
    font-weight: 600;
}

.am-product-accordions summary img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    object-fit: contain;
}

.am-product-accordions summary::-webkit-details-marker {
    display: none;
}

.am-product-accordions summary::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    transform: translateY(-60%) rotate(45deg);
}

.am-product-accordions p {
    margin: -4px 0 14px;
    color: #666;
    font-size: 15px;
    font-weight: 400;
}

.am-product-description {
    width: min(100% - 32px, var(--am-product-width));
    margin: 50px auto 0;
    padding: 0 0 76px;
}

.am-product-description::before {
    content: "";
    display: block;
    width: 74px;
    height: 2px;
    margin-bottom: 22px;
    background: #777;
}

.am-product-description h2 {
    margin: 0 0 22px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.am-product-description-content {
    max-width: 760px;
    color: #555;
    font-size: 15px;
    line-height: 1.55;
}

.am-product-description-content h2,
.am-product-description-content h3 {
    margin: 26px 0 10px;
    color: #444;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.am-product-description-content p,
.am-product-description-content ul {
    margin: 0 0 14px;
}

.am-product-description-content strong {
    font-weight: 700;
}

.am-product-description-content ul {
    padding-left: 0;
    list-style: none;
}

.am-single-product .rcs-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 58px 0;
    background: #eee;
}

.am-single-product .rcs-container {
    width: min(100% - 32px, var(--am-product-width));
    margin-left: auto;
    margin-right: auto;
}

.am-single-product .rcs-heading {
    font-size: 28px;
}

.am-single-product .rcs-review-card {
    border-radius: 12px;
}

.am-related-products {
    width: min(100% - 32px, var(--am-product-width));
    margin: 0 auto;
    padding: 68px 0 76px;
}

.am-related-products > section > h2,
.am-related-products .related > h2 {
    margin: 0 0 40px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.am-related-products .products {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 900px) {
    .am-product-main {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .am-product-gallery {
        min-height: 0;
        padding-bottom: 0;
    }

    .am-product-gallery-main {
        display: block;
        margin-bottom: 14px;
    }

    .am-product-main-image {
        width: 100%;
        height: auto;
    }

    .am-product-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .am-product-thumb {
        width: auto;
    }
}

/* Front page reference layout */
.am-frontpage {
    background: #fff;
    color: #252525;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

.am-frontpage .container {
    width: min(100% - 52px, 1210px);
}

.am-front-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    min-height: 455px;
    background: #000;
}

.am-front-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
    padding: 68px 54px 72px max(54px, calc((100vw - 1210px) / 2 + 54px));
    color: #fff;
}

.am-front-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 9px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.am-front-rating span {
    color: #f5c400;
    font-size: 18px;
    letter-spacing: 1px;
}

.am-front-rating strong,
.am-front-rating em {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.am-front-rating em {
    font-weight: 600;
}

.am-front-hero h1,
.am-front-split h2,
.am-front-heading h2 {
    margin: 0;
    letter-spacing: 0;
}

.am-front-hero h1 {
    max-width: 500px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.08;
}

.am-front-hero p {
    max-width: 445px;
    margin: 15px 0 22px;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.am-front-button,
.am-front-pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 38px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.am-front-hero-media {
    min-width: 0;
    overflow: hidden;
}

.am-front-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 455px;
    object-fit: cover;
    object-position: center;
}

.am-front-section {
    padding: 34px 0 54px;
    background: #fff;
}

.am-front-section + .am-front-section {
    border-top: 1px solid #f0f0f0;
}

.am-front-heading {
    max-width: 600px;
    margin: 0 auto 20px;
    text-align: center;
}

.am-front-heading h2 {
    color: #333;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
}

.am-front-heading img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.am-front-collection .am-front-heading {
    margin-bottom: 20px;
}

.am-front-collection .am-front-heading img {
    width: 50%;
}

.am-front-collection .am-front-heading h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    letter-spacing: .08em;
    line-height: .95;
}

.am-front-heading span {
    display: block;
    margin-top: 2px;
    color: #333;
    font-size: 20px;
    font-weight: 800;
}

.am-front-heading p {
    max-width: 475px;
    margin: 10px auto 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.am-front-collection .am-front-heading p {
    margin-bottom: 20px;
}

.am-frontpage .products,
.am-frontpage .artmandre-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 10px;
}

.am-front-view-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.am-front-pill-button {
    min-width: 165px;
    min-height: 34px;
    background: #000;
    color: #fff;
}

.am-front-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 410px;
    margin-top: 8px;
    background: #000;
}

.am-front-split-media {
    min-width: 0;
    overflow: hidden;
}

.am-front-split-media img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    object-position: center;
}

.am-front-split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px max(40px, calc((100vw - 1210px) / 2 + 46px)) 58px 72px;
    color: #fff;
}

.am-front-split h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

.am-front-split p {
    max-width: 430px;
    margin: 24px 0 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.am-front-reviews {
    padding: 78px 0 88px;
    background: #e9e9e9;
}

.am-front-review-stars {
    margin-bottom: 12px;
    color: #000;
    text-align: center;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 6px;
}

.am-front-reviews .am-front-heading {
    margin-bottom: 34px;
}

.am-front-reviews .am-front-heading h2 {
    color: #222733;
    font-size: 26px;
    font-weight: 800;
}

.am-front-reviews-shell {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 22px;
    align-items: center;
}

.am-front-review-arrow {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: #f7f7f7;
    color: #9a9a9a;
    cursor: default;
}

.am-frontpage .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
}

.am-frontpage .reviews-grid article {
    min-height: 196px;
    padding: 26px 24px 28px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    text-align: center;
}

.am-frontpage .stars {
    color: #000;
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 1;
}

.am-frontpage .reviews-grid h3 {
    margin: 8px 0 10px;
    color: #202532;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.am-frontpage .reviews-grid p {
    min-height: 56px;
    margin: 0 0 18px;
    color: #202532;
    font-size: 14px;
    line-height: 1.45;
}

.am-frontpage .reviews-grid span {
    color: #202532;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .am-frontpage .container {
        width: min(100% - 32px, 900px);
    }

    .am-front-hero,
    .am-front-split {
        grid-template-columns: 1fr 1fr;
    }

    .am-front-hero-copy {
        padding-left: 36px;
        padding-right: 36px;
    }

    .am-frontpage .products,
    .am-frontpage .artmandre-products {
        gap: 30px 10px;
    }

    .am-front-split-copy {
        padding-right: 36px;
        padding-left: 46px;
    }
}

@media (max-width: 782px) {
    .am-front-hero,
    .am-front-split {
        grid-template-columns: 1fr;
    }

    .am-front-hero-copy {
        order: 2;
        max-width: none;
        padding: 38px 24px 44px;
    }

    .am-front-hero-media {
        order: 1;
    }

    .am-front-hero-media img,
    .am-front-split-media img {
        min-height: 285px;
    }

    .am-front-hero h1,
    .am-front-split h2 {
        font-size: 30px;
    }

    .am-front-section {
        padding: 34px 0 44px;
    }

    .am-front-heading {
        margin-bottom: 20px;
    }

    .am-front-collection .am-front-heading h2 {
        font-size: 30px;
    }

    .am-frontpage .products,
    .am-frontpage .artmandre-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 10px;
    }

    .am-front-split-copy {
        padding: 42px 24px 46px;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .am-front-split-copy h2,
    .am-front-split-copy p {
        text-align: left !important;
    }

    .am-front-split-copy .am-front-button,
    .am-front-split-copy .am-front-pill-button {
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .am-front-reviews {
        padding: 52px 0 58px;
    }

    .am-front-reviews-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .am-front-review-arrow {
        display: none;
    }

    .am-frontpage .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .am-frontpage .container {
        width: min(100% - 24px, 100%);
    }

    .am-front-hero-copy {
        padding-inline: 18px;
    }

    .am-front-rating {
        flex-wrap: wrap;
    }

}

/* Product card media ratio matching the reference shop cards */
.product-card-image.product-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: var(--ratio, 0.8420245398773006);
    overflow: hidden;
    background: #f7f7f7;
}

.product-card-image.product-media img,
.product-card-image.product-media .product-media__image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: var(--ratio, 0.8420245398773006);
    object-fit: cover;
    object-position: center;
}

/* Project-wide 1440px layout width */
:root {
    --am-container: 1440px;
}

.container,
.site-header .container,
.site-header .top-strip-inner,
.site-header .header-main,
.site-footer .container {
    width: min(100% - 32px, 1440px) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.site-header .header-main {
    grid-template-columns: 175px minmax(0, 1fr) 160px !important;
}

.site-header .header-menu {
    justify-content: center !important;
}

.am-frontpage .container {
    width: min(100% - 52px, 1440px) !important;
    max-width: 1440px !important;
}

.am-front-hero-copy {
    padding-left: max(54px, calc((100vw - 1440px) / 2 + 54px));
}

.am-front-split-copy {
    padding-right: max(40px, calc((100vw - 1440px) / 2 + 46px));
}

.am-single-product {
    --am-product-width: 1440px;
    background: #fff !important;
}

body.single-product,
.single-product,
.single-product .shop-shell,
.single-product .shop-shell > .container {
    background: #fff !important;
}

.am-product-main {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
    gap: 48px;
}

.am-product-breadcrumb,
.am-product-main,
.am-product-description,
.am-single-product .rcs-container,
.am-related-products {
    width: min(100% - 32px, 1440px);
    max-width: 1440px;
}

.am-product-main {
    grid-template-columns: 760px 454px;
    gap: 78px;
    justify-content: center;
}

.am-product-gallery {
    display: grid;
    grid-template-columns: 64px 680px;
    gap: 0 16px;
    align-items: start;
    justify-content: start;
    min-height: 0;
    padding-top: 20px;
}

.am-product-gallery-main {
    grid-column: 2;
    width: 680px;
    margin-bottom: 0;
}

.am-product-lightbox-trigger,
.am-product-main-image,
.am-product-gallery-main .wp-post-image,
.am-product-gallery-main img {
    width: 680px;
    max-width: 680px;
}

.am-product-thumbs-shell {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-rows: 28px minmax(0, 1fr) 28px;
    gap: 8px;
    width: 64px;
    min-height: 0;
    overflow: hidden;
}

.am-product-thumbs-shell.no-scroll {
    grid-template-rows: minmax(0, 1fr);
}

.am-product-thumbs-shell.no-scroll .am-product-thumbs {
    align-content: start;
}

.am-product-thumbs {
    width: 64px;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.am-product-thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
}

.am-product-thumbs-nav {
    width: 64px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transform: rotate(90deg);
}

.am-product-thumbs-nav[hidden] {
    display: none;
}

.am-product-summary {
    width: 454px;
    max-width: 454px;
}

.am-product-summary > * {
    max-width: 454px;
    box-sizing: border-box;
}

.am-product-summary .product_title,
.am-product-title-row,
.am-single-price-row,
.am-product-summary .variations_form,
.am-product-summary form.cart:not(.variations_form),
.am-product-summary table.variations,
.am-product-summary table.variations select,
.am-product-summary .am-extra-select,
.am-product-summary .am-extra-select-row select,
.am-product-summary .woocommerce-variation-add-to-cart,
.am-product-summary .single_add_to_cart_button.button,
.am-single-promos,
.am-product-benefits,
.am-product-accordions {
    max-width: 100%;
    box-sizing: border-box;
}

.am-single-product .rcs-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

@media (max-width: 1180px) {
    .am-product-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .am-product-gallery {
        grid-template-columns: 64px minmax(0, 680px);
        justify-content: center;
    }

    .am-product-gallery-main,
    .am-product-lightbox-trigger,
    .am-product-main-image,
    .am-product-gallery-main .wp-post-image,
    .am-product-gallery-main img {
        width: 100%;
        max-width: 680px;
    }

    .am-product-summary {
        width: min(100%, 454px);
        max-width: 454px;
        margin: 0 auto;
    }
}

@media (max-width: 782px) {
    .am-product-gallery {
        display: flex;
        align-items: stretch;
        padding-top: 0;
    }

    .am-product-gallery-main {
        order: 1;
    }

    .am-product-thumbs-shell {
        order: 2;
        display: block;
        width: 100%;
        height: auto !important;
    }

    .am-product-thumbs {
        width: 100%;
        max-height: none !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
    }

    .am-product-thumb {
        width: auto;
        height: auto;
    }

    .am-product-thumbs-nav {
        display: none;
    }
}

@media (max-width: 782px) {
    .container,
    .site-header .container,
    .site-header .top-strip-inner,
    .site-header .header-main,
    .site-footer .container,
    .am-frontpage .container {
        width: min(100% - 24px, 1440px) !important;
    }

    .am-front-hero-copy {
        padding-left: 24px;
    }

    .am-front-split-copy {
        padding-right: 24px;
    }
}

/* Project-wide Helvetica typography */
body,
button,
input,
select,
textarea,
.site-header,
.site-header *,
.site-footer,
.site-footer *,
.am-frontpage,
.am-frontpage *,
.am-single-product,
.am-single-product * {
    font-family: Helvetica, Arial, sans-serif !important;
}

/* DROOL reference hero */
.am-frontpage .am-front-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 714px;
    gap: 32px;
    min-height: 0;
    align-items: stretch;
    background: #000;
    color: #fff;
}

.am-frontpage .am-front-hero-copy {
    max-width: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 0 0 42px 120px;
    color: #fff;
}

.am-frontpage .am-front-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.am-frontpage .am-front-rating img {
    width: 100px;
    height: auto;
    aspect-ratio: 4.964539007092198;
    object-fit: contain;
    flex: 0 0 auto;
}

.am-frontpage .am-front-rating span {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
}

.am-frontpage .am-front-rating strong {
    font-weight: 700;
}

.am-frontpage .am-front-hero h1 {
    width: fit-content;
    max-width: 100%;
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: none;
}

.am-frontpage .am-front-hero p {
    width: fit-content;
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.am-frontpage .am-front-button {
    margin-top: 0;
    padding: 16px 38px;
    border: 0;
    border-radius: 50px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.am-frontpage .am-front-hero-media {
    display: block;
    width: 714px;
    min-width: 0;
    overflow: hidden;
}

.am-frontpage .am-front-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.2800488102501526;
    object-fit: cover;
    object-position: center;
}

.am-frontpage .am-front-split {
    display: grid;
    grid-template-columns: 714px minmax(0, 1fr);
    gap: 32px;
    min-height: 0;
    align-items: stretch;
    background: #000;
    color: #fff;
}

.am-frontpage .am-front-split-media {
    display: block;
    width: 714px;
    min-width: 0;
    overflow: hidden;
}

.am-frontpage .am-front-split-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.2800488102501526;
    object-fit: cover;
    object-position: center;
}

.am-frontpage .am-front-split-copy {
    max-width: none;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 0 120px 42px 120px;
    color: #fff;
    text-align: left;
}

.am-frontpage .am-front-split h2 {
    font-size: 40px;
    font-weight: 700;
}

.am-frontpage .am-front-split p {
    width: fit-content;
    max-width: 520px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .am-frontpage .am-front-hero {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 714px);
    }

    .am-frontpage .am-front-hero-media {
        width: 100%;
    }

    .am-frontpage .am-front-split {
        grid-template-columns: minmax(420px, 714px) minmax(0, 1fr);
    }

    .am-frontpage .am-front-split-media {
        width: 100%;
    }
}

@media (max-width: 782px) {
    .am-frontpage .am-front-hero {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .am-frontpage .am-front-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .am-frontpage .am-front-hero-copy {
        order: 2;
        padding: 30px 18px 42px;
    }

    .am-frontpage .am-front-split-copy {
        order: 2;
        padding: 30px 18px 42px;
        align-items: flex-start;
        text-align: left;
    }

    .am-frontpage .am-front-hero-media {
        order: 1;
    }

    .am-frontpage .am-front-split-media {
        order: 1;
    }

    .am-frontpage .am-front-hero h1 {
        font-size: 28px;
    }

    .am-frontpage .am-front-hero p,
    .am-frontpage .am-front-rating,
    .am-frontpage .am-front-rating span {
        font-size: 14px;
    }

    .am-frontpage .am-front-button {
        width: 94%;
    }
}

.product-card-body {
    padding-top: 0 !important;
}

/* Reference-like product card media: use each product image ratio, keep text untouched */
.product-card-image.product-media,
.product-card-image.product-media.is-portrait,
.am-related-products .product-card-image.product-media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: var(--ratio, 0.8420245398773006) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: hidden !important;
}

.product-card-image.product-media img,
.product-card-image.product-media .product-media__image,
.product-card-image.product-media.is-portrait img,
.product-card-image.product-media.is-portrait .product-media__image,
.am-related-products .product-card-image.product-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: var(--ratio, 0.8420245398773006) !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
}

.products,
.artmandre-products,
.am-related-products .products {
    align-items: start !important;
    gap: 30px 10px !important;
    column-gap: 10px !important;
    row-gap: 30px !important;
}

.am-related-products .related {
    width: 100% !important;
}

.am-related-products .product-card {
    min-width: 0 !important;
}

.am-related-products section.related,
.am-related-products .related.products {
    display: block !important;
    width: 100% !important;
}

.am-related-products .related > h2 {
    display: block !important;
    width: 100% !important;
}

.am-related-products ul.products {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px 10px !important;
    clear: both !important;
}

.am-related-products ul.products li.product,
.am-related-products ul.products li.product-card {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
}

.am-related-carousel {
    position: relative;
}

.am-related-carousel-arrow {
    display: none;
}

.post-type-archive-product .products,
.post-type-archive-product .artmandre-products,
.tax-product_cat .products,
.tax-product_cat .artmandre-products,
.tax-product_tag .products,
.tax-product_tag .artmandre-products {
    width: calc(100vw - 64px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 32px) !important;
    margin-right: calc(50% - 50vw + 32px) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.product-card,
.product-card:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.product-card-link,
.product-card-body,
.product-card-action {
    width: 100% !important;
    max-width: 100% !important;
}

.product-card-action {
    display: none !important;
}

.product-card-image .product-badges {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 2 !important;
}

.product-card:hover .product-card-image img {
    transform: none !important;
}

.product-card:hover .product-card-image.product-media.is-portrait img {
    transform: none !important;
}

/* Header appears on upward scroll only, and only the main header row sticks */
.site-header {
    position: relative !important;
    top: auto !important;
    z-index: 50;
}

.admin-bar .site-header {
    top: auto !important;
}

.site-header.is-header-main-fixed .header-main {
    position: fixed !important;
    top: 0;
    left: 50%;
    z-index: 80;
    width: min(100% - 32px, 1440px) !important;
    max-width: 1440px !important;
    background: #fff;
    transform: translate(-50%, -110%);
    transition: transform .24s ease;
}

.admin-bar .site-header.is-header-main-fixed .header-main {
    top: 32px;
}

.site-header.is-header-main-fixed.is-header-main-visible .header-main {
    transform: translate(-50%, 0);
}

@media (max-width: 782px) {
    .site-header.is-header-main-fixed .header-main {
        width: min(100% - 24px, 1440px) !important;
    }

    .admin-bar .site-header.is-header-main-fixed .header-main {
        top: 46px;
    }
}

.product-card-image img,
.product-card-image.product-media img,
.product-card-image.product-media .product-media__image,
.product-card:hover .product-card-image img,
.product-card:hover .product-card-image.product-media img,
.product-card:hover .product-card-image.product-media .product-media__image {
    transform: none !important;
    transition: none !important;
}

/* Reference-style frontpage VIEW MORE buttons */
.am-front-view-more {
    display: flex !important;
    justify-content: center !important;
    margin-top: 30px !important;
}

.am-front-view-more .am-front-pill-button {
    width: 20% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 12px 38px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #000 !important;
    color: #fff !important;
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

@media (max-width: 782px) {
.am-front-view-more .am-front-pill-button {
        width: 94% !important;
        min-width: 94% !important;
    }
}

/* Header sizing */
.site-header .top-strip {
    height: 32px !important;
}

.site-header .top-strip-inner {
    min-height: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.site-header .header-main {
    min-height: 68px !important;
    height: 68px !important;
}

/* Vertically center compact header contents */
.site-header .header-main {
    align-items: center !important;
}

.site-header .site-branding,
.site-header .site-logo-link,
.site-header .site-navigation,
.site-header .header-menu,
.site-header .header-menu > li,
.site-header .header-menu > li > a,
.site-header .header-search-link,
.site-header .header-actions,
.site-header .wishlist-link,
.site-header .account-link,
.site-header .site-cart {
    display: flex !important;
    align-items: center !important;
}

.site-header .site-branding,
.site-header .site-logo-link,
.site-header .site-navigation,
.site-header .header-menu,
.site-header .header-menu > li,
.site-header .header-menu > li > a {
    height: 68px !important;
    min-height: 68px !important;
}

.site-header .header-search-link,
.site-header .wishlist-link,
.site-header .account-link,
.site-header .site-cart {
    height: 68px !important;
}

.site-header .header-menu > li > a {
    justify-content: center !important;
}

/* Compact header icon alignment and quantity badges */
.site-header .header-actions {
    height: 68px !important;
    gap: 22px !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.site-header .header-search-link,
.site-header .wishlist-link,
.site-header .account-link,
.site-header .site-cart {
    position: relative !important;
    width: 28px !important;
    min-width: 28px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 !important;
    color: #001027 !important;
    line-height: 1 !important;
    justify-content: center !important;
}

.site-header .header-search-link svg,
.site-header .wishlist-link svg,
.site-header .account-link svg,
.site-header .site-cart svg {
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    stroke-width: 2 !important;
}

.site-header .wishlist-link::before,
.site-header .wishlist-link::after,
.site-header .account-link::before,
.site-header .account-link::after,
.site-header .site-cart-icon,
.site-header .site-cart-icon::before {
    display: none !important;
}

.site-header .header-action-count,
.site-header .site-cart-count {
    position: absolute !important;
    top: 18px !important;
    right: -9px !important;
    z-index: 2 !important;
    min-width: 18px !important;
    width: auto !important;
    height: 18px !important;
    padding: 0 5px !important;
    border-radius: 999px !important;
    background: #000 !important;
    color: #fff !important;
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
    text-align: center !important;
    transform: none !important;
}

.site-header .header-main {
    grid-template-columns: 175px minmax(0, 1fr) 160px !important;
}

.site-header .header-actions {
    width: 160px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 22px !important;
}

.site-header .header-actions .header-search-link,
.site-header .header-actions .wishlist-link,
.site-header .header-actions .account-link,
.site-header .header-actions .site-cart {
    flex: 0 0 28px !important;
    width: 28px !important;
    min-width: 28px !important;
    margin: 0 !important;
}

.site-header .header-search-wrap {
    position: relative;
    flex: 0 0 28px !important;
    width: 28px !important;
    height: 68px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.site-header .header-search-wrap .header-search-link {
    border: 0 !important;
    background: transparent !important;
    cursor: pointer;
}

.site-header .header-search-dropdown {
    position: absolute;
    right: -16px;
    top: calc(100% + 16px);
    z-index: 120;
    width: 376px;
    height: 88px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.site-header .header-search-wrap:hover .header-search-dropdown,
.site-header .header-search-wrap:focus-within .header-search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .header-search-dropdown input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 18px;
    outline: 0;
}

.site-header .header-search-dropdown button {
    flex: 0 0 32px;
    width: 32px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
}

.site-header .header-search-dropdown button svg {
    width: 28px !important;
    height: 28px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.site-header .header-search-dropdown button svg circle,
.site-header .header-search-dropdown button svg path {
    fill: none !important;
    stroke: currentColor !important;
}

@media (max-width: 782px) {
    .site-header .header-main {
        grid-template-columns: 42px minmax(0, 1fr) 142px !important;
    }

    .site-header .header-actions {
        width: 142px !important;
        gap: 18px !important;
    }

    .site-header .header-search-dropdown {
        right: -124px;
        width: min(340px, calc(100vw - 24px));
    }
}

/* Up-scroll header should appear as a full-width bar */
.site-header.is-header-main-fixed .header-main {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    padding-left: max(16px, calc((100vw - 1440px) / 2 + 16px)) !important;
    padding-right: max(16px, calc((100vw - 1440px) / 2 + 16px)) !important;
    border-bottom: 1px solid #8f8f8f !important;
    transform: translateY(-110%) !important;
}

.site-header.is-header-main-fixed.is-header-main-visible .header-main {
    transform: translateY(0) !important;
}

@media (max-width: 782px) {
    .site-header.is-header-main-fixed .header-main {
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

.site-header .header-menu > li > a {
    font-size: 16px !important;
    font-weight: 400 !important;
    --am-menu-underline-width: 100%;
}

.site-header .header-menu > li.menu-item-has-children > a {
    --am-menu-underline-width: calc(100% - 14px);
}

.site-header .header-menu > li:hover > a,
.site-header .header-menu > li:focus-within > a {
    box-shadow: none !important;
    text-decoration: none !important;
}

.site-header .header-menu > li > a,
.site-header .submenu-panel a,
.site-header .header-menu .sub-menu a {
    position: relative;
}

.site-header .submenu-panel a,
.site-header .header-menu .sub-menu a {
    text-decoration: none !important;
    text-underline-offset: 4px;
}

.site-header .header-menu > li > a::before,
.site-header .submenu-panel a::before,
.site-header .header-menu .sub-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% + 14px);
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width .22s ease;
}

.site-header .submenu-panel a,
.site-header .header-menu .sub-menu a {
    display: inline-block !important;
    width: auto !important;
}

.site-header .submenu-panel a::before,
.site-header .header-menu .sub-menu a::before {
    top: auto;
    bottom: 7px;
    height: 2px;
}

.site-header .header-menu > li:hover > a::before,
.site-header .header-menu > li:focus-within > a::before,
.site-header .submenu-panel a:hover::before,
.site-header .submenu-panel a:focus::before,
.site-header .header-menu .sub-menu a:hover::before,
.site-header .header-menu .sub-menu a:focus::before {
    width: var(--am-menu-underline-width, 100%);
}

.site-header .submenu-panel a:hover,
.site-header .submenu-panel a:focus,
.site-header .header-menu .sub-menu a:hover,
.site-header .header-menu .sub-menu a:focus {
    text-decoration: none !important;
}

@media (max-width: 782px) {
    body.archive .site-header,
    body.archive .site-header .top-strip,
    body.archive .site-header .top-strip-inner,
    body.archive .site-header .header-main {
        max-width: 100vw;
        overflow-x: hidden;
    }

    body.archive,
    body.archive #content,
    body.archive .site-content,
    body.archive .site-footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    .post-type-archive-product .shop-shell,
    .tax-product_cat .shop-shell,
    .tax-product_tag .shop-shell {
        padding-top: 0;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .am-shop-archive-header {
        padding: 24px 0 18px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden;
    }

    .am-shop-breadcrumb {
        margin-bottom: 38px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .am-shop-archive-heading .archive-description {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 24px;
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 14px;
    }

    .tax-product_cat .am-shop-archive-heading .archive-description:not(.is-expanded) .am-archive-description-copy {
        max-height: 4.5em;
        overflow: hidden;
    }

    .tax-product_cat .am-shop-archive-heading .archive-description.is-expanded .am-archive-description-copy {
        max-height: none;
    }

    .tax-product_cat .am-archive-description-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 10px auto 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #111;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        text-decoration: underline;
        cursor: pointer;
    }

    .am-shop-filter-row {
        align-items: stretch;
        flex-direction: column;
        margin-bottom: 26px;
    }

    .am-archive-color-filter-shell {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        contain: layout paint;
    }

    .am-archive-color-filter {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-inline: contain;
        touch-action: pan-x;
    }

    .am-archive-color-filter::-webkit-scrollbar {
        display: none;
    }

    .am-archive-color-filter {
        scrollbar-width: none;
    }

    .am-archive-color-filter > * {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .archive-description.term-description .am-archive-color-filter {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 20px;
    }

    .am-shop-filter-row .woocommerce-ordering,
    .am-shop-filter-row .woocommerce-ordering select {
        width: 100%;
    }

    .woocommerce-pagination {
        max-width: 100%;
        overflow: hidden;
    }

    .woocommerce-pagination ul,
    .woocommerce-pagination .page-numbers {
        max-width: 100%;
    }

    .woocommerce-pagination ul {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 0;
        padding: 0 0 6px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .woocommerce-pagination ul::-webkit-scrollbar {
        display: none;
    }

    .woocommerce-pagination li {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .woocommerce-pagination a,
    .woocommerce-pagination span,
    .page-numbers {
        min-width: 34px;
        height: 34px;
    }

    .post-type-archive-product .products,
    .post-type-archive-product .artmandre-products,
    .tax-product_cat .products,
    .tax-product_cat .artmandre-products,
    .tax-product_tag .products,
    .tax-product_tag .artmandre-products {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ArtMandre cart drawer, cart page, and checkout */
body.am-side-cart-open {
    overflow: hidden;
}

.am-side-cart {
    position: fixed;
    inset: 0;
    z-index: 999;
    overflow: hidden;
    pointer-events: none;
}

.am-side-cart-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.68);
    opacity: 0;
    transition: opacity .22s ease;
}

.am-side-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(100vw, 424px);
    height: 100vh;
    background: #fff;
    color: #111;
    transform: translateX(100%);
    transition: transform .24s ease;
    box-shadow: none;
}

.am-side-cart-open .am-side-cart {
    pointer-events: auto;
}

.am-side-cart-open .am-side-cart-backdrop {
    opacity: 1;
}

.am-side-cart-open .am-side-cart-panel {
    transform: translateX(0);
    box-shadow: -20px 0 50px rgba(0,0,0,.18);
}

body.am-account-drawer-open {
    overflow: hidden;
}

.am-account-drawer {
    position: fixed;
    inset: 0;
    z-index: 9998;
    overflow: hidden;
    pointer-events: none;
}

.am-account-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.68);
    opacity: 0;
    transition: opacity .24s ease;
}

.am-account-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100vw, 424px);
    min-height: 100%;
    background: #fff;
    color: #111;
    transform: translateX(100%);
    transition: transform .24s ease;
}

.am-account-drawer-open .am-account-drawer {
    pointer-events: auto;
}

.am-account-drawer-open .am-account-drawer-backdrop {
    opacity: 1;
}

.am-account-drawer-open .am-account-drawer-panel {
    transform: translateX(0);
}

.am-account-drawer-header {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid #e4e4e4;
}

.am-account-drawer-header h2 {
    margin: 0;
    color: #111;
    font-size: 24px;
    font-weight: 700;
}

.am-account-drawer-close {
    border: 0;
    background: transparent;
    color: #111;
    font-size: 34px;
    line-height: 1;
}

.am-account-login-form {
    padding: 28px 18px 18px;
    border-bottom: 1px solid #e4e4e4;
}

.am-account-login-form p {
    margin: 0 0 24px;
}

.am-account-login-form label {
    margin: 0 0 10px;
    color: #111;
    font-size: 18px;
    font-weight: 400;
}

.am-account-login-form label span {
    color: #d00000;
}

.am-account-login-form input[type="text"],
.am-account-login-form input[type="password"] {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border: 1px solid #333;
    border-radius: 0;
    background: #eef4ff;
    color: #111;
    font-size: 18px;
}

.am-account-login-form > button {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.am-account-login-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    color: #111;
    font-size: 18px;
}

.am-account-login-links label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 18px;
}

.am-account-login-links a {
    color: #111;
    text-decoration: none;
}

.am-account-create {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 26px 18px 32px;
    text-align: center;
}

.am-account-create-icon {
    width: 76px;
    height: 76px;
    border: 6px solid #f0f0f0;
    border-radius: 50%;
    position: relative;
}

.am-account-create-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -28px;
    width: 90px;
    height: 44px;
    border: 6px solid #f0f0f0;
    border-bottom: 0;
    border-radius: 90px 90px 0 0;
    transform: translateX(-50%);
}

.am-account-create strong {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}

.am-account-create a {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.am-product-wishlist.is-active {
    color: #c3010c;
}

.am-product-wishlist.is-active svg {
    fill: currentColor;
}

.am-wishlist-page {
    padding: 58px 0 86px;
    background: #fff;
}

.am-wishlist-page h1 {
    margin: 0 0 34px;
    color: #222;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.am-wishlist-status {
    margin: 0 0 24px;
    color: #444;
    font-size: 16px;
}

.am-wishlist-status:empty {
    display: none;
}

.am-wishlist-products {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 30px 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.am-side-cart-header {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px 0 20px;
    border-bottom: 1px solid #e1e1e1;
}

.am-side-cart-header h2 {
    margin: 0;
    color: #111;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.am-side-cart-close {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #001027;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.am-side-cart-body {
    overflow: auto;
    padding: 22px 16px;
}

.am-side-cart .woocommerce-mini-cart {
    margin: 0;
    padding: 0;
    list-style: none;
}

.am-side-cart .woocommerce-mini-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    min-height: 96px;
    margin: 0 0 20px;
    padding: 0 22px 0 0;
}

.am-side-cart .woocommerce-mini-cart-item > a:not(.remove) {
    display: contents;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
}

.am-side-cart .woocommerce-mini-cart-item img {
    grid-row: 1 / span 3;
    width: 52px;
    height: 72px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.am-side-cart .woocommerce-mini-cart-item .remove {
    position: absolute;
    top: -4px;
    right: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #555 !important;
    font-size: 22px;
    font-weight: 300;
}

.am-side-cart .variation,
.am-side-cart .woocommerce-mini-cart-item dl {
    grid-column: 2;
    margin: 6px 0 0;
    color: #333;
    font-size: 18px;
    line-height: 1.45;
}

.am-side-cart .variation dt,
.am-side-cart .variation dd {
    display: inline;
    margin: 0;
}

.am-side-cart .variation dd::after {
    content: "";
    display: block;
}

.am-side-cart .quantity {
    grid-column: 2;
    margin-top: 6px;
    color: #aaa;
    font-size: 16px;
}

.am-side-cart .quantity .amount,
.am-side-cart .custom-row-total span {
    color: #d0021b;
    font-weight: 800;
}

.am-side-cart .woocommerce-mini-cart__empty-message {
    margin: 24px 0;
    color: #333;
    font-size: 18px;
}

.am-side-cart .custom-mini-totals {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #ddd;
}

.am-side-cart .custom-mini-totals p {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 10px 0;
    color: #111;
    font-size: 20px;
}

.am-side-cart .woocommerce-mini-cart__buttons {
    display: none !important;
}

.am-side-cart-actions {
    display: grid;
    gap: 12px;
    padding: 0 16px 28px;
    background: #fff;
}

.am-side-cart-button,
.am-side-cart .button {
    width: 100%;
    min-height: 52px;
    border: 0 !important;
    border-radius: 0 !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.woocommerce-cart .shop-shell,
.woocommerce-checkout .shop-shell {
    padding-block: 0 0;
    background: #f7f7f7;
}

.woocommerce-cart .shop-shell > .container,
.woocommerce-checkout .shop-shell > .container {
    width: min(100% - 32px, 1032px) !important;
    max-width: 1032px !important;
}

.am-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 0 58px;
    color: #666;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.am-checkout-step {
    padding-bottom: 4px;
    border-bottom: 3px solid transparent;
    color: #666 !important;
    font-weight: 700;
    text-decoration: none !important;
}

.am-checkout-step.is-active {
    color: #111 !important;
    border-color: #111;
}

.am-checkout-step.is-disabled {
    pointer-events: none;
}

.am-step-separator {
    color: #777;
    font-weight: 400;
}

.woocommerce-cart .woocommerce {
    padding-bottom: 26px;
}

.woocommerce-cart .entry-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .entry-title,
.woocommerce-checkout .page-title {
    display: none !important;
}

.woocommerce-cart .woocommerce::after {
    content: "";
    display: block;
    clear: both;
}

.woocommerce-cart-form.am-cart-form {
    float: left;
    width: calc(100% - 498px);
    margin: 0 38px 0 0;
}

.am-cart-collaterals {
    float: right;
    width: 460px;
    margin: 0;
}

.am-cart-form .am-cart-table,
.am-cart-totals .shop_table,
.am-review-order-table {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent;
}

.am-cart-form .am-cart-table th,
.am-cart-form .am-cart-table td,
.am-cart-totals .shop_table th,
.am-cart-totals .shop_table td,
.am-review-order-table th,
.am-review-order-table td {
    border-color: #dedede !important;
    background: transparent !important;
}

.am-cart-form .am-cart-table thead th {
    padding: 16px 0 18px;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.am-cart-form .am-cart-table tbody td {
    padding: 24px 0;
    color: #111;
    font-size: 15px;
    vertical-align: middle;
}

.am-cart-form .product-remove {
    width: 52px;
    text-align: center !important;
}

.am-cart-form .product-remove .remove {
    color: #111 !important;
    font-size: 22px;
    font-weight: 300;
    text-decoration: none !important;
}

.am-cart-form .product-thumbnail {
    width: 82px;
}

.am-cart-form .product-thumbnail img {
    width: 64px;
    height: 92px;
    object-fit: cover;
}

.am-cart-form .product-name {
    width: 290px;
    padding-right: 20px !important;
}

.am-cart-form .product-price {
    width: 96px;
    padding-right: 18px !important;
}

.am-cart-form .product-quantity {
    width: 118px;
    padding-right: 18px !important;
}

.am-cart-form .product-subtotal {
    width: 110px;
    text-align: right !important;
}

.am-cart-form .product-name > a {
    display: block;
    margin-bottom: 8px;
    color: #111 !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none !important;
}

.am-cart-form .variation {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.45;
}

.am-cart-form .variation dt {
    font-weight: 700;
}

.am-cart-form .variation dt,
.am-cart-form .variation dd {
    display: inline;
    margin: 0;
}

.am-cart-form .variation dd::after {
    content: "";
    display: block;
}

.am-cart-form .product-price,
.am-cart-form .product-subtotal {
    white-space: nowrap;
}

.am-qty-control {
    display: inline-grid;
    grid-template-columns: 28px 34px 28px;
    height: 42px;
    border: 1px solid #333;
    box-sizing: border-box;
    overflow: visible;
}

.am-qty-button,
.am-qty-control .qty,
.am-qty-single {
    width: 100% !important;
    min-height: 0 !important;
    height: 40px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff;
    color: #111;
    text-align: center;
    font-size: 15px;
    line-height: 40px;
}

.am-qty-button {
    cursor: pointer;
}

.am-qty-control .am-qty-button:last-child {
    border-right: 1px solid #333 !important;
}

.am-qty-control .qty::-webkit-inner-spin-button,
.am-qty-control .qty::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.am-cart-actions-row td {
    padding-top: 40px !important;
    border-bottom: 0 !important;
}

.am-cart-actions-row .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.am-cart-actions-row .coupon {
    display: flex;
    gap: 12px;
}

.am-cart-actions-row #coupon_code {
    width: 286px;
    height: 54px;
    border: 1px solid #333;
    border-radius: 0;
    background: #f7f7f7;
    font-size: 15px;
}

.am-cart-actions-row .button,
.am-cart-totals .checkout-button,
.am-checkout-form .button {
    min-height: 54px;
    border: 0 !important;
    border-radius: 0 !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.am-update-cart {
    display: none !important;
}

.am-cart-totals {
    padding: 34px 32px 32px;
    border: 3px solid #e1e1e1;
    background: #f7f7f7;
}

.am-cart-totals h2 {
    margin: 0 0 28px;
    color: #111;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.am-cart-totals .shop_table tr th,
.am-cart-totals .shop_table tr td {
    padding: 17px 0;
    color: #111;
    font-size: 15px;
}

.am-cart-totals .shop_table th {
    width: 42%;
    font-weight: 700;
}

.am-cart-totals .shop_table td {
    text-align: right;
}

.am-cart-totals .order-total th,
.am-cart-totals .order-total td,
.am-review-order-table .order-total th,
.am-review-order-table .order-total td {
    font-size: 16px;
    font-weight: 700;
}

.am-cart-totals .order-total .amount,
.am-review-order-table .order-total .amount {
    color: #d0021b;
}

.am-cart-totals .wc-proceed-to-checkout {
    margin-top: 28px;
}

.am-cart-totals .checkout-button {
    width: 100%;
}

.am-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 52px;
    align-items: start;
    padding-bottom: 36px;
}

.am-checkout-fields h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
.am-checkout-order h3 {
    margin: 0 0 22px;
    color: #111;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
    margin: 0 0 18px;
    color: #333;
    font-size: 16px;
}

.woocommerce-checkout .woocommerce-info {
    padding: 0;
    border: 0;
    background: transparent;
}

.woocommerce-checkout .woocommerce-info a {
    text-decoration: underline;
}

.woocommerce form .form-row label {
    margin-bottom: 6px;
    color: #555;
    font-size: 15px;
    font-weight: 700;
}

.woocommerce form .form-row .required {
    color: #d0021b;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 38px !important;
    border: 1px solid #999 !important;
    border-radius: 0 !important;
    background: #f7f7f7 !important;
    color: #333;
}

.woocommerce-checkout textarea {
    min-height: 164px !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: calc(50% - 10px);
}

.woocommerce-checkout .form-row-first {
    float: left;
}

.woocommerce-checkout .form-row-last {
    float: right;
}

.woocommerce-checkout .form-row-wide {
    clear: both;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper::after,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper::after {
    content: "";
    display: block;
    clear: both;
}

.am-checkout-order {
    padding-top: 2px;
}

.am-review-order-table {
    margin: 0 0 22px !important;
    background: #fff;
}

.am-review-order-table th,
.am-review-order-table td {
    padding: 17px 22px !important;
    color: #111;
    font-size: 16px;
}

.am-review-order-table thead th {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.am-review-order-table .product-total,
.am-review-order-table td:last-child {
    text-align: right;
}

.am-review-order-table .product-name {
    line-height: 1.45;
}

.am-review-order-table .variation {
    margin: 10px 0 0;
    font-size: 14px;
}

.woocommerce-checkout-payment {
    background: transparent !important;
}

.woocommerce-checkout-payment ul.payment_methods {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none;
}

.woocommerce-checkout-payment .payment_box {
    min-height: 164px;
    margin: 14px 0 18px !important;
    padding: 22px !important;
    border: 0 !important;
    background: #fff !important;
}

.woocommerce-checkout-payment #place_order {
    width: 100%;
    min-height: 50px;
}

@media (max-width: 1100px) {
    .woocommerce-cart-form.am-cart-form,
    .am-cart-collaterals {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .am-cart-collaterals {
        margin-top: 32px;
    }

    .am-checkout-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 782px) {
    .am-checkout-steps {
        gap: 8px;
        padding: 24px 0 34px;
        font-size: 15px;
    }

    .am-side-cart-panel {
        width: min(100vw, 390px);
    }

    .am-side-cart-header {
        min-height: 72px;
    }

    .am-side-cart-header h2 {
        font-size: 23px;
    }

    .am-cart-form .am-cart-table thead {
        display: none;
    }

    .am-cart-form .am-cart-table tr.cart_item {
        display: grid;
        grid-template-columns: 34px 74px 1fr;
        gap: 10px 14px;
        padding: 18px 0;
        border-bottom: 1px solid #dedede;
    }

    .am-cart-form .am-cart-table tbody td {
        display: block;
        width: auto;
        padding: 0 !important;
        border: 0 !important;
    }

    .am-cart-form .product-name {
        grid-column: 3;
    }

    .am-cart-form .product-price,
    .am-cart-form .product-quantity,
    .am-cart-form .product-subtotal {
        grid-column: 3;
    }

    .am-cart-actions-row .actions,
    .am-cart-actions-row .coupon {
        display: grid;
        width: 100%;
    }

    .am-cart-actions-row #coupon_code,
    .am-cart-actions-row .button {
        width: 100%;
    }

    .am-cart-totals {
        padding: 24px 20px;
    }

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        float: none;
        width: 100%;
    }
}

.site-footer {
    background: #000912 !important;
    color: #fff;
}

.site-footer .footer-top.am-reference-footer {
    grid-template-columns: minmax(180px, .7fr) minmax(220px, .75fr) minmax(320px, 1fr);
    gap: 84px;
    padding-block: 48px 56px;
}

.footer-etsy-logo {
    display: inline-block;
    color: #f26a21;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.footer-etsy-logo img {
    display: block;
    width: 69px;
    height: auto;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 58px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.footer-socials .wd-icon {
    display: block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask: var(--footer-social-icon) center / contain no-repeat;
    mask: var(--footer-social-icon) center / contain no-repeat;
}

.footer-socials .wd-icon::before {
    display: none;
}

.footer-socials .social-facebook .wd-icon::before {
    content: "f";
}

.footer-socials .social-instagram .wd-icon::before {
    content: "◎";
    font-size: .95em;
}

.footer-socials .social-pinterest .wd-icon::before {
    content: "p";
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.footer-socials .social-tiktok .wd-icon::before {
    content: "♪";
    font-size: 1.05em;
}

.footer-socials .social-facebook {
    --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.12 8.1H13.2V6.84c0-.48.32-.6.54-.6h1.38V4.08L13.2 4.07c-2.13 0-2.62 1.59-2.62 2.61V8.1H8.88v2.22h1.7V20h2.62v-9.68h1.77l.15-2.22z'/%3E%3C/svg%3E");
}

.footer-socials .social-instagram {
    --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm5.25-3.1a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5z'/%3E%3C/svg%3E");
}

.footer-socials .social-pinterest {
    --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.05 2C6.53 2 3 5.96 3 10.15c0 2.25 1.26 5.06 3.28 5.95.31.14.47.08.54-.22.05-.23.33-1.34.45-1.86.04-.17.02-.32-.12-.49-.67-.8-1.2-2.27-1.2-3.64 0-3.38 2.56-6.64 6.92-6.64 3.77 0 6.41 2.57 6.41 6.24 0 4.14-2.09 7.01-4.8 7.01-1.5 0-2.62-1.24-2.26-2.76.43-1.81 1.26-3.76 1.26-5.06 0-1.17-.63-2.14-1.93-2.14-1.53 0-2.76 1.58-2.76 3.7 0 1.35.46 2.27.46 2.27l-1.84 7.78c-.32 1.35-.2 3.24-.06 4.47.1.87 1.23 1.05 1.6.27.64-1.35 1.33-3.09 1.68-4.43.18-.69.92-3.5.92-3.5.49.93 1.91 1.7 3.42 1.7 4.5 0 7.75-4.13 7.75-9.26C22.7 5.14 19.02 2 12.05 2z'/%3E%3C/svg%3E");
}

.footer-socials .social-tiktok {
    --footer-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.6 5.82A5.95 5.95 0 0 0 20 7.08v3.02a8.98 8.98 0 0 1-3.96-.9v6.6A6.2 6.2 0 1 1 10.7 9.66v3.08a3.2 3.2 0 1 0 2.22 3.05V2h3.04c.13 1.27.73 2.4 1.64 3.82z'/%3E%3C/svg%3E");
}

.site-footer .footer-links,
.site-footer .footer-newsletter {
    align-content: start;
    padding-top: 8px;
}

.site-footer .footer-links h3,
.site-footer .footer-newsletter h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: none;
}

.site-footer .footer-links a {
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.site-footer .footer-newsletter p {
    max-width: 380px;
    margin: 0 0 28px;
    color: #fff;
    font-size: 20px;
    line-height: 1.45;
}

.site-footer .footer-newsletter form {
    display: flex;
    width: min(100%, 420px);
}

.site-footer .footer-newsletter input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 22px;
    border: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    color: #fff;
}

.site-footer .footer-newsletter input::placeholder {
    color: #fff;
}

.site-footer .footer-newsletter button {
    width: 138px;
    height: 52px;
    border: 0;
    border-radius: 0;
    background: #e7e7e7;
    color: #333;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-footer .footer-bottom {
    min-height: 72px;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #c7cdd4;
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-footer .footer-top.am-reference-footer {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer .footer-newsletter {
        order: 1;
    }

    .site-footer .footer-brand {
        order: 3;
        text-align: center;
    }

    .site-footer .footer-links {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 28px;
    }
}

/* Reference cart page match: Woodmart layout translated to this theme */
.woocommerce-cart .shop-shell {
    padding: 0 0 0 !important;
    background: #fff !important;
}

.woocommerce-cart .shop-shell > .container {
    width: min(100% - 32px, 1080px) !important;
    max-width: 1080px !important;
}

.woocommerce-cart .entry-title,
.woocommerce-cart .page-title,
.woocommerce-cart h1.entry-title,
.woocommerce-cart h1.page-title,
.woocommerce-cart .page-content > h1,
.woocommerce-cart article.page-content > h1,
.woocommerce-cart .entry-content > h1,
.woocommerce-cart main h1:first-child {
    display: none !important;
}

.woocommerce-cart .woocommerce {
    padding-bottom: 40px !important;
    font-family: Helvetica, Arial, sans-serif !important;
}

.woocommerce-cart .entry-content > .woocommerce,
.woocommerce-cart article .woocommerce {
    width: min(100%, 1080px) !important;
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-cart .woocommerce::after {
    content: none !important;
}

.woocommerce-cart .am-checkout-steps {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px 15px !important;
    padding: 30px 0 54px !important;
    color: #242424 !important;
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    width: min(100%, 1080px) !important;
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-cart .am-checkout-step {
    padding: 0 !important;
    border: 0 !important;
    color: #242424 !important;
    font-weight: 600 !important;
    opacity: .7;
    text-decoration: none !important;
    text-underline-offset: 6px;
}

.woocommerce-cart .am-checkout-step.is-active {
    color: #242424 !important;
    opacity: 1;
    text-decoration: underline 2px solid #111 !important;
}

.woocommerce-cart .am-step-separator {
    color: #242424 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    opacity: .7;
}

.woocommerce-cart .cart-content-wrapper {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 330px !important;
    align-items: flex-start !important;
    gap: 30px !important;
    width: min(100%, 1080px) !important;
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.woocommerce-cart .cart-content-wrapper > * {
    min-width: 0 !important;
    width: auto !important;
    max-width: 100%;
}

.woocommerce-cart-form.am-cart-form {
    float: none !important;
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.woocommerce-cart .cart_totals.am-cart-totals,
.woocommerce-cart .am-cart-collaterals {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.woocommerce-cart .cart-content-wrapper > .am-cart-collaterals {
    grid-column: 2 !important;
    width: 330px !important;
    max-width: 330px !important;
    min-width: 0 !important;
}

.woocommerce-cart .cart_totals.am-cart-totals {
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.woocommerce-cart .cart-totals-inner {
    padding: 25px !important;
    border: 3px solid #e6e6e6 !important;
    border-radius: 0 !important;
    background: #fff !important;
}

.woocommerce-cart table.shop_table,
.woocommerce-cart .am-cart-form .am-cart-table,
.woocommerce-cart .am-cart-totals .shop_table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    border-radius: 0 !important;
    background: transparent !important;
    table-layout: fixed !important;
}

.woocommerce-cart .am-cart-table tr,
.woocommerce-cart .am-cart-table thead,
.woocommerce-cart .am-cart-table tbody {
    max-width: 100% !important;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    padding: 15px 8px !important;
    border: 0 !important;
    border-bottom: 1px solid #e6e6e6 !important;
    background: transparent !important;
    color: #242424 !important;
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.shop_table tr :is(td, th):first-child {
    padding-left: 0 !important;
}

.woocommerce-cart table.shop_table tr :is(td, th):last-child {
    padding-right: 0 !important;
    text-align: right !important;
}

.woocommerce-cart .am-cart-table thead th {
    padding-top: 0 !important;
    padding-bottom: 15px !important;
    color: #242424 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: left !important;
    text-transform: uppercase !important;
}

.woocommerce-cart th.product-remove {
    width: 34px !important;
}

.woocommerce-cart th.product-thumbnail {
    width: 104px !important;
}

.woocommerce-cart th.product-price {
    width: 72px !important;
}

.woocommerce-cart th.product-quantity {
    width: 104px !important;
}

.woocommerce-cart th.product-subtotal {
    width: 118px !important;
}

.woocommerce-cart td.product-remove {
    width: 34px !important;
    padding: 0 !important;
    text-align: center !important;
}

.woocommerce-cart td.product-remove a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    color: #333 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.woocommerce-cart td.product-thumbnail {
    width: 104px !important;
    padding-right: 16px !important;
}

.woocommerce-cart td.product-thumbnail a {
    display: block !important;
    overflow: hidden !important;
}

.woocommerce-cart td.product-thumbnail img {
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.woocommerce-cart td.product-name {
    width: auto !important;
    min-width: 0 !important;
    padding-right: 14px !important;
    text-align: left !important;
    overflow-wrap: anywhere !important;
}

.woocommerce-cart td.product-name a:not(.button) {
    display: inline-block !important;
    margin: 0 0 5px !important;
    color: #242424 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}

.woocommerce-cart td.product-name a:not(.button):hover {
    color: #777 !important;
}

.woocommerce-cart td.product-name .variation {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 5px 0 0 !important;
    padding: 0 !important;
    color: #777 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    list-style: none !important;
}

.woocommerce-cart td.product-name .variation dt,
.woocommerce-cart td.product-name .variation dd,
.woocommerce-cart td.product-name .variation li,
.woocommerce-cart td.product-name .variation p {
    margin: 0 !important;
    padding: 0 !important;
    color: #777 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.woocommerce-cart td.product-name .variation dt {
    display: inline !important;
    flex: 0 0 auto !important;
    margin-right: 4px !important;
    color: #242424 !important;
    font-weight: 500 !important;
}

.woocommerce-cart td.product-name .variation dd {
    display: inline-flex !important;
    flex: 1 1 calc(100% - 70px) !important;
    min-width: 0 !important;
}

.woocommerce-cart td.product-name .variation dd::after {
    content: "" !important;
    display: none !important;
}

.woocommerce-cart td.product-name .variation p {
    display: inline !important;
}

.woocommerce-cart td.product-price,
.woocommerce-cart td.product-quantity,
.woocommerce-cart td.product-subtotal {
    width: auto !important;
    max-width: 100% !important;
    white-space: nowrap !important;
}

.woocommerce-cart td.product-price {
    text-align: left !important;
}

.woocommerce-cart td.product-quantity {
    text-align: center !important;
}

.woocommerce-cart td.product-subtotal {
    text-align: right !important;
    overflow: visible !important;
}

.woocommerce-cart td.product-price > .amount,
.woocommerce-cart td.product-subtotal > .amount,
.woocommerce-cart tr.cart_item .product-total > .amount {
    color: #777 !important;
    font-weight: 400 !important;
}

.woocommerce-cart del {
    color: #777 !important;
    opacity: 1 !important;
    font-weight: 400 !important;
}

.woocommerce-cart ins {
    color: #d10000 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.woocommerce-cart .am-qty-control {
    display: inline-grid !important;
    grid-template-columns: 30px 38px 30px !important;
    width: 98px !important;
    height: 38px !important;
    border: 1px solid #d6d6d6 !important;
    background: #fff !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.woocommerce-cart .am-qty-button,
.woocommerce-cart .am-qty-control .qty,
.woocommerce-cart .am-qty-single {
    width: 100% !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #242424 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 36px !important;
    text-align: center !important;
}

.woocommerce-cart .am-qty-control .am-qty-button:last-child {
    border-right: 1px solid #d6d6d6 !important;
}

.woocommerce-cart .wd-cart-action-row td,
.woocommerce-cart .am-cart-actions-row td {
    padding: 0 !important;
    border-bottom: 0 !important;
}

.woocommerce-cart .cart-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 30px !important;
    margin-top: 30px !important;
}

.woocommerce-cart .wd-coupon-form {
    display: flex !important;
    flex: 0 1 auto !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 10px !important;
    text-align: left !important;
}

.woocommerce-cart .wd-coupon-form .input-text {
    width: 230px !important;
    max-width: 230px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 15px !important;
    border: 1px solid #d6d6d6 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #242424 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.woocommerce-cart .button,
.woocommerce-cart .checkout-button {
    min-height: 42px !important;
    padding: 5px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #111 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.woocommerce-cart .wd-coupon-form .button {
    width: 174px !important;
    min-width: 174px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    white-space: nowrap !important;
}

/* Global heading/link typography adjustments */
h2,
.section-heading h2,
.feature-band h2,
.am-frontpage h2,
.am-front-collection .am-front-heading h2,
.am-front-reviews .am-front-heading h2,
.am-front-split h2,
.am-cart-totals h2,
.cart-totals-inner > h2,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
.am-checkout-order h3 {
    font-size: 32px !important;
    font-weight: 700 !important;
}

.site-footer .footer-links a {
    font-weight: 500 !important;
}

/* Shopify-like checkout */
.woocommerce-checkout .site-header,
.woocommerce-checkout .site-footer,
.woocommerce-checkout .top-strip,
.woocommerce-checkout .am-checkout-steps,
.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout .entry-title,
.woocommerce-checkout .page-title,
.woocommerce-checkout h1,
.woocommerce-checkout article.page-content > h1,
.woocommerce-checkout main > h1:first-child,
.woocommerce-checkout .site-content > h1:first-child {
    display: none !important;
}

.woocommerce-checkout {
    background: #fff !important;
}

.woocommerce-checkout .site-content,
.woocommerce-checkout .shop-shell,
.woocommerce-checkout .shop-shell > .container,
.woocommerce-checkout article,
.woocommerce-checkout .entry-content,
.woocommerce-checkout .woocommerce {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
}

.am-shopify-checkout {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    color: #111;
    background: #fff;
    font-family: Helvetica, Arial, sans-serif;
    overflow-x: clip;
}

.am-shopify-checkout-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    border-bottom: 1px solid #dedede;
    background: #fff;
}

.am-shopify-checkout-logo .site-logo-link {
    display: block;
}

.am-shopify-checkout-logo img {
    width: 170px;
    max-height: 48px;
    object-fit: contain;
}

.am-shopify-checkout-cart {
    position: absolute;
    right: max(24px, calc((100vw - 960px) / 2));
    top: 50%;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
}

.am-shopify-checkout-cart svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #111;
    stroke-width: 2;
}

.am-shopify-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(360px, 460px);
    justify-content: center;
    align-items: stretch;
    min-height: calc(100vh - 78px);
    width: 100%;
    max-width: 100%;
}

.am-shopify-checkout-main {
    width: 100%;
    min-width: 0;
    padding: 40px 36px 42px 0;
}

.am-shopify-order-summary {
    position: relative;
    align-self: stretch;
    min-width: 0;
    min-height: calc(100vh - 78px);
    padding: 40px 36px 42px 36px;
    border-left: 1px solid #dedede;
    background: #fafafa;
}

.am-shopify-order-summary-inner {
    position: sticky;
    z-index: 1;
    top: 44px;
    min-width: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.am-express-title {
    margin-bottom: 14px;
    color: #707070;
    font-size: 13px;
    text-align: center;
}

.am-express-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.am-express-button {
    height: 46px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: default;
}

.am-express-shop {
    background: #5a31f4;
}

.am-express-paypal {
    background: #ffc439;
    color: #003087;
    font-style: italic;
}

.am-express-gpay {
    background: #000;
}

.am-checkout-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 30px 0 28px;
    color: #8a8a8a;
    font-size: 13px;
}

.am-checkout-divider::before,
.am-checkout-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dedede;
}

.am-checkout-panel {
    margin-bottom: 30px;
}

.am-checkout-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.am-checkout-panel h2,
.am-checkout-panel h3,
.am-checkout-section-heading h2,
.am-payment-panel h2 {
    margin: 0 0 12px !important;
    color: #111 !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    text-transform: none !important;
}

.am-checkout-section-heading a {
    color: #111;
    font-size: 13px;
    text-decoration: underline;
}

.am-shopify-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.woocommerce-checkout .form-row {
    float: none !important;
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    float: none !important;
    width: 100% !important;
}

.am-shopify-fields .form-row-wide,
.am-shopify-fields #billing_country_field,
.am-shopify-fields #billing_address_1_field,
.am-shopify-fields #billing_address_2_field,
.am-shopify-fields #billing_phone_field {
    grid-column: 1 / -1;
}

.woocommerce-checkout form .form-row label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.woocommerce-checkout form .form-row label.checkbox,
.woocommerce-checkout form .form-row label.woocommerce-form__label,
.woocommerce-checkout form .form-row.woocommerce-SavedPaymentMethods-saveNew label {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    clip-path: none !important;
    white-space: normal !important;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container .select2-selection--single {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 12px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    box-shadow: none !important;
}

.woocommerce-checkout input.input-text::placeholder {
    color: #777;
}

.woocommerce-checkout .select2-container .select2-selection__rendered {
    padding: 9px 10px !important;
    color: #111 !important;
    line-height: 28px !important;
}

.am-checkout-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 0;
    color: #222;
    font-size: 14px;
}

.am-checkout-checkbox input,
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #111;
}

.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin: 18px 0 0 !important;
    color: #111;
    font-size: 14px;
    line-height: 1.45;
}

.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"] {
    flex: 0 0 18px;
    margin: 0;
}

.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew label {
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.am-shipping-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px;
    border-radius: 7px;
    background: #f4f4f4;
    color: #777;
    font-size: 14px;
    text-align: center;
}

.am-payment-panel > p {
    margin: -8px 0 14px;
    color: #777;
    font-size: 14px;
}

.woocommerce-checkout-payment {
    border: 1px solid #111 !important;
    border-radius: 8px !important;
    overflow: hidden;
    background: #fff !important;
}

.woocommerce-checkout-payment ul.payment_methods {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #fff !important;
    list-style: none;
}

.woocommerce-checkout-payment ul.payment_methods > li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    margin: 0 !important;
    padding: 12px !important;
    border-bottom: 0;
    background: #fff !important;
    font-size: 14px;
}

.woocommerce-checkout-payment ul.payment_methods > li > input.input-radio {
    grid-column: 1;
    width: 20px;
    height: 20px;
    margin: 0 14px 0 10px;
    accent-color: #111;
}

.woocommerce-checkout-payment ul.payment_methods > li > label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 2;
    min-height: 50px;
    margin: 0;
    padding: 0 10px 0 0;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.woocommerce-checkout-payment ul.payment_methods > li > label img,
.woocommerce-checkout-payment ul.payment_methods > li > label svg {
    flex: 0 0 auto;
    max-height: 28px;
    margin-left: auto;
}

.woocommerce-checkout-payment ul.payment_methods > li > label .stripe-card-group,
.woocommerce-checkout-payment ul.payment_methods > li > label .wc-stripe-card-icons-container {
    margin-left: auto;
}

.woocommerce-checkout-payment .payment_box {
    grid-column: 1 / -1;
    min-height: 0 !important;
    margin: 0 -12px -12px !important;
    padding: 28px 28px 30px !important;
    border: 0 !important;
    border-top: 1px solid #d9d9d9 !important;
    border-radius: 0 !important;
    background: #f4f4f4 !important;
    color: #111 !important;
}

.woocommerce-checkout-payment .payment_box fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.woocommerce-checkout-payment .payment_box fieldset + fieldset {
    margin-top: 14px;
}

.woocommerce-checkout-payment .place-order {
    grid-column: 1 / -1;
    padding: 20px 0 4px !important;
    background: #fff !important;
}

.woocommerce-checkout-payment #place_order {
    width: calc(100% - 28px) !important;
    min-height: 64px !important;
    margin: 0 14px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

.woocommerce-checkout-payment #wc-stripe-upe-form,
.woocommerce-checkout-payment .wc-upe-form {
    width: 100%;
}

.woocommerce-checkout-payment #wc-stripe-upe-form .form-row,
.woocommerce-checkout-payment .wc-upe-form .form-row {
    margin-bottom: 16px !important;
}

.woocommerce-checkout-payment #wc-stripe-upe-form iframe,
.woocommerce-checkout-payment .wc-upe-form iframe {
    min-height: 66px;
}

.woocommerce-checkout-payment .StripeElement,
.woocommerce-checkout-payment .wc-stripe-elements-field,
.woocommerce-checkout-payment .wc-stripe-iban-element-field {
    min-height: 72px;
    padding: 22px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
}

.woocommerce-order-received .site-content,
.woocommerce-order-received .shop-shell,
.woocommerce-order-received .shop-shell > .container,
.woocommerce-order-received article,
.woocommerce-order-received .entry-content,
.woocommerce-order-received .woocommerce {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
}

.am-order-received {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
    padding: 58px 0 74px;
    color: #111;
    font-family: Helvetica, Arial, sans-serif;
}

.am-order-received-hero {
    max-width: 720px;
    margin: 0 auto 34px;
    padding: 38px 34px;
    border: 1px solid #dedede;
    background: #fafafa;
    text-align: center;
}

.am-order-received-hero.is-failed {
    border-color: #c3010c;
}

.am-order-eyebrow {
    margin: 0 0 10px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.am-order-received-hero h1 {
    margin: 0;
    color: #111;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.am-order-received-hero p:not(.am-order-eyebrow) {
    max-width: 520px;
    margin: 14px auto 0;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.am-order-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.am-order-actions .button {
    min-width: 160px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid #111;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.am-order-actions .am-order-secondary-button {
    background: #fff;
    color: #111;
}

.am-order-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 44px;
    padding: 0;
    border: 1px solid #dedede;
    background: #fff;
    list-style: none;
}

.am-order-overview li {
    min-width: 0;
    margin: 0;
    padding: 20px 22px;
    border-right: 1px solid #dedede;
}

.am-order-overview li:last-child {
    border-right: 0;
}

.am-order-overview span {
    display: block;
    margin-bottom: 7px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.am-order-overview strong {
    display: block;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
    width: min(100% - 32px, 1120px);
    margin: 0 auto 44px;
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
    margin: 0 0 18px;
    color: #111;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
}

.woocommerce-order-received table.shop_table {
    border: 1px solid #dedede;
    border-radius: 0;
    background: #fff;
}

.woocommerce-order-received table.shop_table th,
.woocommerce-order-received table.shop_table td {
    padding: 18px 20px;
    border-color: #dedede;
    color: #111;
    font-size: 15px;
    line-height: 1.5;
}

.woocommerce-order-received table.shop_table thead th,
.woocommerce-order-received table.shop_table tfoot th {
    background: #fafafa;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce-order-received table.shop_table a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.woocommerce-order-received .wc-item-meta,
.woocommerce-order-received .wc-item-meta ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.woocommerce-order-received .wc-item-meta li {
    display: flex;
    gap: 6px;
    margin: 4px 0;
    color: #555;
    font-size: 14px;
}

.woocommerce-order-received .wc-item-meta strong {
    color: #111;
    font-weight: 700;
}

.woocommerce-order-received .wc-item-meta p {
    margin: 0;
}

.woocommerce-order-received address {
    padding: 22px;
    border: 1px solid #dedede;
    background: #fafafa;
    color: #333;
    font-style: normal;
    line-height: 1.6;
}

.am-shopify-discount-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 10px;
    margin: 0 0 28px;
}

.am-shopify-discount-row input {
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    background: #fff;
    font-size: 14px;
}

.am-shopify-discount-row .button {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 7px !important;
    background: #eee !important;
    color: #777 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: none !important;
}

.am-shopify-discount-row.has-code .button {
    background: #111 !important;
    color: #fff !important;
    cursor: pointer;
}

.am-shopify-discount-row .button:disabled,
.am-shopify-discount-row .button.is-loading {
    opacity: 1 !important;
    cursor: not-allowed;
}

.am-shopify-discount-row.has-code .button.is-loading {
    background: #333 !important;
}

.am-review-order-table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    overflow: clip !important;
}

.am-review-order-table tbody,
.am-review-order-table tfoot,
.am-review-order-table tr {
    display: block !important;
    overflow: visible !important;
}

.am-review-order-table tr.cart_item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    margin-bottom: 24px;
    padding-top: 8px;
}

.am-review-order-table th,
.am-review-order-table td {
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 14px !important;
    overflow: visible !important;
}

.am-summary-product {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    overflow: visible;
}

.am-summary-thumb {
    position: relative;
    width: 64px;
    height: 64px;
    overflow: visible;
}

.am-summary-thumb img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
}

.am-summary-thumb span {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.am-summary-product-copy strong {
    display: block;
    overflow-wrap: anywhere;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.am-summary-product-copy .variation {
    overflow-wrap: anywhere;
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.35;
}

.am-summary-product-copy .variation dt,
.am-summary-product-copy .variation dd,
.am-summary-product-copy .variation p {
    display: inline;
    margin: 0;
    padding: 0;
    color: #777;
    font-size: 12px;
    font-weight: 400;
}

.am-summary-product-copy .variation dd::after {
    content: " / ";
}

.am-summary-product-copy .variation dd:last-child::after {
    content: "";
}

.am-review-order-table .product-total {
    align-self: start;
    padding-top: 8px !important;
    white-space: nowrap;
    text-align: right;
}

.am-review-order-table tfoot {
    padding-top: 6px;
}

.am-review-order-table tfoot tr {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 7px 0;
    text-transform: none !important;
}

.am-review-order-table tfoot tr.woocommerce-shipping-totals {
    align-items: center !important;
}

.am-review-order-table tfoot tr.woocommerce-shipping-totals th,
.am-review-order-table tfoot tr.woocommerce-shipping-totals td {
    display: flex !important;
    align-items: center !important;
    align-self: center !important;
    min-height: 22px;
    line-height: 1.4 !important;
}

.am-review-order-table tfoot tr.woocommerce-shipping-totals th {
    justify-content: flex-start !important;
}

.am-review-order-table tfoot tr.woocommerce-shipping-totals td {
    justify-content: flex-end !important;
    text-align: right !important;
}

.am-review-order-table tfoot tr.woocommerce-shipping-totals .woocommerce-shipping-methods {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

.am-review-order-table tfoot tr.woocommerce-shipping-totals .woocommerce-shipping-methods li,
.am-review-order-table tfoot tr.woocommerce-shipping-totals .woocommerce-shipping-methods label {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.am-review-order-table tfoot tr.am-summary-discount-row {
    display: block !important;
    padding: 0 !important;
}

.am-review-order-table tfoot th,
.am-review-order-table tfoot td {
    font-size: 14px !important;
    font-weight: 400 !important;
    text-align: left !important;
    text-transform: none !important;
}

.am-review-order-table tfoot td {
    text-align: right !important;
}

.am-review-order-table .order-total {
    padding-top: 14px;
}

.am-review-order-table .order-total th {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.am-review-order-table .order-total td {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.am-review-order-table del {
    color: #777 !important;
}

.am-review-order-table ins,
.am-review-order-table .order-total .amount {
    color: #111 !important;
    font-weight: 700 !important;
}

@media (max-width: 980px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    html:has(body.woocommerce-checkout),
    body.woocommerce-checkout {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .woocommerce-checkout,
    .woocommerce-checkout body,
    .woocommerce-checkout .site-content,
    .woocommerce-checkout .shop-shell,
    .woocommerce-checkout .shop-shell > .container,
    .woocommerce-checkout article,
    .woocommerce-checkout .entry-content,
    .woocommerce-checkout .woocommerce,
    .am-shopify-checkout,
    .am-shopify-checkout-form,
    .am-shopify-checkout-layout,
    .am-shopify-checkout-main,
    .am-shopify-order-summary {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .woocommerce-checkout .am-shopify-checkout *,
    .woocommerce-checkout .am-shopify-checkout *::before,
    .woocommerce-checkout .am-shopify-checkout *::after {
        box-sizing: border-box;
    }

    .woocommerce-checkout .am-shopify-checkout-form,
    .woocommerce-checkout .am-shopify-checkout-layout,
    .woocommerce-checkout .am-shopify-checkout-main,
    .woocommerce-checkout .am-shopify-order-summary,
    .woocommerce-checkout .am-shopify-order-summary-inner,
    .woocommerce-checkout .am-checkout-panel,
    .woocommerce-checkout .am-shopify-fields,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-checkout-review-order,
    .woocommerce-checkout .woocommerce-checkout-payment,
    .woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods,
    .woocommerce-checkout .woocommerce-checkout-payment .payment_box,
    .woocommerce-checkout .wc-stripe-upe-form,
    .woocommerce-checkout #wc-stripe-upe-form,
    .woocommerce-checkout .StripeElement,
    .woocommerce-checkout .wc-stripe-elements-field,
    .woocommerce-checkout .wc-stripe-iban-element-field,
    .woocommerce-checkout .select2-container {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-checkout iframe,
    .woocommerce-checkout input,
    .woocommerce-checkout select,
    .woocommerce-checkout textarea,
    .woocommerce-checkout button {
        max-width: 100% !important;
    }

    .woocommerce-checkout iframe {
        display: block !important;
        width: 100% !important;
    }

    .woocommerce-checkout .select2-dropdown,
    .woocommerce-checkout .select2-container--open .select2-dropdown {
        min-width: 0 !important;
        max-width: calc(100vw - 28px) !important;
    }

    .woocommerce-checkout .am-review-order-table,
    .woocommerce-checkout .am-review-order-table tbody,
    .woocommerce-checkout .am-review-order-table tfoot,
    .woocommerce-checkout .am-review-order-table tr,
    .woocommerce-checkout .am-review-order-table th,
    .woocommerce-checkout .am-review-order-table td,
    .woocommerce-checkout .am-summary-product,
    .woocommerce-checkout .am-summary-product-copy,
    .woocommerce-checkout .am-shopify-discount-row {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .woocommerce-checkout .am-delivery-panel,
    .woocommerce-checkout .am-payment-panel {
        display: block !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        contain: layout paint;
        isolation: isolate;
    }

    .woocommerce-checkout .am-delivery-panel *,
    .woocommerce-checkout .am-payment-panel * {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .woocommerce-checkout .am-delivery-panel > *,
    .woocommerce-checkout .am-payment-panel > *,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper > *,
    .woocommerce-checkout .woocommerce-checkout-payment > *,
    .woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods > li > * {
        min-width: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .woocommerce-checkout .am-delivery-panel > *,
    .woocommerce-checkout .am-payment-panel > *,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper > *,
    .woocommerce-checkout .woocommerce-checkout-payment > * {
        width: 100% !important;
    }

    .woocommerce-checkout .select2-hidden-accessible {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0 0 0 0) !important;
        clip-path: inset(50%) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    .woocommerce-checkout .am-shopify-fields {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-checkout .am-shopify-fields .form-row,
    .woocommerce-checkout .am-shopify-fields .form-row-first,
    .woocommerce-checkout .am-shopify-fields .form-row-last,
    .woocommerce-checkout .am-shopify-fields .form-row-wide {
        grid-column: 1 / -1 !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-checkout .am-shopify-fields .woocommerce-input-wrapper,
    .woocommerce-checkout .am-shopify-fields .select2,
    .woocommerce-checkout .am-shopify-fields .select2-container,
    .woocommerce-checkout .am-shopify-fields .select2-selection,
    .woocommerce-checkout .am-shopify-fields .select2-selection__rendered {
        display: block !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-checkout .am-shopify-fields .select2-container--default .select2-selection--single {
        display: block !important;
        position: relative !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        border: 1px solid #d9d9d9 !important;
        border-radius: 7px !important;
        background: #fff !important;
    }

    .woocommerce-checkout .am-shopify-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
        height: 46px !important;
        padding: 0 38px 0 12px !important;
        color: #111 !important;
        font-size: 14px !important;
        line-height: 46px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .woocommerce-checkout .am-shopify-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
        position: absolute !important;
        top: 1px !important;
        right: 10px !important;
        width: 20px !important;
        height: 46px !important;
    }

    .woocommerce-checkout .am-shopify-fields .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #777 transparent transparent transparent !important;
        border-style: solid !important;
        border-width: 5px 4px 0 4px !important;
        height: 0 !important;
        left: 50% !important;
        margin-left: -4px !important;
        margin-top: -2px !important;
        position: absolute !important;
        top: 50% !important;
        width: 0 !important;
    }

    .woocommerce-checkout .am-checkout-checkbox {
        min-width: 0 !important;
        max-width: 100% !important;
        overflow-wrap: anywhere;
    }

    .woocommerce-checkout .am-checkout-checkbox input {
        flex: 0 0 18px;
        min-width: 18px !important;
    }

    .woocommerce-checkout .am-checkout-checkbox span {
        min-width: 0;
    }

    .woocommerce-checkout-payment {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .woocommerce-checkout-payment ul.payment_methods > li {
        grid-template-columns: 24px minmax(0, 1fr) !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px !important;
        overflow: hidden !important;
    }

    .woocommerce-checkout-payment ul.payment_methods > li > input.input-radio {
        width: 18px !important;
        min-width: 18px !important;
        height: 18px !important;
        margin: 0 !important;
    }

    .woocommerce-checkout-payment ul.payment_methods > li > label {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-wrap: anywhere;
    }

    .woocommerce-checkout-payment ul.payment_methods > li > label img,
    .woocommerce-checkout-payment ul.payment_methods > li > label svg,
    .woocommerce-checkout-payment ul.payment_methods > li > label .stripe-card-group,
    .woocommerce-checkout-payment ul.payment_methods > li > label .wc-stripe-card-icons-container {
        max-width: 100% !important;
        margin-left: 0 !important;
        flex: 0 1 auto !important;
    }

    .woocommerce-checkout-payment ul.payment_methods > li > label .stripe-card-group,
    .woocommerce-checkout-payment ul.payment_methods > li > label .wc-stripe-card-icons-container {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
    }

    .woocommerce-checkout-payment .payment_box {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 18px 12px 20px !important;
        overflow: hidden !important;
    }

    .woocommerce-checkout-payment #place_order {
        width: calc(100% - 20px) !important;
        margin-inline: 10px !important;
    }

    .woocommerce-checkout-payment .payment_box p,
    .woocommerce-checkout-payment .payment_box fieldset,
    .woocommerce-checkout-payment .payment_box .form-row,
    .woocommerce-checkout-payment .payment_box .wc-stripe-upe-element,
    .woocommerce-checkout-payment .payment_box .wc-stripe-upe-element *,
    .woocommerce-checkout-payment .payment_box .__PrivateStripeElement,
    .woocommerce-checkout-payment .payment_box .__PrivateStripeElement *,
    .woocommerce-checkout-payment .payment_box .StripeElement,
    .woocommerce-checkout-payment .payment_box .StripeElement * {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .woocommerce-checkout #billing_country_field {
        overflow: visible !important;
    }

    .woocommerce-checkout #billing_country_field #billing_country.select2-hidden-accessible,
    .woocommerce-checkout #billing_country_field select.select2-hidden-accessible {
        position: absolute !important;
        left: -9999px !important;
        width: 1px !important;
        height: 1px !important;
        min-width: 1px !important;
        max-width: 1px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .woocommerce-checkout #billing_country_field .select2-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        overflow: visible !important;
    }

    .woocommerce-checkout #billing_country_field .select2-container .selection {
        display: block !important;
        width: 100% !important;
        height: 48px !important;
        overflow: visible !important;
    }

    .woocommerce-checkout #billing_country_field .select2-container--default .select2-selection--single {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        border: 1px solid #d9d9d9 !important;
        border-bottom: 1px solid #d9d9d9 !important;
        border-radius: 7px !important;
        background: #fff !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .woocommerce-checkout #billing_country_field .select2-container--default .select2-selection--single .select2-selection__rendered {
        display: block !important;
        width: auto !important;
        max-width: none !important;
        height: 46px !important;
        padding: 0 38px 0 12px !important;
        color: #111 !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 46px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .woocommerce-checkout #billing_country_field .select2-container--default .select2-selection--single .select2-selection__arrow {
        position: absolute !important;
        top: 0 !important;
        right: 10px !important;
        width: 20px !important;
        height: 46px !important;
        overflow: visible !important;
    }

    .woocommerce-checkout #billing_country_field .select2-container--default .select2-selection--single .select2-selection__arrow b {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 0 !important;
        height: 0 !important;
        margin-top: -2px !important;
        margin-left: -4px !important;
        border-color: #777 transparent transparent transparent !important;
        border-style: solid !important;
        border-width: 5px 4px 0 4px !important;
    }

    .am-shopify-checkout-layout {
        grid-template-columns: 1fr;
    }

    .am-shopify-checkout-main,
    .am-shopify-order-summary {
        padding: 28px 18px;
    }

    .am-shopify-order-summary {
        order: -1;
        min-height: 0;
        max-height: none;
        overflow-x: hidden;
        overflow-y: visible;
        border-left: 0;
        border-bottom: 1px solid #dedede;
    }

    .am-shopify-order-summary-inner {
        position: static;
        max-height: none;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .am-order-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .am-order-overview li:nth-child(2n) {
        border-right: 0;
    }

    .am-order-overview li:nth-child(n+3) {
        border-top: 1px solid #dedede;
    }
}

@media (max-width: 560px) {
    .am-shopify-checkout-header {
        height: 72px;
    }

    .am-shopify-checkout-logo img {
        width: min(170px, 52vw);
    }

    .am-shopify-checkout-cart {
        right: 18px;
    }

    .am-shopify-checkout-main,
    .am-shopify-order-summary {
        padding-left: 14px;
        padding-right: 14px;
    }

    .am-review-order-table tr.cart_item {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .am-summary-product {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 10px;
    }

    .am-summary-thumb,
    .am-summary-thumb img {
        width: 58px;
        height: 58px;
    }

    .am-shopify-discount-row {
        grid-template-columns: minmax(0, 1fr) 72px;
        gap: 8px;
    }

    .am-shopify-discount-row input {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }

    .am-express-buttons,
    .am-shopify-fields {
        grid-template-columns: 1fr;
    }

    .am-order-received {
        width: calc(100% - 20px);
        padding: 34px 0 48px;
    }

    .am-order-received-hero {
        padding: 28px 20px;
    }

    .am-order-received-hero h1 {
        font-size: 24px;
    }

    .am-order-overview {
        grid-template-columns: 1fr;
    }

    .am-order-overview li,
    .am-order-overview li:nth-child(2n) {
        border-right: 0;
    }

    .am-order-overview li:nth-child(n+2) {
        border-top: 1px solid #dedede;
    }

    .woocommerce-order-received .woocommerce-order-details,
    .woocommerce-order-received .woocommerce-customer-details {
        width: calc(100% - 20px);
    }

    .woocommerce-order-received table.shop_table th,
    .woocommerce-order-received table.shop_table td {
        padding: 14px 12px;
        font-size: 14px;
    }
}

.woocommerce-cart .am-update-cart {
    display: none !important;
}

.woocommerce-cart .cart-totals-inner > h2 {
    margin: 0 0 18px !important;
    color: #242424 !important;
    font-family: Helvetica, Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
}

.woocommerce-cart .cart-totals-inner table tr:last-child :is(th, td) {
    border-bottom: 0 !important;
}

.woocommerce-cart .cart-totals-inner table th,
.woocommerce-cart .cart-totals-inner table td {
    padding: 15px 0 !important;
    font-size: 14px !important;
}

.woocommerce-cart .cart-totals-inner table th {
    width: 36% !important;
    color: #242424 !important;
    font-weight: 600 !important;
    text-align: left !important;
    text-transform: none !important;
}

.woocommerce-cart .cart-totals-inner table td {
    color: #242424 !important;
    text-align: right !important;
}

.woocommerce-cart .cart-totals-inner .cart-subtotal .amount {
    color: #777 !important;
    font-weight: 400 !important;
}

.woocommerce-cart .woocommerce-shipping-methods {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-cart .woocommerce-shipping-methods label {
    margin: 0 !important;
    color: #242424 !important;
    font-weight: 400 !important;
}

.woocommerce-cart .cart-totals-inner tr.woocommerce-shipping-totals th,
.woocommerce-cart .cart-totals-inner tr.woocommerce-shipping-totals td {
    vertical-align: middle !important;
}

.woocommerce-cart .cart-totals-inner tr.woocommerce-shipping-totals .woocommerce-shipping-methods {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.woocommerce-cart .cart-totals-inner tr.woocommerce-shipping-totals .woocommerce-shipping-methods li,
.woocommerce-cart .cart-totals-inner tr.woocommerce-shipping-totals .woocommerce-shipping-methods label {
    line-height: 1.4 !important;
}

.woocommerce-cart .cart-totals-inner tr.order-total strong {
    display: block !important;
}

.woocommerce-cart .cart-totals-inner tr.order-total strong .amount {
    color: #d10000 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.woocommerce-cart .wc-proceed-to-checkout {
    margin-top: 10px !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100% !important;
    min-height: 42px !important;
}

@media (max-width: 1024px) {
    .woocommerce-cart .cart-content-wrapper {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-cart .cart-content-wrapper > .woocommerce-cart-form,
    .woocommerce-cart .cart-content-wrapper > .cart_totals,
    .woocommerce-cart .cart-content-wrapper > .am-cart-collaterals {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .woocommerce-cart .am-checkout-steps {
        justify-content: center !important;
        padding: 26px 0 28px !important;
        font-size: 18px !important;
        text-align: center !important;
    }

    .woocommerce-cart .am-checkout-step:not(.is-active),
    .woocommerce-cart .am-step-separator {
        display: none !important;
    }

    .woocommerce-cart .shop_table_responsive {
        display: block !important;
    }

    .woocommerce-cart .shop_table_responsive thead,
    .woocommerce-cart .shop_table_responsive th {
        display: none !important;
    }

    .woocommerce-cart .shop_table_responsive tbody,
    .woocommerce-cart .shop_table_responsive tfoot {
        display: block !important;
    }

    .woocommerce-cart .shop_table_responsive tr.cart_item {
        display: grid !important;
        grid-template-columns: 100px minmax(0, 1fr) 20px !important;
        gap: 0 12px !important;
        align-items: start !important;
        min-height: 0 !important;
        margin-bottom: 22px !important;
        padding: 0 14px 18px !important;
        border-bottom: 1px solid #e6e6e6 !important;
    }

    .woocommerce-cart .shop_table_responsive td {
        display: block !important;
        width: auto !important;
        padding: 0 !important;
        border-bottom: 0 !important;
        white-space: normal !important;
    }

    .woocommerce-cart .shop_table_responsive td::before {
        content: attr(data-title);
        color: #242424;
        font-size: 15px;
        font-weight: 400;
    }

    .woocommerce-cart .shop-table-with-img td.product-thumbnail {
        position: static !important;
        grid-column: 1 !important;
        grid-row: 1 / 5 !important;
        align-self: start !important;
        overflow: hidden !important;
        max-height: none !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .woocommerce-cart .shop-table-with-img td.product-thumbnail::before,
    .woocommerce-cart .shop-table-with-img td.product-remove::before,
    .woocommerce-cart .shop-table-with-img td.product-name::before {
        content: none !important;
    }

    .woocommerce-cart .shop-table-with-img td.product-thumbnail img {
        width: 80px !important;
        min-width: 80px !important;
        max-width: 80px !important;
        height: 108px !important;
        object-fit: cover !important;
    }

    .woocommerce-cart .shop-table-with-img td.product-remove {
        position: static !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        align-self: start !important;
        justify-self: end !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .woocommerce-cart .shop-table-with-img td.product-name {
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-width: 0 !important;
        padding: 0 20px 0 0 !important;
        border-bottom: 0 !important;
    }

    .woocommerce-cart .shop_table_responsive td.product-price,
    .woocommerce-cart .shop_table_responsive td.product-quantity,
    .woocommerce-cart .shop_table_responsive td.product-subtotal {
        grid-column: 2 / 4 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid #ededed !important;
        font-size: 15px !important;
        white-space: nowrap !important;
    }

    .woocommerce-cart .shop_table_responsive td.product-price {
        grid-row: 2 !important;
    }

    .woocommerce-cart .shop_table_responsive td.product-quantity {
        grid-row: 3 !important;
    }

    .woocommerce-cart .shop_table_responsive td.product-subtotal {
        grid-row: 4 !important;
        border-bottom: 0 !important;
        text-align: right !important;
    }

    .woocommerce-cart .shop_table_responsive td.product-subtotal del,
    .woocommerce-cart .shop_table_responsive td.product-subtotal ins,
    .woocommerce-cart .shop_table_responsive td.product-subtotal .amount {
        display: inline-flex !important;
        align-items: center !important;
        margin-left: 6px !important;
        white-space: nowrap !important;
    }

    .woocommerce-cart .cart-actions,
    .woocommerce-cart .wd-coupon-form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .am-cart-collaterals {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .woocommerce-cart .am-cart-actions-row,
    .woocommerce-cart .am-cart-actions-row td.actions {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .woocommerce-cart .wd-coupon-form {
        padding: 25px !important;
        border: 2px dashed #e6e6e6 !important;
    }

    .woocommerce-cart .wd-coupon-form .input-text,
    .woocommerce-cart .wd-coupon-form .button {
        width: 100% !important;
        max-width: none !important;
    }

    .woocommerce-cart .cart_totals.am-cart-totals,
    .woocommerce-cart .cart-totals-inner {
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-cart .cart-totals-inner {
        padding: 28px 24px !important;
        border: 2px solid #e6e6e6 !important;
    }

    .woocommerce-cart .cart-totals-inner .shop_table_responsive {
        display: table !important;
        width: 100% !important;
        table-layout: auto !important;
    }

    .woocommerce-cart .cart-totals-inner .shop_table_responsive tbody {
        display: table-row-group !important;
    }

    .woocommerce-cart .cart-totals-inner .shop_table_responsive tr {
        display: table-row !important;
    }

    .woocommerce-cart .cart-totals-inner .shop_table_responsive th,
    .woocommerce-cart .cart-totals-inner .shop_table_responsive td {
        display: table-cell !important;
        width: auto !important;
        padding: 15px 0 !important;
        text-align: left !important;
        vertical-align: top !important;
        white-space: normal !important;
    }

    .woocommerce-cart .cart-totals-inner .shop_table_responsive td {
        text-align: right !important;
    }

    .woocommerce-cart .cart-totals-inner .shop_table_responsive tr.woocommerce-shipping-totals th,
    .woocommerce-cart .cart-totals-inner .shop_table_responsive tr.woocommerce-shipping-totals td {
        vertical-align: middle !important;
    }

    .woocommerce-cart .cart-totals-inner .shop_table_responsive td::before {
        content: none !important;
    }
}

/* Compact side cart typography */
.am-side-cart-header {
    min-height: 72px !important;
    padding: 0 20px !important;
}

.am-side-cart-header h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
}

.am-side-cart-close {
    width: 28px !important;
    height: 28px !important;
    font-size: 28px !important;
}

.am-side-cart-body {
    padding: 18px 14px !important;
}

.am-side-cart .woocommerce-mini-cart-item {
    grid-template-columns: 58px 1fr !important;
    gap: 10px !important;
    min-height: 74px !important;
    margin-bottom: 16px !important;
    padding-right: 18px !important;
}

.am-side-cart .woocommerce-mini-cart-item > a:not(.remove) {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.32 !important;
}

.am-side-cart .woocommerce-mini-cart-item img {
    width: 48px !important;
    height: 64px !important;
}

.am-side-cart .woocommerce-mini-cart-item .remove {
    top: -5px !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 18px !important;
}

.am-side-cart .variation,
.am-side-cart .woocommerce-mini-cart-item dl {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-top: 4px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.am-side-cart .variation dt,
.am-side-cart .variation dd,
.am-side-cart .variation p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.am-side-cart .variation dt {
    flex: 0 0 auto !important;
    margin-right: 4px !important;
    font-weight: 700 !important;
}

.am-side-cart .variation dd {
    display: inline-flex !important;
    flex: 1 1 calc(100% - 70px) !important;
    min-width: 0 !important;
}

.am-side-cart .variation dd::after {
    content: "" !important;
    display: none !important;
}

.am-side-cart .variation p {
    display: inline !important;
}

.am-side-cart .quantity {
    margin-top: 4px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.am-side-cart .custom-mini-totals {
    margin-top: 8px !important;
    padding-top: 10px !important;
}

.am-side-cart .custom-mini-totals p {
    padding: 7px 0 !important;
    font-size: 15px !important;
}

.am-side-cart-actions {
    gap: 8px !important;
    padding: 0 14px 20px !important;
}

.am-side-cart-button,
.am-side-cart .button {
    min-height: 44px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

/* Compact footer typography */
.site-footer .footer-top.am-reference-footer {
    padding-block: 40px 46px !important;
}

.footer-etsy-logo {
    font-size: 34px !important;
}

.footer-socials {
    gap: 20px !important;
    margin-top: 42px !important;
}

.footer-socials a {
    font-size: 28px !important;
    font-weight: 700 !important;
}

.site-footer .footer-links h3,
.site-footer .footer-newsletter h3 {
    margin-bottom: 16px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.site-footer .footer-links a {
    margin-bottom: 14px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
}

.site-footer .footer-newsletter p {
    max-width: 340px !important;
    margin-bottom: 22px !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
}

.site-footer .footer-newsletter input {
    height: 46px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
}

.site-footer .footer-newsletter button {
    width: 124px !important;
    height: 46px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.site-footer .footer-bottom {
    min-height: 60px !important;
    font-size: 13px !important;
}

.mobile-menu-header,
.mobile-menu-actions {
    display: none;
}

@media (max-width: 1024px) {
    .site-header .header-menu > li > .submenu-panel,
    .site-header .header-menu > li > .sub-menu {
        display: none !important;
    }

    .site-header .header-menu > li.is-submenu-open > .submenu-panel,
    .site-header .header-menu > li.is-submenu-open > .sub-menu {
        display: block !important;
    }
}

@media (max-width: 782px) {
    .site-header .top-strip {
        height: 38px !important;
    }

    .site-header .top-strip-inner {
        width: 100% !important;
        min-height: 38px !important;
        height: 38px !important;
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 9px !important;
        overflow: visible !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        line-height: 1 !important;
    }

    .site-header .top-strip-inner > span:first-child {
        grid-column: 2;
        justify-self: center;
    }

    .site-header .top-language {
        grid-column: 3;
        justify-self: end;
        display: inline-flex !important;
        align-items: center !important;
        gap: 3px;
        height: 38px;
    }

    .site-header .top-language > img {
        width: 18px;
        height: auto;
    }

    .site-header .top-language > span {
        width: 6px;
        height: 6px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(45deg) translateY(-1px);
    }

    .site-header .header-main {
        width: 100% !important;
        max-width: none !important;
        min-height: 42px !important;
        height: 42px !important;
        display: grid !important;
        grid-template-columns: 24px 28px minmax(0, 1fr) 28px 30px !important;
        position: relative !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 0 10px !important;
        border-bottom: 1px solid #d7d7d7 !important;
    }

    .site-header .menu-toggle {
        grid-column: 1;
        width: 24px !important;
        height: 42px !important;
        min-height: 42px !important;
        display: inline-flex !important;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 4px;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    .site-header .menu-toggle span:not(.screen-reader-text) {
        width: 12px !important;
        height: 1px !important;
        display: block !important;
        background: #111 !important;
    }

    .site-header .site-branding,
    .site-header .site-logo-link {
        grid-column: 3;
        justify-self: center !important;
        width: auto !important;
        height: 42px !important;
        min-height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .site-header .site-logo-link img,
    .site-header .site-branding img {
        width: 108px !important;
        max-width: 108px !important;
        height: auto !important;
        display: block;
    }

    .site-header .header-actions {
        display: contents !important;
        width: auto !important;
        height: auto !important;
        gap: 0 !important;
    }

    .site-header .wishlist-link {
        grid-column: 2;
    }

    .site-header .header-search-wrap {
        grid-column: 4;
        position: relative;
        width: 28px !important;
        height: 42px !important;
        min-height: 42px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .site-header .site-cart {
        grid-column: 5;
    }

    .site-header .account-link {
        display: none !important;
    }

    .site-header .header-search-link,
    .site-header .wishlist-link,
    .site-header .site-cart {
        width: 28px !important;
        min-width: 28px !important;
        height: 42px !important;
        min-height: 42px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #101010 !important;
    }

    .site-header .header-search-link svg,
    .site-header .wishlist-link svg,
    .site-header .site-cart svg {
        width: 18px !important;
        height: 18px !important;
        stroke-width: 2 !important;
    }

    .site-header .header-action-count,
    .site-header .site-cart-count {
        top: 6px !important;
        right: -1px !important;
        min-width: 13px !important;
        height: 13px !important;
        padding: 0 3px !important;
        font-size: 8px !important;
        line-height: 13px !important;
    }

    .site-header .site-navigation {
        grid-column: auto;
        position: fixed !important;
        left: 0 !important;
        right: auto !important;
        top: 0 !important;
        bottom: 0 !important;
        z-index: 1000;
        width: min(492px, calc(100vw - 18px)) !important;
        max-width: none !important;
        height: 100vh !important;
        min-height: 0 !important;
        display: block !important;
        overflow-y: auto !important;
        background: #fff !important;
        border-right: 1px solid #d7d7d7 !important;
        box-shadow: 8px 0 24px rgba(0,0,0,.12) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-105%) !important;
        transition: transform .28s ease !important;
    }

    .menu-open .site-header .site-navigation {
        transform: translateX(0) !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .site-header {
        z-index: 1001;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(0,0,0,.18);
    }

    .site-header .mobile-menu-header {
        height: 88px;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        padding: 0 26px;
        border-bottom: 1px solid #e3e3e3;
    }

    .site-header .mobile-menu-close {
        position: relative;
        width: 28px;
        height: 28px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #303030;
        cursor: pointer;
    }

    .site-header .mobile-menu-close span::before,
    .site-header .mobile-menu-close span::after {
        content: "";
        position: absolute;
        left: 2px;
        top: 13px;
        width: 24px;
        height: 2px;
        background: currentColor;
    }

    .site-header .mobile-menu-close span::before {
        transform: rotate(45deg);
    }

    .site-header .mobile-menu-close span::after {
        transform: rotate(-45deg);
    }

    .site-header .header-menu {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        margin: 0 !important;
        padding: 18px 26px 0 !important;
        background: #fff !important;
    }

    .site-header .header-menu > li {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .site-header .header-menu > li > a {
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 12px 0 !important;
        color: #101820 !important;
        font-size: 24px !important;
        font-weight: 400 !important;
        line-height: 1.16 !important;
        letter-spacing: 0 !important;
        text-align: left !important;
        text-transform: uppercase !important;
    }

    .site-header .header-menu > li > a::before,
    .site-header .submenu-panel a::before,
    .site-header .header-menu .sub-menu a::before {
        display: none !important;
    }

    .site-header .submenu-caret {
        display: inline-block !important;
        width: 10px;
        height: 10px;
        margin-left: auto;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(-45deg);
    }

    .site-header .header-menu > li.is-submenu-open > a .submenu-caret {
        transform: rotate(45deg) translateY(-2px);
    }

    .site-header .header-menu > li.menu-item-has-children > a::after {
        content: "";
        display: inline-block !important;
        width: 10px;
        height: 10px;
        margin-left: auto;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(-45deg);
    }

    .site-header .header-menu > li.is-submenu-open > a::after {
        transform: rotate(45deg) translateY(-2px);
    }

    .site-header .header-menu > li.menu-item-has-children > a:has(.submenu-caret)::after {
        display: none !important;
    }

    .site-header .submenu-panel,
    .site-header .header-menu > li > .sub-menu {
        position: static !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 0 10px 16px !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .site-header .submenu-panel ul {
        display: block !important;
        padding: 0 !important;
    }

    .site-header .header-menu > li > .sub-menu {
        padding: 0 0 10px 16px !important;
    }

    .site-header .submenu-panel a,
    .site-header .header-menu .sub-menu a {
        width: auto !important;
        display: inline-block !important;
        padding: 8px 0 !important;
        color: #202020 !important;
        font-size: 17px !important;
        font-weight: 400 !important;
        line-height: 1.2 !important;
        text-transform: none !important;
    }

    .site-header .mobile-menu-actions {
        display: grid !important;
        gap: 22px;
        padding: 24px 26px 40px;
    }

    .site-header .mobile-menu-action {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #101820;
        font-size: 24px;
        font-weight: 400;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .site-header .mobile-menu-action svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

    .site-header .header-search-dropdown {
        right: -38px !important;
        top: calc(100% + 8px) !important;
        width: min(320px, calc(100vw - 20px)) !important;
        height: 64px !important;
        padding: 0 14px !important;
    }

    .site-header .header-search-dropdown input[type="search"] {
        height: 42px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 782px) {
    .site-header .header-main {
        grid-template-columns: 32px 32px minmax(0, 1fr) 66px !important;
        gap: 4px !important;
        height: 60px !important;
        min-height: 60px !important;
    }

    .site-header .menu-toggle {
        grid-column: 1 !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .site-header .menu-toggle span:not(.screen-reader-text) {
        width: 24px !important;
        height: 2px !important;
        margin: 0 !important;
    }

    .site-header .site-branding,
    .site-header .site-logo-link {
        grid-column: 3 !important;
        height: 60px !important;
        min-height: 60px !important;
    }

    .site-header .site-logo-link img,
    .site-header .site-branding img {
        width: 132px !important;
        max-width: 132px !important;
    }

    .site-header .header-actions {
        grid-column: 4 !important;
        width: 76px !important;
        height: 60px !important;
        min-height: 60px !important;
        display: grid !important;
        grid-template-columns: 34px 34px !important;
        align-items: center !important;
        justify-content: end !important;
        gap: 8px !important;
        position: static !important;
    }

    .site-header .wishlist-link {
        position: absolute !important;
        left: 42px !important;
        top: 0 !important;
        grid-column: auto !important;
    }

    .site-header .header-search-wrap {
        grid-column: 1 !important;
    }

    .site-header .site-cart {
        grid-column: 2 !important;
    }

    .site-header .header-search-wrap,
    .site-header .header-search-link,
    .site-header .wishlist-link,
    .site-header .site-cart {
        width: 34px !important;
        min-width: 34px !important;
        height: 60px !important;
        min-height: 60px !important;
        margin: 0 !important;
        transform: none !important;
    }

    .site-header .header-search-link svg,
    .site-header .wishlist-link svg,
    .site-header .site-cart svg {
        width: 24px !important;
        height: 24px !important;
    }

    .site-header .header-action-count,
    .site-header .site-cart-count {
        top: 11px !important;
        right: -1px !important;
        min-width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        line-height: 16px !important;
    }
}

@media (max-width: 782px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .single-product .am-product-summary .am-frame-options {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
    }

    .single-product .am-product-summary .am-material-selector .am-visual-options {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
    }

    .single-product .am-product-summary .am-material-selector .am-visual-option,
    .single-product .am-product-summary .am-frame-options .am-visual-option {
        width: 100%;
        min-width: 0;
        gap: 4px;
    }

    .single-product .am-product-summary .am-material-selector .am-visual-img-wrap,
    .single-product .am-product-summary .am-frame-options .am-visual-img-wrap {
        width: 100%;
        height: 47px;
    }

    .single-product .am-product-summary .am-material-selector .am-visual-option-text,
    .single-product .am-product-summary .am-frame-options .am-visual-option-text {
        font-size: 11px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .single-product .am-product-gallery {
        display: block;
        min-height: 0;
    }

    .single-product .am-product-main {
        gap: 12px !important;
    }

    .single-product .am-product-thumbs-shell {
        display: none !important;
    }

    .single-product .am-product-gallery-main {
        margin-bottom: 12px !important;
    }

    .single-product .am-product-gallery-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 0 12px;
    }

    .single-product .am-product-summary {
        padding-top: 0 !important;
    }

    .single-product .am-product-breadcrumb {
        margin-bottom: 10px !important;
    }

    .single-product .rcs-section,
    .am-frontpage .rcs-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .single-product .rcs-container,
    .am-frontpage .rcs-container {
        padding-inline: 12px !important;
    }

    .single-product .rcs-track-viewport-wrap,
    .am-frontpage .rcs-track-viewport-wrap,
    .single-product .rcs-track-viewport,
    .am-frontpage .rcs-track-viewport {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .single-product .rcs-carousel-track,
    .am-frontpage .rcs-carousel-track {
        gap: 0 !important;
    }

    .single-product .rcs-review-card,
    .am-frontpage .rcs-review-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: 305px;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .single-product .am-related-products {
        width: 100% !important;
        padding: 46px 12px 58px !important;
    }

    .single-product .am-related-products section.related,
    .single-product .am-related-products .related.products {
        display: block !important;
        width: 100% !important;
    }

    .single-product .am-related-products .related > h2,
    .single-product .am-related-products > section > h2 {
        display: block !important;
        width: 100% !important;
        margin: 0 0 22px !important;
        text-align: left !important;
    }

    .single-product .am-related-products ul.products {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .single-product .am-related-products ul.products::-webkit-scrollbar {
        display: none;
    }

    .single-product .am-related-products ul.products li.product,
    .single-product .am-related-products ul.products li.product-card {
        flex: 0 0 calc((100% - 10px) / 2) !important;
        width: calc((100% - 10px) / 2) !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
        scroll-snap-align: start;
    }

    .single-product .am-related-carousel {
        position: relative;
    }

    .single-product .am-related-carousel-arrow {
        position: absolute;
        top: 38%;
        z-index: 3;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: transparent;
        color: #333;
        font-size: 34px;
        line-height: 1;
        transform: translateY(-50%);
    }

    .single-product .am-related-carousel-prev {
        left: 4px;
    }

    .single-product .am-related-carousel-next {
        right: 4px;
    }

    .single-product .am-sticky-add-to-cart {
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom)) !important;
    }

    .single-product .am-sticky-add-to-cart-button {
        width: 100%;
        min-height: 54px;
        gap: 7px;
        padding: 0 14px;
        font-size: clamp(10px, 3.8vw, 15px);
        line-height: 20px;
        white-space: nowrap;
    }

    .single-product .am-sticky-add-to-cart-button .am-button-price,
    .single-product .am-sticky-add-to-cart-button .am-button-price .woocommerce-Price-amount,
    .single-product .am-sticky-add-to-cart-button .am-button-price .amount {
        font-size: inherit;
    }

    .single-product .am-sticky-add-to-cart-button .am-button-price .price {
        gap: 5px;
    }
}

.am-side-cart-panel {
    height: 100dvh !important;
    max-height: 100dvh !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
}

.am-side-cart-body {
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
}

.am-side-cart .woocommerce-mini-cart.cart_list.product_list_widget,
.am-side-cart .woocommerce-mini-cart.cart_list {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    padding-right: 4px !important;
    -webkit-overflow-scrolling: touch;
}

.am-side-cart .custom-mini-totals {
    flex: 0 0 auto !important;
}

.am-side-cart-actions {
    flex: 0 0 auto !important;
    background: #fff !important;
}

/* Mobile polish fixes */
.am-product-benefits,
.am-product-benefits div {
    color: #444 !important;
}

.not-found {
    text-align: center;
}

.am-side-cart .woocommerce-mini-cart-item {
    grid-template-columns: 76px 1fr !important;
}

.am-side-cart .woocommerce-mini-cart-item img {
    width: 64px !important;
    height: 64px !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (max-width: 782px) {
    body:not(.home):not(.front-page) .site-content > .container,
    body:not(.home):not(.front-page) .site-content > :is(section, article) > .container,
    body:not(.home):not(.front-page) .site-content .rcs-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box;
    }

    .site-footer .footer-newsletter {
        text-align: center !important;
    }

    .site-footer .footer-newsletter p,
    .site-footer .footer-newsletter form {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .woocommerce-pagination,
    .pagination {
        width: 100%;
        text-align: center;
    }

    .woocommerce-pagination ul,
    .pagination .nav-links,
    .nav-links {
        justify-content: center !important;
    }

    .am-wishlist-page,
    .am-wishlist-page h1,
    .am-wishlist-status,
    .am-wishlist-products .product-card,
    .am-wishlist-products .product-card-body,
    .am-wishlist-products .woocommerce-loop-product__title,
    .am-wishlist-products .price,
    .am-wishlist-products .product-card-action,
    .am-wishlist-products {
        text-align: center !important;
    }

    .am-wishlist-products .product-card-action {
        justify-content: center !important;
    }

    .am-wishlist-products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px 12px !important;
    }

    .site-header.is-header-main-fixed .header-main {
        border-bottom: 1px solid #8f8f8f !important;
        box-shadow: none !important;
    }

    .site-header {
        border-bottom: 0 !important;
        box-shadow: none !important;
    }

    .site-header .header-main {
        border-bottom: 1px solid #8f8f8f !important;
        box-shadow: none !important;
    }

    .am-side-cart .woocommerce-mini-cart-item {
        grid-template-columns: 68px 1fr !important;
    }

    .am-side-cart .woocommerce-mini-cart-item img {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Header language switcher shortcode */
.site-header .top-language {
    z-index: 120;
    color: #fff;
    overflow: visible;
}

.site-header .top-language .trp-shortcode-switcher__wrapper {
    --bg: transparent !important;
    --bg-hover: transparent !important;
    --text: #fff !important;
    --text-hover: #fff !important;
    --border: 0 !important;
    --border-width: 0 !important;
    --border-color: transparent !important;
    --flag-size: 24px !important;
    position: relative;
    z-index: 121;
    width: 54px;
    height: 38px;
}

.site-header .top-language .trp-language-switcher {
    width: 54px !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.site-header .top-language .trp-shortcode-overlay {
    left: 0 !important;
    top: 0 !important;
}

.site-header .top-language .trp-current-language-item__wrapper {
    height: 38px !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 !important;
    background: transparent !important;
}

.site-header .top-language .trp-language-item {
    min-height: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.site-header .top-language .trp-language-item:hover {
    background: transparent !important;
}

.site-header .top-language .trp-flag-image {
    width: 24px !important;
    height: auto !important;
    display: block !important;
}

.site-header .top-language .trp-shortcode-arrow {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
    display: block !important;
}

.site-header .top-language .trp-shortcode-arrow path {
    stroke: #fff !important;
}

.site-header .top-language .trp-switcher-dropdown-list {
    position: absolute !important;
    left: 50% !important;
    top: calc(100% + 6px) !important;
    min-width: 54px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: translateX(-50%) !important;
}

.site-header .top-language .trp-language-switcher.is-open .trp-switcher-dropdown-list,
.site-header .top-language .trp-language-switcher[aria-expanded="true"] .trp-switcher-dropdown-list {
    padding: 8px 0 !important;
    background: #fff !important;
    border: 1px solid #e6e6e6 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.12) !important;
}

.site-header .top-language .trp-switcher-dropdown-list .trp-language-item {
    min-height: 34px !important;
    justify-content: center !important;
    padding: 5px 12px !important;
}

.site-header .top-language .trp-switcher-dropdown-list .trp-language-item:hover {
    background: #f5f5f5 !important;
}

.site-header .top-strip,
.site-header .top-strip-inner {
    overflow: visible !important;
}
