:root {
    --re-style-color-background: var(--wp--preset--color--background, #f7f7f7);
    --re-style-color-surface: var(--wp--preset--color--surface, #f0eadb);
    --re-style-color-text: var(--wp--preset--color--text, #1c1c1c);
    --re-style-color-accent: var(--wp--preset--color--accent, #d0b985);
    --re-style-color-border: var(--wp--preset--color--border, #c8c8c8);
    --re-style-color-muted: var(--wp--preset--color--muted, #8a8a8a);
    --re-style-font-primary: var(--wp--preset--font-family--primary, "Poppins", sans-serif);
    --re-style-font-secondary: var(--wp--preset--font-family--secondary, "Raleway", sans-serif);
    --re-style-font-size-label: var(--wp--preset--font-size--label, 12px);
    --re-style-font-size-body: var(--wp--preset--font-size--body, 16px);
    --re-style-font-size-lead: var(--wp--preset--font-size--lead, 18px);
    --re-style-font-size-title: var(--wp--preset--font-size--title, 24px);
    --re-style-font-size-heading: var(--wp--preset--font-size--heading-xl, 40px);
    --re-style-font-size-display: var(--wp--preset--font-size--display, 72px);
    --re-style-space-gutter: var(--wp--preset--spacing--gutter, 16px);
    --re-style-space-section: var(--wp--preset--spacing--section, 64px);
    --re-style-space-stack: var(--wp--preset--spacing--stack, 24px);
    --re-style-content-width: 1200px;
    --re-style-content-narrow: 760px;
    --re-style-topbar-height: 30px;
    --re-style-header-height: 72px;
    --re-style-fixed-offset: calc(var(--re-style-topbar-height) + var(--re-style-header-height));
    --re-style-radius: 8px;
    --re-style-shell-padding: 80px;
    --primary-font: var(--re-style-font-primary);
    --secondary-font: var(--re-style-font-secondary);
    --font-clr: var(--re-style-color-text);
    --font-sm: 12px;
    --font-md: 14px;
    --font-lg: 16px;
    --border-clr: var(--re-style-color-border);
    --icon-clr: var(--re-style-color-muted);
    --fixed-offset: var(--re-style-fixed-offset);
    --bg-clr: var(--re-style-color-background);
    --secondary-clr: var(--re-style-color-surface);
    --contrast-clr: var(--re-style-color-accent);
    --btn-bg: var(--re-style-color-text);
    --btn-bg-hover: #C2A870;
    --btn-clr: var(--re-style-color-text);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: var(--re-style-fixed-offset);
    background: var(--re-style-color-background);
    color: var(--re-style-color-text);
    font-family: var(--re-style-font-secondary);
    font-size: var(--re-style-font-size-body);
    line-height: 1.6;
}

p,
ul,
ol,
blockquote {
    margin-block: 0 1.2em;
}

a {
    color: inherit;
    text-underline-offset: 0.16em;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.archive-title,
.page-title,
.site-branding__link {
    margin: 0 0 0.5em;
    font-family: var(--re-style-font-primary);
    line-height: 1.05;
}

h1 {
    font-size: clamp(40px, 5vw, var(--re-style-font-size-display));
}

h2 {
    font-size: clamp(32px, 4vw, var(--re-style-font-size-heading));
}

h3 {
    font-size: var(--re-style-font-size-title);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--re-style-color-accent);
    outline-offset: 3px;
}

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

.screen-reader-text:focus {
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    margin: 0;
    clip: auto;
    background: var(--re-style-color-text);
    color: var(--re-style-color-background);
    z-index: 10000;
}

.site {
    min-height: 100vh;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--re-style-topbar-height);
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--re-style-color-text);
    color: var(--re-style-color-accent);
    font-family: var(--re-style-font-primary);
    font-size: var(--re-style-font-size-label);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.topbar__track {
    display: flex;
    align-items: center;
    gap: 160px;
    white-space: nowrap;
    animation: re-style-marquee 20s linear infinite;
    will-change: transform;
}

.topbar__group {
    display: flex;
    align-items: center;
    gap: 160px;
    flex-shrink: 0;
}

.site-header {
    position: fixed;
    top: var(--re-style-topbar-height);
    left: 0;
    z-index: 999;
    width: 100%;
    height: var(--re-style-header-height);
    background: var(--re-style-color-accent);
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.site-main,
.site-footer {
    width: min(100% - (var(--re-style-space-gutter) * 2), var(--re-style-content-width));
    margin: 0 auto;
}

.site-header__inner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-left: var(--re-style-shell-padding);
    padding-right: var(--re-style-shell-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-logo {
    width: auto;
    height: 40px;
    max-height: 40px;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    margin: 0;
    line-height: 0;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-branding__link {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-size: var(--re-style-font-size-title);
    font-weight: 400;
    line-height: 0;
    text-decoration: none;
}

.site-branding__logo {
    display: block;
    width: auto;
    height: 40px;
    max-height: 40px;
}

.site-branding img {
    width: auto;
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.site-header__mobile-controls,
.site-header__mobile-account-link {
    display: none;
}

.site-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--re-style-color-text);
    cursor: pointer;
}

.site-header__menu-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.main-navigation {
    min-width: 0;
    margin: auto;
}

.main-navigation .menu,
.main-navigation .sub-menu,
.footer-navigation .menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.primary-menu > .menu-item {
    position: relative;
}

.primary-menu a {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    color: var(--re-style-color-text);
    font-family: var(--re-style-font-primary);
    font-size: var(--re-style-font-size-body);
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.primary-menu > .menu-item > a:hover,
.primary-menu > .menu-item > a:focus-visible {
    opacity: 0.75;
}

.primary-menu > .menu-item > a:active {
    transform: scale(0.98);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-shrink: 0;
}

.site-header__actions-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__action-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    color: var(--re-style-color-text);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__action-link:hover {
    opacity: 0.75;
    transform: translateY(-1px);
}

.site-header__action-link:active {
    transform: scale(0.98);
}

.site-header__action-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
}

.site-header__action-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.site-header__mobile-controls {
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.site-header__mobile-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--re-style-color-text);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__mobile-icon-link:hover {
    opacity: 0.75;
    transform: translateY(-1px);
}

.site-header__mobile-icon-link:active {
    transform: scale(0.98);
}

.site-header__mobile-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
}

.site-header__mobile-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.site-header__cart-badge {
    position: absolute;
    top: -6px;
    right: -7.2px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--font-clr);
    color: var(--bg-clr);
    font-family: var(--re-style-font-primary);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    opacity: 0;
    transform: scale(0.75);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__cart-badge.is-visible {
    opacity: 1;
    transform: scale(1);
}

.site-header__mobile-account-link {
    width: 100%;
    padding: 8px 0;
    color: var(--re-style-color-text);
    font-family: var(--re-style-font-primary);
    font-size: var(--re-style-font-size-body);
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__mobile-account-link:hover,
.site-header__mobile-account-link:focus-visible {
    opacity: 0.75;
}

.site-header__mobile-account-link:active {
    transform: scale(0.98);
}

.primary-menu .menu-item-has-children > a::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c1c1c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(0.32px);
    transition: transform 0.2s ease;
}

.primary-menu .menu-item-has-children:hover > a::after,
.primary-menu .menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
}

.primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: auto;
    z-index: 20;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    background: var(--re-style-color-surface);
    border: 1px solid var(--re-style-color-border);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-menu .sub-menu li {
    width: 100%;
}

.primary-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    min-height: 0;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
    background: var(--re-style-color-accent);
    color: var(--re-style-color-text);
    opacity: 1;
    transform: none;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-menu .current-menu-item > a {
    font-weight: 600;
}

.site-main {
    padding: var(--re-style-space-section) 0;
}

.content-list {
    display: grid;
    gap: calc(var(--re-style-space-stack) * 1.333);
}

.entry-card,
.entry-page,
.no-results,
.error-404 {
    padding: calc(var(--re-style-space-stack) * 1.25);
    background: var(--re-style-color-surface);
    border: 1px solid var(--re-style-color-border);
    border-radius: calc(var(--re-style-radius) * 1.5);
}

.entry-header {
    margin-bottom: 16px;
}

.entry-title {
    line-height: 1.15;
}

.entry-meta {
    color: rgba(28, 28, 28, 0.72);
    font-size: 14px;
}

.archive-header,
.page-header {
    margin-bottom: calc(var(--re-style-space-stack) * 1.333);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-field,
.search-submit {
    min-height: 44px;
    padding: 12px 16px;
    border: 1px solid var(--re-style-color-border);
    border-radius: var(--re-style-radius);
}

.search-field {
    min-width: min(100%, 320px);
    background: #fff;
}

.search-submit {
    background: var(--re-style-color-text);
    color: var(--re-style-color-accent);
    cursor: pointer;
}

.re-style-page-label {
    display: inline-block;
    margin-bottom: 14px;
    color: rgba(28, 28, 28, 0.6);
    font-family: var(--re-style-font-primary);
    font-size: var(--re-style-font-size-label);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.re-style-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.re-style-page-btn {
    min-width: 176px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: calc(var(--re-style-radius) * 1.25);
    border: 1px solid var(--re-style-color-border);
    font-family: var(--re-style-font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.re-style-page-btn:hover {
    transform: translateY(-1px);
}

.re-style-page-btn--primary {
    background: var(--re-style-color-text);
    border-color: var(--re-style-color-text);
    color: var(--re-style-color-accent);
}

.re-style-page-btn--primary:hover {
    background: var(--re-style-color-accent);
    border-color: var(--re-style-color-accent);
    color: var(--re-style-color-text);
}

.re-style-page-btn--secondary {
    background: transparent;
    color: var(--re-style-color-text);
}

.re-style-page-btn--secondary:hover {
    background: #fff;
    border-color: var(--re-style-color-accent);
}

.site-main--404 {
    width: min(100% - (var(--re-style-space-gutter) * 2), min(1600px, var(--re-style-content-width)));
    min-height: calc(100vh - var(--re-style-topbar-height) - var(--re-style-header-height));
    display: flex;
    align-items: center;
}

.re-style-404-shell {
    width: 100%;
    min-height: min(672px, calc(100vh - var(--re-style-topbar-height) - var(--re-style-header-height) - 48px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 4vw, 64px);
    background:
        radial-gradient(circle at top left, rgba(208, 185, 133, 0.2), transparent 448px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(240, 234, 219, 0.9));
}

.re-style-404-copy {
    width: min(100%, 768px);
    display: grid;
    gap: 24px;
    text-align: center;
    justify-items: center;
}

.re-style-404-code {
    margin: 0;
    font-family: var(--re-style-font-primary);
    font-size: clamp(80px, 14vw, 144px);
    font-weight: 700;
    line-height: 0.9;
    color: rgba(28, 28, 28, 0.09);
}

.re-style-404-header {
    margin-bottom: 0;
}

.re-style-404-header .page-title {
    margin-bottom: 0;
    font-size: clamp(36px, 5vw, 64px);
}

.re-style-404-content {
    width: 100%;
    display: grid;
    gap: 24px;
    justify-items: center;
}

.re-style-404-content > p {
    max-width: 672px;
    margin: 0;
    font-size: var(--re-style-font-size-lead);
}

body.re-style-wishlist-page .entry-page {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.re-style-wishlist-page .entry-content {
    display: grid;
    gap: 0;
}

body.re-style-wishlist-page #mio-wishlist-page {
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-title {
    margin: 0 0 32px !important;
    color: var(--font-clr) !important;
    text-align: left !important;
    font-family: var(--primary-font) !important;
    font-size: clamp(36px, 4vw, 56px) !important;
    line-height: 1.02;
    text-transform: none;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item {
    position: relative;
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    align-items: stretch;
    min-height: 184px;
    border: 1px solid var(--border-clr);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item:hover {
    transform: translateY(-2px);
    border-color: var(--contrast-clr);
    box-shadow: 0 12px 26px rgba(28, 28, 28, 0.06);
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(180deg, rgba(240, 234, 219, 0.58), rgba(255, 255, 255, 0.92));
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-image {
    width: 100%;
    height: 112px;
    object-fit: contain;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 18px 18px 16px;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-main {
    display: grid;
    gap: 12px;
    min-width: 0;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-name {
    margin: 0;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-name a {
    color: var(--font-clr);
    text-decoration: none;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-price {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: baseline;
    color: var(--font-clr);
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 700;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-price .price-label {
    display: none;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-price del {
    color: var(--icon-clr);
    opacity: 0.72;
    text-decoration: line-through;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-price ins {
    background: transparent;
    color: #c64c4c;
    text-decoration: none;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-remove,
body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-cart {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid var(--border-clr);
    border-radius: 999px;
    background: #fff !important;
    color: var(--font-clr);
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-remove svg,
body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-cart svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-remove {
    color: var(--font-clr);
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-cart {
    color: #111;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-remove:hover,
body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-cart:hover {
    border-color: var(--contrast-clr);
    background: var(--contrast-clr) !important;
    color: #fff;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-cart--disabled {
    opacity: 0.32;
    cursor: default;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-status {
    grid-column: 1 / -1;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: var(--contrast-clr);
    color: #fff;
    font-family: var(--primary-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-empty {
    padding: 24px 0 0;
    text-align: left;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-empty p {
    margin-bottom: 20px;
    color: rgba(28, 28, 28, 0.78);
    font-family: var(--secondary-font);
    font-size: 18px;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-empty .button {
    min-width: 200px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--btn-bg) !important;
    color: var(--contrast-clr) !important;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

body.re-style-wishlist-page #mio-wishlist-page .wishlist-empty .button:hover {
    background: var(--btn-bg-hover) !important;
    color: var(--font-clr) !important;
}

@media (max-width: 900px) {
    body.re-style-wishlist-page #mio-wishlist-page .wishlist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.re-style-wishlist-page #mio-wishlist-page .wishlist-title {
        margin-bottom: 24px !important;
        font-size: clamp(28px, 9vw, 30px) !important;
    }

    body.re-style-wishlist-page #mio-wishlist-page .wishlist-item {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 0;
    }

    body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-media {
        padding: 14px;
    }

    body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-image {
        height: 92px;
    }

    body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-content {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    body.re-style-wishlist-page #mio-wishlist-page .wishlist-item-actions {
        justify-content: flex-start;
        padding-top: 0;
    }
}

.site-footer {
    width: auto;
    min-height: calc(100vh - var(--fixed-offset));
    margin: 0;
    padding-top: 60px;
    padding-right: var(--re-style-shell-padding);
    padding-bottom: 0;
    padding-left: var(--re-style-shell-padding);
    display: grid;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.site-footer-inner {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 0;
}

.footer-grid {
    align-self: end;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    align-items: start;
    width: 100%;
    gap: 0;
    border-top: 1px solid var(--border-clr);
    padding-top: 56px;
    padding-bottom: 56px;
}

.footer-col {
    min-width: 0;
}

.footer-col:nth-child(1) {
    justify-self: start;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3) {
    justify-self: center;
}

.footer-col:nth-child(4) {
    justify-self: end;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: var(--font-clr);
    font-family: var(--secondary-font);
    font-size: var(--font-sm);
    line-height: 1.3;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-menu a:hover {
    opacity: 0.7;
}

.footer-navigation {
    width: 100%;
}

.footer-col__title {
    margin: 0 0 14px;
}

.footer-col__title > a.section-label {
    display: inline-block;
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--icon-clr);
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col__title > a.section-label:hover {
    opacity: 1;
    color: var(--font-clr);
}

.footer-col__title > .section-label {
    display: inline-block;
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--icon-clr);
    line-height: 1.2;
}

.footer-bottom {
    margin: 0;
    border-top: 1px solid var(--border-clr);
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: var(--font-sm);
    color: var(--icon-clr);
}

.footer-bottom span {
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--font-clr);
    animation: ocPulse 2.8s ease-in-out infinite;
}

body.re-style-front-page .site-footer {
    min-height: calc(100vh - var(--fixed-offset));
}

body.re-style-front-page .site-footer-inner {
    grid-template-rows: 1fr auto;
}

body.re-style-front-page .footer-grid {
    padding-top: 35px;
    padding-bottom: 35px;
}

body.re-style-front-page .footer-bottom {
    text-align: center;
}

body.re-style-front-page .footer-bottom p {
}

body.re-style-front-page .footer-bottom span {
}

@keyframes ocPulse {
    0%, 100% {
        opacity: 0.75;
        text-shadow: 0 0 0 rgba(208, 185, 133, 0);
        transform: scale(1);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(208, 185, 133, 0.22);
        transform: scale(1.015);
    }
}

@keyframes re-style-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    :root {
        --re-style-shell-padding: 32px;
    }

    .topbar__track,
    .topbar__group {
        gap: 80px;
    }

    .site-header__inner {
        gap: 16px;
    }

    .main-navigation {
        margin-left: 20px;
        margin-right: 20px;
    }

    .primary-menu {
        gap: 16px;
    }

    .primary-menu a {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    :root {
        --re-style-space-section: 48px;
    }

    .topbar {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .site-header__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .custom-logo,
    .site-branding__logo {
        height: 34px;
    }

    .main-navigation {
        margin-left: 12px;
        margin-right: 12px;
    }

    .primary-menu {
        gap: 12px;
    }

    .primary-menu a {
        font-size: 14px;
    }

    .site-header__actions {
        gap: 12px;
        margin-left: 12px;
    }

    .site-header__action-icon {
        width: 20px;
        height: 20px;
    }

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

    .site-footer,
    body.re-style-front-page .site-footer {
        padding-bottom: 32px;
    }
}

@media (max-width: 782px) {
    :root {
        --re-style-mobile-main-padding: 20px;
    }

    body {
        padding-top: 0;
    }

    .site-main {
        width: min(100% - (var(--re-style-mobile-main-padding) * 2), var(--re-style-content-width));
    }

    .site-main.site-main--front-page {
        padding-right: var(--re-style-mobile-main-padding);
        padding-left: var(--re-style-mobile-main-padding);
    }

    .topbar,
    .site-header {
        position: static;
        height: auto;
    }

    .topbar {
        padding: 8px 0;
        font-size: 10px;
    }

    .topbar__track,
    .topbar__group {
        gap: 48px;
    }

    .site-header__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: min(100% - (var(--re-style-space-gutter) * 2), var(--re-style-content-width));
        margin: 0 auto;
        align-items: center;
        gap: 5px;
        padding-left: 0;
        padding-right: 0;
        padding: 16px 0;
    }

    .site-branding {
        min-width: 0;
        width: auto;
        justify-content: flex-start;
    }

    .site-header__mobile-controls {
        display: inline-grid;
        grid-auto-flow: column;
        align-items: center;
        gap: 4px;
        justify-self: end;
    }

    .site-header__menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(28, 28, 28, 0.16);
        border-radius: 8px;
        margin-left: 6px;
    }

    .site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-header__actions {
        display: none;
    }

    .site-header.is-menu-open .site-header__actions {
        display: none;
    }

    .main-navigation {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
    }

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

    .primary-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 4px;
        padding-top: 4px;
    }

    .site-header__mobile-account-link {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 6px;
        padding-top: 14px;
        border-top: 1px solid rgba(28, 28, 28, 0.12);
    }

    .primary-menu a {
        width: 100%;
        justify-content: space-between;
        padding: 8px 0;
    }

    .primary-menu .sub-menu {
        position: static;
        min-width: 100%;
        margin-bottom: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
    }

    .primary-menu .menu-item-has-children:hover > .sub-menu,
    .primary-menu .menu-item-has-children:focus-within > .sub-menu {
        display: grid;
    }

    .site-header__actions {
        margin-left: 0;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-bottom,
    body.re-style-front-page .footer-bottom {
        text-align: left;
    }

    body.re-style-front-page .site-footer {
        padding-top: 40px;
        padding-right: var(--re-style-shell-padding);
        padding-left: var(--re-style-shell-padding);
        padding-bottom: 24px;
        min-height: auto;
        overflow: visible;
    }

    body.re-style-front-page .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    body.re-style-front-page .site-footer-inner {
        grid-template-rows: auto auto;
    }

    body.re-style-front-page .footer-col,
    body.re-style-front-page .footer-col:nth-child(1),
    body.re-style-front-page .footer-col:nth-child(2),
    body.re-style-front-page .footer-col:nth-child(3),
    body.re-style-front-page .footer-col:nth-child(4) {
        justify-self: stretch;
    }

    body.re-style-front-page .footer-col__title {
        margin-bottom: 14px;
    }

    body.re-style-front-page .footer-col ul {
        gap: 10px;
    }

    .site-main--404 {
        min-height: auto;
        align-items: stretch;
    }

    .re-style-404-shell {
        min-height: auto;
        padding: 32px 20px;
    }

    .re-style-404-copy {
        justify-items: stretch;
        text-align: left;
    }

    .re-style-404-content {
        justify-items: stretch;
    }

    .re-style-page-actions {
        flex-direction: column;
    }

    .re-style-page-btn {
        width: 100%;
    }
}
