@font-face {
    font-family: "Abar FaNum VF";
    src:
        url("../fonts/AbarFaNum-VF.woff2") format("woff2"),
        url("../fonts/AbarFaNum-VF.woff") format("woff");
    font-weight: 100 950;
    font-style: normal;
    font-display: swap;
}

:root {
    --hiras-wine: #540816;
    --hiras-wine-dark: #450812;
    --hiras-red: #ee2835;
    --hiras-ink: #303030;
    --hiras-muted: #4a4a4a;
    --hiras-paper: #f2f2f2;
    --hiras-beige: #eadbc8;
    --hiras-white: #fff;
    --hiras-page: 1344px;
    --hiras-font: "Abar FaNum VF", "IRANYekanX", Tahoma, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--hiras-ink);
    background: var(--hiras-paper);
    font-family: var(--hiras-font);
    direction: rtl;
    text-rendering: optimizeLegibility;
}

body.hiras-menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

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

.hiras-skip-link:focus {
    z-index: 10000;
    top: 8px;
    right: 8px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    clip: auto;
    color: #fff;
    background: var(--hiras-wine);
}

.hiras-header {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    height: 72px;
    padding: 0 48px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    direction: ltr;
}

.hiras-header__actions {
    display: flex;
    grid-column: 1;
    justify-self: start;
    align-items: center;
    gap: 21px;
}

.hiras-header__logo {
    grid-column: 2;
    justify-self: center;
    width: 114px;
    height: 42px;
}

.hiras-header__logo img,
.hiras-icon-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hiras-header__menu-button {
    grid-column: 3;
    justify-self: end;
}

.hiras-icon-button {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    place-items: center;
}

.hiras-header__menu-button {
    width: 24px;
    height: 24px;
}

.home .hiras-header--overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(29px);
    -webkit-backdrop-filter: blur(29px);
    box-shadow: none;
    border-bottom: 0;
    will-change: background-color, backdrop-filter;
}

.home .hiras-header--overlay .hiras-header__logo {
    opacity: 0;
    visibility: hidden;
}

.home .hiras-search {
    position: fixed;
}

.hiras-home-intro {
    position: relative;
    height: min(810px, 100svh);
    overflow: hidden;
}

.hiras-home-intro__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hiras-home-intro__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 35;
    width: 665px;
    height: 246px;
    transform: translate(-50%, -50%);
    will-change: top, width, height, transform;
}

.hiras-home-intro__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hiras-home-intro__logo.is-floating {
    position: fixed;
    z-index: 45;
    margin: 0;
}

.home .hiras-header--overlay .hiras-header__actions,
.home .hiras-header--overlay .hiras-header__menu-button {
    position: relative;
    z-index: 46;
}

.hiras-drawer {
    position: fixed;
    z-index: 100;
    inset: 0 0 0 auto;
    width: min(430px, 100%);
    padding: 68px 48px;
    color: var(--hiras-wine);
    background: #fff;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .12);
    transform: translateX(105%);
    transition: transform .35s ease;
}

.hiras-drawer[aria-hidden="false"] {
    transform: translateX(0);
}

.hiras-drawer__close {
    position: absolute;
    top: 22px;
    left: 26px;
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.hiras-drawer ul {
    display: grid;
    gap: 25px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hiras-drawer a {
    font-size: 22px;
    font-weight: 500;
}

.hiras-search {
    position: absolute;
    z-index: 25;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 24px 48px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
}

.hiras-search form {
    display: flex;
    max-width: 760px;
    margin: auto;
}

.hiras-search input {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #ddd;
}

.hiras-search button {
    min-width: 100px;
    border: 0;
    color: #fff;
    background: var(--hiras-wine);
}

.hiras-home {
    overflow: hidden;
}

.hiras-hero {
    overflow: hidden;
    background: var(--hiras-paper);
}

.hiras-hero__stage {
    position: relative;
    width: min(1440px, 100%);
    height: 738px;
    margin: 0 auto;
}

.hiras-hero__panel {
    position: absolute;
    overflow: hidden;
}

.hiras-hero__panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleY(-1);
}

.hiras-hero__panel--left {
    top: 76px;
    left: -5.833%;
    width: 50.972%;
    height: 382px;
    background: var(--hiras-beige);
}

.hiras-hero__panel--left img {
    object-position: 50% 55%;
}

.hiras-hero__panel--right {
    top: 270px;
    right: -15.486%;
    width: 58.264%;
    height: 438px;
    background: var(--hiras-beige);
}

.hiras-hero__panel--right img {
    object-position: 50% 45%;
}

.hiras-hero__copy {
    position: absolute;
    z-index: 5;
    top: 266px;
    left: 50%;
    width: 67.778%;
    max-width: 976px;
    transform: translateX(-50%);
    pointer-events: none;
}

.hiras-hero__copy h1 {
    margin: 0;
    color: #540816;
    font-family: var(--hiras-font);
    font-size: clamp(28px, 5.556vw, 80px);
    font-weight: 700;
    font-variation-settings: "wght" 700, "CNTR" 100;
    line-height: 1.8;
    text-align: center;
    direction: rtl;
    text-decoration: none;
    border: 0;
    outline: none;
    white-space: nowrap;
}

.hiras-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: var(--hiras-page);
    margin: 0 auto;
    direction: ltr;
}

.hiras-feature-card {
    position: relative;
    height: 784px;
    overflow: hidden;
    color: #fff;
    direction: rtl;
}

.hiras-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.hiras-feature-card:hover img {
    transform: scale(1.025);
}

.hiras-feature-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(20, 11, 12, .22) 100%);
    pointer-events: none;
}

.hiras-feature-card--category .hiras-feature-card__shade {
    background: linear-gradient(180deg, transparent 40%, rgba(20, 11, 12, .12) 100%);
}

.hiras-feature-card__content {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: max-content;
    max-width: calc(100% - 48px);
    transform: translate(-50%, -50%);
    text-align: center;
}

.hiras-feature-card strong {
    margin: 0;
    font-family: var(--hiras-font);
    font-size: 36px;
    font-weight: 500;
    font-variation-settings: "wght" 500, "CNTR" 100;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.hiras-feature-card--category strong {
    color: var(--hiras-wine);
}

.hiras-feature-card--collection strong {
    color: var(--hiras-paper);
}

.hiras-feature-card__cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 146px;
    height: 49px;
    padding: 0 24px;
    border: 1px solid rgba(242, 242, 242, .92);
    background-color: rgba(84, 8, 22, .08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-variation-settings: "wght" 500, "CNTR" 0;
    line-height: 1;
    white-space: nowrap;
}

.hiras-collections {
    max-width: var(--hiras-page);
    padding: 62px 0 0;
    margin: 0 auto;
}

.hiras-section-heading {
    margin-bottom: 39px;
    text-align: center;
}

.hiras-section-heading h2 {
    margin: 0 0 4px;
    color: var(--hiras-ink);
    font-size: 36px;
    font-weight: 500;
}

.hiras-section-heading p {
    margin: 0;
    color: var(--hiras-muted);
    font-size: 18px;
}

.hiras-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    direction: ltr;
}

.hiras-collection-card {
    position: relative;
    height: 455px;
    overflow: hidden;
    direction: rtl;
}

.hiras-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.hiras-collection-card__overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 78.3%);
    transition: opacity .35s ease;
    pointer-events: none;
}

.hiras-collection-card__content {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 34px;
    left: 24px;
    display: grid;
    justify-items: center;
    gap: 16px;
    opacity: 0;
    color: #fff;
    text-align: center;
    transition: opacity .35s ease;
    pointer-events: none;
}

.hiras-collection-card__content strong {
    font-size: 22px;
    font-weight: 600;
    font-variation-settings: "wght" 600, "CNTR" 100;
    line-height: 1.8;
}

.hiras-collection-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 273px;
    height: 40px;
    border: 1px solid rgba(242, 242, 242, .92);
    background-color: rgba(84, 8, 22, .08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-variation-settings: "wght" 500, "CNTR" 0;
    line-height: 1;
}

.hiras-collection-card:hover img,
.hiras-collection-card:focus-within img {
    transform: scale(1.035);
}

.hiras-collection-card:hover .hiras-collection-card__overlay,
.hiras-collection-card:hover .hiras-collection-card__content,
.hiras-collection-card:focus-within .hiras-collection-card__overlay,
.hiras-collection-card:focus-within .hiras-collection-card__content {
    opacity: 1;
}

.hiras-story {
    position: relative;
    min-height: 623px;
    margin-top: 217px;
    overflow: hidden;
}

.hiras-story > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiras-story::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(255, 250, 241, .08) 0%, rgba(255, 251, 243, .42) 52%, rgba(255, 251, 243, .72) 100%);
    pointer-events: none;
}

.hiras-story__content {
    position: absolute;
    top: 55.05%;
    left: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(1069px, 78.4%);
    transform: translateX(-50%);
    direction: rtl;
}

.hiras-story__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hiras-story h2 {
    margin: 0;
    color: var(--hiras-muted);
    font-family: var(--hiras-font);
    font-size: 36px;
    font-weight: 500;
    font-variation-settings: "wght" 500, "CNTR" 100;
    line-height: 1;
    letter-spacing: 0;
    text-align: right;
}

.hiras-story p {
    margin: 0;
    color: var(--hiras-muted);
    font-family: var(--hiras-font);
    font-size: 18px;
    font-weight: 400;
    font-variation-settings: "wght" 400, "CNTR" 100;
    line-height: 1.8;
    letter-spacing: 0;
    text-align: right;
}

.hiras-story__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 174px;
    height: 40px;
    padding: 12px;
    border: 1px solid rgba(242, 242, 242, .72);
    background-color: rgba(84, 8, 22, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--hiras-muted);
    font-family: var(--hiras-font);
    font-size: 14px;
    font-weight: 500;
    font-variation-settings: "wght" 500, "CNTR" 0;
    line-height: 1;
    white-space: nowrap;
}

.hiras-packaging {
    position: relative;
    width: min(1225px, 92%);
    min-height: 680px;
    margin: 36px auto 0;
}

.hiras-packaging > img {
    position: absolute;
    z-index: 2;
    top: 89px;
    left: 50%;
    width: 664px;
    height: 591px;
    object-fit: contain;
    transform: translateX(-50%);
}

.hiras-packaging__note {
    position: absolute;
    z-index: 3;
    width: 276px;
    padding: 20px 22px;
    background: var(--hiras-beige);
}

.hiras-packaging__note h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
}

.hiras-packaging__note p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.hiras-packaging__note--texture {
    top: 16px;
    right: 135px;
}

.hiras-packaging__note--structure {
    top: 280px;
    left: 32px;
}

.hiras-packaging__note--mark {
    right: 0;
    bottom: 47px;
}

.hiras-values {
    padding: 71px 24px 203px;
    text-align: center;
}

.hiras-values h2 {
    margin: 0 0 23px;
    font-size: 36px;
    font-weight: 500;
}

.hiras-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 244px);
    justify-content: center;
    gap: 21px;
}

.hiras-values article {
    display: grid;
    min-height: 280px;
    padding: 44px 16px 30px;
    background: var(--hiras-beige);
    place-items: start center;
}

.hiras-value-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.hiras-values p {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.8;
}

.hiras-footer {
    background: #fff;
    border-top: 1px solid rgba(84, 8, 22, .12);
}

.hiras-footer__grid {
    display: grid;
    grid-template-columns: 384px 95px 164px 73px 396px;
    justify-content: space-between;
    gap: 32px;
    width: min(1342px, calc(100% - 96px));
    min-height: 298px;
    padding: 52px 0 34px;
    margin: auto;
    direction: ltr;
}

.hiras-footer h2 {
    margin: 0 0 10px;
    color: var(--hiras-wine);
    font-family: var(--hiras-font);
    font-size: 22px;
    font-weight: 600;
    font-variation-settings: "wght" 600, "CNTR" 0;
    line-height: 1;
    letter-spacing: 0;
    text-align: right;
}

.hiras-footer p,
.hiras-footer a,
.hiras-newsletter input,
.hiras-newsletter button {
    font-family: var(--hiras-font);
    font-size: 14px;
    line-height: 1.8;
}

.hiras-footer__newsletter,
.hiras-footer__column,
.hiras-footer__social {
    direction: rtl;
}

.hiras-footer__newsletter h2 {
    white-space: nowrap;
}

.hiras-footer__newsletter p,
.hiras-footer__social p {
    margin: 0 0 18px;
    color: var(--hiras-muted);
    font-weight: 400;
    font-variation-settings: "wght" 400, "CNTR" 0;
    text-align: right;
}

.hiras-footer__column a {
    color: var(--hiras-ink);
    font-weight: 500;
    font-variation-settings: "wght" 500, "CNTR" 0;
    text-decoration: none;
    text-align: right;
}

.hiras-footer__column a:hover {
    color: var(--hiras-wine);
}

.hiras-newsletter {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    width: 100%;
    max-width: 384px;
    height: 48px;
    direction: ltr;
}

.hiras-newsletter input {
    min-width: 0;
    padding: 0 16px;
    border: 1px solid rgba(74, 74, 74, .5);
    border-right: 0;
    color: var(--hiras-muted);
    background: #fff;
    font-size: 12px;
    font-weight: 400;
    font-variation-settings: "wght" 400, "CNTR" 0;
    direction: rtl;
    text-align: right;
}

.hiras-newsletter input::placeholder {
    color: rgba(74, 74, 74, .72);
}

.hiras-newsletter button {
    border: 0;
    color: var(--hiras-paper);
    background: var(--hiras-wine);
    font-size: 12px;
    font-weight: 500;
    font-variation-settings: "wght" 500, "CNTR" 0;
    cursor: pointer;
}

.hiras-footer__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hiras-footer__logo {
    display: block;
    width: 114px;
    height: 42px;
    margin: 0 0 18px auto;
    object-fit: contain;
}

.hiras-socials {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.hiras-socials img {
    width: 24px;
    height: 24px;
}

.hiras-footer__copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 41px;
    border-top: 1px solid rgba(84, 8, 22, .08);
    color: var(--hiras-muted);
    font-size: 12px;
    font-weight: 400;
    font-variation-settings: "wght" 400, "CNTR" 0;
}

.hiras-content {
    width: min(100% - 48px, 1100px);
    min-height: 60vh;
    padding: 80px 0;
    margin: auto;
}

.hiras-entry {
    line-height: 2;
}

.hiras-archive {
    padding: 0 0 120px;
    margin: 0;
    width: 100%;
    background: #fff;
}

body.woocommerce-shop,
body.tax-product_cat,
body.single-product {
    background: #fff;
}

.hiras-archive__inner {
    width: min(var(--hiras-page), calc(100% - 96px));
    margin: 0 auto;
}

.hiras-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--hiras-muted);
    font-size: 14px;
}

.hiras-breadcrumb a:hover {
    color: var(--hiras-wine);
}

.hiras-archive__hero {
    position: relative;
    width: 100%;
    max-height: none;
    margin: 0 0 28px;
    overflow: hidden;
    aspect-ratio: 1440 / 696;
    background: #1a1a1a;
}

.hiras-archive__hero > img,
.hiras-archive__hero-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hiras-archive__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 72px;
    height: 72px;
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 78%);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.hiras-archive__play:hover {
    transform: scale(1.05);
    background: #fff;
}

.hiras-archive__play-icon {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--hiras-wine);
    transform: translateX(3px);
}

.hiras-archive__hero-play {
    position: absolute;
    inset: 0;
    width: 72px;
    height: 72px;
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 72%) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23540816'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/28px no-repeat;
    cursor: pointer;
}

.hiras-archive__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    position: relative;
}

.hiras-archive__filter-toggle,
.hiras-archive__sort-toggle,
.hiras-archive__view-all {
    padding: 0;
    border: 0;
    color: var(--hiras-muted);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
}

.hiras-archive__view-all {
    display: none;
}

.hiras-archive__sort-panel,
.hiras-archive__filters {
    position: absolute;
    z-index: 12;
    top: calc(100% + 8px);
    left: 0;
    min-width: min(320px, 88vw);
    max-height: 70vh;
    padding: 20px;
    overflow: auto;
    background: #fff;
    border: 1px solid #e7e7e7;
    box-shadow: 0 12px 32px rgb(0 0 0 / 8%);
}

.hiras-archive__filters {
    position: fixed;
    inset: auto 24px 24px auto;
    right: 24px;
    left: auto;
    top: auto;
    width: min(360px, calc(100vw - 48px));
}

.hiras-archive__sort-panel .woocommerce-ordering {
    margin: 0;
}

.hiras-archive__sort-panel select,
.hiras-archive__filters select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
}

.hiras-archive__layout {
    display: block;
}

.hiras-archive__results {
    width: 100%;
    position: relative;
}

.hiras-archive__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.hiras-archive__media img,
.hiras-archive__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hiras-archive__media--span-2 {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.hiras-archive__banner {
    position: relative;
    width: 100%;
    margin: 28px 0 0;
    overflow: hidden;
    aspect-ratio: 21 / 8;
    background: #111;
}

.hiras-archive__break {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.hiras-archive__break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiras-archive__break--tile {
    aspect-ratio: 1;
}

.hiras-archive__break--banner {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 7;
    margin-block: 8px;
}

.hiras-product-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f1ea 0%, #e8dfd3 100%);
}

.hiras-product-card__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.hiras-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.hiras-product-card:hover .hiras-product-card__media img {
    transform: scale(1.04);
}

.hiras-product-card .hiras-wishlist-toggle {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 0;
    color: #fff;
    background: rgb(0 0 0 / 28%);
    opacity: 0;
    transition: opacity .25s ease;
}

.hiras-product-card:hover .hiras-wishlist-toggle,
.hiras-product-card .hiras-wishlist-toggle.is-active {
    opacity: 1;
}

.hiras-product-card__overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 8px;
    padding: 28px 16px 16px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 78%) 55%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
}

.hiras-product-card:hover .hiras-product-card__overlay,
.hiras-product-card:focus-within .hiras-product-card__overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hiras-product-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.hiras-product-card__title a {
    color: #fff;
}

.hiras-product-card__price {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.hiras-product-card__price .woocommerce-Price-amount,
.hiras-product-card__price del,
.hiras-product-card__price ins {
    color: inherit;
    text-decoration: none;
    background: transparent;
}

.hiras-product-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.hiras-product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    color: #fff;
    background: rgb(0 0 0 / 72%);
    font-size: 13px;
    font-weight: 600;
}

.hiras-product-card__cart {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--hiras-wine);
}

.hiras-product-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    margin-top: 24px;
}

.hiras-product-page__summary {
    display: grid;
    gap: 18px;
    order: 1;
}

.hiras-product-page__gallery {
    order: 2;
}

.hiras-product-page__summary .product_title {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.35;
}

.hiras-product-page__tags,
.hiras-product-page__sku {
    margin: 0;
    color: var(--hiras-muted);
    font-size: 14px;
    line-height: 1.8;
}

.hiras-product-page__tags span {
    color: var(--hiras-ink);
    font-weight: 600;
}

.hiras-product-page__summary .price {
    margin: 0;
    color: var(--hiras-wine);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
}

.hiras-product-page__description {
    color: var(--hiras-muted);
    font-size: 15px;
    line-height: 2;
}

.hiras-product-page__buy {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.hiras-product-page__buy form.cart {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.hiras-product-page__buy .quantity {
    display: none;
}

.hiras-product-page__buy .single_add_to_cart_button,
.hiras-product-page .button,
.hiras-product-page button.button,
.hiras-product-page a.button {
    flex: 1;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 0;
    color: #fff !important;
    background: var(--hiras-wine) !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 52px;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease;
}

.hiras-product-page__buy .single_add_to_cart_button:hover,
.hiras-product-page .button:hover {
    background: var(--hiras-wine-dark) !important;
}

.hiras-product-page__gallery .woocommerce-product-gallery {
    position: relative;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.hiras-product-page__gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.hiras-product-page__gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(180deg, #f7f1ea 0%, #ece3d8 100%);
}

.hiras-product-page__gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.hiras-product-page__gallery .flex-control-thumbs li {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.hiras-product-page__gallery .flex-control-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    opacity: .72;
    border: 1px solid transparent;
}

.hiras-product-page__gallery .flex-control-thumbs .flex-active {
    opacity: 1;
    border-color: var(--hiras-wine);
}

.hiras-product-page__below {
    margin-top: 64px;
}

.hiras-product-accordions {
    display: grid;
    gap: 0;
    border-top: 1px solid #e7e7e7;
}

.hiras-product-accordion {
    border-bottom: 1px solid #e7e7e7;
}

.hiras-product-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: var(--hiras-ink);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.hiras-product-accordion summary::-webkit-details-marker {
    display: none;
}

.hiras-product-accordion summary::after {
    color: var(--hiras-muted);
    content: "+";
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.hiras-product-accordion[open] summary::after {
    content: "−";
}

.hiras-product-accordion__body {
    padding: 0 0 24px;
    color: var(--hiras-muted);
    font-size: 15px;
    line-height: 2;
}

.hiras-product-accordion__body .shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.hiras-product-accordion__body .shop_attributes th,
.hiras-product-accordion__body .shop_attributes td {
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    text-align: right;
}

.hiras-product-page__below .related.products {
    margin-top: 72px;
}

.hiras-product-page__below .related.products > h2 {
    margin: 0 0 32px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    text-align: center;
}

.hiras-product-page__below .related.products .products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.hiras-product-page .woocommerce-product-gallery__trigger {
    display: none;
}

.hiras-product-page .woocommerce-notices-wrapper:empty {
    display: none;
}

.hiras-archive__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 28px;
}

.hiras-archive__header h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
}

.hiras-archive__sort {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.hiras-archive__sort-toggle {
    padding: 0;
    border: 0;
    color: var(--hiras-muted);
    background: transparent;
    cursor: pointer;
}

@media (min-width: 901px) {
    .hiras-archive__filter-toggle {
        display: none;
    }

    .hiras-archive__view-all {
        display: inline;
    }
}

.hiras-product-page__summary .product_title {
    color: var(--hiras-wine);
}

.hiras-product-grid,
.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hiras-product-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f1ea 0%, #e8dfd3 100%);
}

.hiras-product-card__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.hiras-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.hiras-product-card:hover .hiras-product-card__media img {
    transform: scale(1.04);
}

.hiras-product-card__body {
    display: none;
}

.hiras-product-card__body h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.hiras-product-card__price {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.hiras-product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    color: #fff;
    background: rgb(0 0 0 / 72%);
    font-size: 13px;
    font-weight: 600;
    border: 0;
}

.hiras-product-card__brand {
    display: none;
}

.hiras-archive__layout {
    display: block;
}

.hiras-filter-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e7e7e7;
}

.hiras-filter-block h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.hiras-filter-block ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hiras-filter-block li {
    margin-bottom: 8px;
    font-size: 14px;
}

.hiras-filter-block label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hiras-story-page {
    background: #fff;
    overflow: hidden;
}

.hiras-story-page__hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 696;
    min-height: 420px;
    overflow: hidden;
    background: #1a1a1a;
}

.hiras-story-page__hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiras-story-page__watermark {
    position: absolute;
    inset-inline: 0;
    top: 50%;
    z-index: 1;
    margin: 0;
    color: rgb(255 255 255 / 22%);
    font-size: clamp(72px, 14vw, 180px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.04em;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    transform: translateY(-50%);
}

.hiras-story-page__watermark--inline {
    position: static;
    display: block;
    margin: 0 0 24px;
    color: rgb(84 8 22 / 12%);
    font-size: clamp(64px, 10vw, 140px);
    text-align: right;
    transform: none;
    white-space: normal;
}

.hiras-story-page__watermark--section {
    position: static;
    display: block;
    margin: 0 auto 48px;
    color: rgb(84 8 22 / 10%);
    font-size: clamp(72px, 12vw, 160px);
    text-align: center;
    transform: none;
}

.hiras-story-page__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 72px;
    height: 72px;
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 78%);
    cursor: pointer;
}

.hiras-story-page__play span {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--hiras-wine);
    transform: translateX(3px);
}

.hiras-story-page__intro {
    width: min(720px, calc(100% - 64px));
    padding: 88px 0 64px;
    margin: 0 auto;
    text-align: center;
}

.hiras-story-page__intro h1 {
    margin: 0 0 24px;
    color: var(--hiras-ink);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    line-height: 1.45;
}

.hiras-story-page__intro p {
    margin: 0;
    color: var(--hiras-muted);
    font-size: 16px;
    line-height: 2;
}

.hiras-story-page__roots {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    width: min(var(--hiras-page), calc(100% - 96px));
    padding: 40px 0 96px;
    margin: 0 auto;
}

.hiras-story-page__roots-copy p:last-child {
    margin: 0;
    max-width: 360px;
    color: var(--hiras-muted);
    font-size: 15px;
    line-height: 2;
}

.hiras-story-page__collage {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    grid-template-rows: 160px 120px 200px;
    gap: 12px;
    min-height: 420px;
}

.hiras-story-page__collage-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eee;
}

.hiras-story-page__collage-item--a {
    grid-column: 1;
    grid-row: 1 / 3;
}

.hiras-story-page__collage-item--b {
    grid-column: 2;
    grid-row: 1;
}

.hiras-story-page__collage-item--c {
    grid-column: 3;
    grid-row: 1 / 3;
}

.hiras-story-page__collage-item--d {
    grid-column: 2;
    grid-row: 2 / 4;
}

.hiras-story-page__collage-item--e {
    grid-column: 1;
    grid-row: 3;
}

.hiras-story-page__creation {
    padding: 24px 0 0;
}

.hiras-story-page__band {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 414px;
    overflow: hidden;
    background: #111;
}

.hiras-story-page__band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
}

.hiras-story-page__band h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 24px;
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    text-shadow: 0 2px 24px rgb(0 0 0 / 35%);
}

.hiras-story-page__meaning {
    width: min(720px, calc(100% - 64px));
    padding: 96px 0 48px;
    margin: 0 auto;
    text-align: center;
}

.hiras-story-page__meaning-text {
    margin: 0 auto;
    max-width: 520px;
    color: var(--hiras-muted);
    font-size: 16px;
    line-height: 2.1;
}

.hiras-story-page__closing {
    display: grid;
    gap: 28px;
    justify-items: center;
    padding: 48px 24px 120px;
    text-align: center;
    background: #fff;
}

.hiras-story-page__closing h2 {
    margin: 0;
    color: var(--hiras-ink);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
}

.hiras-story-page__cta {
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    color: var(--hiras-ink);
    font-size: 14px;
    font-weight: 500;
}

/* Story / Packaging — Figma 342:320 */
.hiras-packaging-page__intro {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #fff;
}

.hiras-packaging-page__intro > img {
    position: absolute;
    top: 72px;
    left: 50%;
    width: min(664px, 72vw);
    height: auto;
    object-fit: contain;
    transform: translateX(-50%);
}

.hiras-packaging-page__intro-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    width: min(720px, 90%);
    padding: 520px 48px 72px;
    margin: 0 auto;
    text-align: center;
}

.hiras-packaging-page__intro-copy h1 {
    margin: 0;
    color: var(--hiras-wine);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.45;
}

.hiras-packaging-page__intro-copy p {
    margin: 0;
    font-size: 20px;
    line-height: 1.9;
}

.hiras-packaging-page__statement {
    display: flex;
    justify-content: space-between;
    max-width: var(--hiras-page);
    padding: 0 48px 24px;
    margin: 0 auto;
    color: rgba(84, 8, 22, .08);
    font-size: clamp(120px, 18vw, 315px);
    font-weight: 800;
    line-height: .85;
    pointer-events: none;
    user-select: none;
}

.hiras-packaging-page__unbox {
    padding: 48px 0 64px;
    text-align: center;
}

.hiras-packaging-page__unbox h2 {
    margin: 0 0 28px;
    color: var(--hiras-wine);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
}

.hiras-packaging-page__gallery {
    display: flex;
    gap: 12px;
    padding: 0 48px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.hiras-packaging-page__gallery figure {
    flex: 0 0 min(72vw, 720px);
    margin: 0;
    scroll-snap-align: center;
}

.hiras-packaging-page__gallery img {
    width: 100%;
    height: min(42vw, 485px);
    object-fit: cover;
}

.hiras-packaging-page__dream {
    padding: 56px 24px;
    text-align: center;
}

.hiras-packaging-page__dream h2 {
    margin: 0;
    color: var(--hiras-wine);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
}

.hiras-packaging-page__details {
    max-width: var(--hiras-page);
    padding: 0 48px 72px;
    margin: 0 auto;
}

.hiras-packaging-page__details-head {
    margin-bottom: 32px;
    text-align: center;
}

.hiras-packaging-page__details-head h2 {
    margin: 0 0 10px;
    color: var(--hiras-wine);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
}

.hiras-packaging-page__details-head p {
    margin: 0;
    font-size: clamp(120px, 14vw, 250px);
    font-weight: 800;
    line-height: 1;
    color: rgba(84, 8, 22, .12);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hiras-packaging-page__details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hiras-packaging-page__details-grid article {
    display: grid;
    gap: 16px;
    text-align: center;
}

.hiras-packaging-page__details-grid img {
    width: 100%;
    min-height: 420px;
    object-fit: contain;
    background: #fff;
}

.hiras-packaging-page__details-grid p {
    margin: 0;
    font-size: 24px;
    line-height: 1.8;
}

.hiras-packaging-page__details-grid a {
    justify-self: center;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 500;
}

.hiras-packaging-page__forever {
    padding: 48px 48px 72px;
    background: var(--hiras-paper);
}

.hiras-packaging-page__forever-words {
    display: flex;
    justify-content: space-between;
    max-width: var(--hiras-page);
    margin: 0 auto 24px;
    color: rgba(84, 8, 22, .1);
    font-size: clamp(120px, 14vw, 250px);
    font-weight: 800;
    line-height: .9;
    pointer-events: none;
}

.hiras-packaging-page__forever-body {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    align-items: center;
    max-width: var(--hiras-page);
    margin: 0 auto;
}

.hiras-packaging-page__forever-body img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hiras-packaging-page__forever-body h2 {
    margin: 0 0 14px;
    color: var(--hiras-wine);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
}

.hiras-packaging-page__forever-body p {
    margin: 0;
    font-size: 20px;
    line-height: 1.9;
}

.hiras-packaging-page__closing {
    padding: 88px 24px 120px;
    text-align: center;
    background: var(--hiras-beige);
}

.hiras-packaging-page__closing-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 500;
}

.hiras-packaging-page__closing h2 {
    margin: 0 0 18px;
    color: var(--hiras-wine);
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 700;
}

.hiras-packaging-page__cta {
    display: inline-block;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Us — Figma 343:493 */
.hiras-contact-page__hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.hiras-contact-page__hero-media {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hiras-contact-page__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiras-contact-page__hero-img--left {
    object-position: center left;
}

.hiras-contact-page__hero-img--right {
    object-position: center right;
}

.hiras-contact-page__hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiras-contact-page__hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(255, 250, 241, .2), rgba(255, 251, 243, .88));
}

.hiras-contact-page__hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    width: min(548px, 90%);
    min-height: 420px;
    padding: 72px 48px;
    place-content: center;
}

.hiras-contact-page__hero-copy h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
}

.hiras-contact-page__hero-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
}

.hiras-contact-page__note {
    font-size: 12px !important;
    color: var(--hiras-muted);
}

.hiras-contact-page__grid {
    display: grid;
    grid-template-columns: minmax(280px, 548px) minmax(320px, 773px);
    justify-content: center;
    gap: 32px;
    max-width: var(--hiras-page);
    padding: 48px 48px 120px;
    margin: 0 auto;
}

.hiras-contact-page__info {
    display: grid;
    gap: 16px;
}

.hiras-contact-page__card {
    padding: 24px 28px;
    background: #fff;
    border: 1px solid #ececec;
}

.hiras-contact-page__card h2 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 600;
}

.hiras-contact-page__block + .hiras-contact-page__block {
    margin-top: 16px;
}

.hiras-contact-page__block h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 400;
}

.hiras-contact-page__block p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
}

.hiras-contact-page__block a {
    color: var(--hiras-wine);
}

.hiras-contact-page__social .hiras-socials {
    margin-top: 4px;
}

.hiras-contact-page__form-wrap {
    padding: 32px 36px 40px;
    background: #fff;
    border: 1px solid #ececec;
}

.hiras-contact-page__form-wrap > h2 {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 600;
}

.hiras-contact-form {
    display: grid;
    gap: 18px;
}

.hiras-contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hiras-contact-form label {
    display: grid;
    gap: 8px;
}

.hiras-contact-form label span {
    font-size: 12px;
    font-weight: 500;
}

.hiras-contact-form input,
.hiras-contact-form select,
.hiras-contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    color: var(--hiras-ink);
    background: #fff;
}

.hiras-contact-form textarea {
    min-height: 140px;
    padding: 12px 14px;
    resize: vertical;
}

.hiras-contact-form input::placeholder,
.hiras-contact-form textarea::placeholder {
    color: #999;
    font-size: 12px;
}

.hiras-contact-form button {
    justify-self: start;
    min-width: 140px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    color: #fff;
    background: var(--hiras-wine);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.hiras-contact-form button[disabled] {
    opacity: .7;
    cursor: wait;
}

.hiras-form-message {
    margin: 0 0 16px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.8;
}

.hiras-form-message.is-success {
    color: #2e7d32;
    background: #e8f5e9;
}

.hiras-form-message.is-error {
    color: #c62828;
    background: #ffebee;
}

.hiras-search-form {
    display: flex;
    max-width: 760px;
    margin: auto;
}

.hiras-search-form input {
    flex: 1;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #ddd;
}

.hiras-search-form button {
    min-width: 100px;
    border: 0;
    color: #fff;
    background: var(--hiras-wine);
    cursor: pointer;
}

.hiras-account {
    display: grid;
    direction: rtl;
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-areas: "nav content";
    gap: 32px;
    align-items: start;
    width: min(var(--hiras-page), calc(100% - 96px));
    padding: 48px 0 120px;
    margin: 0 auto;
}

.hiras-account::before,
.hiras-account::after {
    display: none !important;
    content: none !important;
}

.hiras-account__nav {
    grid-area: nav;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

.hiras-account__content {
    grid-area: content;
    min-width: 0;
}

.woocommerce-account .hiras-account .woocommerce-MyAccount-navigation {
    float: none !important;
    clear: none !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
}

.woocommerce-account .hiras-account .woocommerce-MyAccount-content {
    float: none !important;
    clear: none !important;
    width: auto !important;
    max-width: none !important;
}

body.woocommerce-account.logged-in .hiras-account {
    display: grid !important;
}

body.woocommerce-account.logged-in .hiras-entry > h1,
body.woocommerce-account.logged-in .page-title,
body.woocommerce-account.logged-in .entry-title {
    display: none;
}

.hiras-account__nav {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #ececec;
}

.hiras-account__nav-title {
    margin: 0 0 20px;
    color: var(--hiras-wine);
    font-size: 22px;
    font-weight: 600;
}

.hiras-account__balance {
    display: grid;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ececec;
}

.hiras-account__balance span {
    color: var(--hiras-muted);
    font-size: 13px;
}

.hiras-account__balance strong {
    color: var(--hiras-wine);
    font-size: 22px;
    font-weight: 600;
}

.hiras-account__balance small {
    color: var(--hiras-muted);
    font-size: 12px;
    line-height: 1.6;
}

.hiras-account-profile__head h2,
.hiras-account-treasury__head h2,
.hiras-account-wishlist__head h2,
.hiras-account-installments__head h2,
.hiras-account-addresses__head h2,
.hiras-account-address-form__head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 600;
    color: var(--hiras-wine);
}

.hiras-account-profile__head p,
.hiras-account-treasury__head p,
.hiras-account-wishlist__head p,
.hiras-account-installments__head p,
.hiras-account-addresses__head p,
.hiras-account-address-form__head p {
    margin: 0 0 28px;
    color: var(--hiras-muted);
    line-height: 1.8;
}

.hiras-account-profile__note {
    margin-top: -16px;
    margin-bottom: 28px;
    color: var(--hiras-muted);
    font-size: 14px;
    line-height: 1.8;
}

.hiras-account-form__grid--profile {
    grid-template-columns: 1fr;
}

.hiras-account-treasury__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.hiras-account-treasury__grams,
.hiras-account-treasury__value {
    display: grid;
    gap: 8px;
    padding: 24px;
    background: #fff;
    border: 1px solid #ececec;
}

.hiras-account-treasury__grams strong,
.hiras-account-treasury__value strong {
    color: var(--hiras-wine);
    font-size: 28px;
    font-weight: 600;
}

.hiras-account-treasury__grams span,
.hiras-account-treasury__value span,
.hiras-account-treasury__value small {
    color: var(--hiras-muted);
    font-size: 13px;
    line-height: 1.7;
}

.hiras-treasury-form__hint {
    margin: 0 0 16px;
    color: var(--hiras-muted);
    font-size: 13px;
    line-height: 1.8;
}

.hiras-account-treasury__profile {
    margin-bottom: 28px;
    padding: 24px;
    background: #fff;
    border: 1px solid #ececec;
}

.hiras-account-treasury__profile h3,
.hiras-account-treasury__history h3 {
    margin: 0 0 16px;
    color: var(--hiras-wine);
    font-size: 18px;
    font-weight: 600;
}

.hiras-account-treasury__profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    margin: 0;
}

.hiras-account-treasury__profile-grid dt {
    margin: 0 0 6px;
    color: var(--hiras-muted);
    font-size: 13px;
    font-weight: 500;
}

.hiras-account-treasury__profile-grid dd {
    margin: 0;
    color: var(--hiras-ink);
    font-size: 14px;
    line-height: 1.8;
}

.hiras-account-form__grid--profile .form-row-wide input[readonly],
#account_phone {
    color: var(--hiras-muted);
    background: #f7f7f7;
}

.hiras-account-treasury__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hiras-account-treasury__actions .button--outline {
    color: var(--hiras-wine);
    background: #fff;
    border: 1px solid var(--hiras-wine);
}

.hiras-account__nav ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hiras-account__nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 2px;
    color: var(--hiras-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.hiras-account__nav li.is-active a,
.hiras-account__nav a:hover {
    color: var(--hiras-wine);
    background: var(--hiras-beige);
}

.hiras-account__nav li.is-active a {
    box-shadow: inset -3px 0 0 var(--hiras-wine);
}

.hiras-account-tabs {
    display: none;
    grid-area: tabs;
    grid-column: 1 / -1;
    gap: 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #ececec;
}

.hiras-account-tabs__link {
    flex: 1;
    padding: 14px 10px;
    color: var(--hiras-muted);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.hiras-account-tabs__link.is-active {
    color: var(--hiras-wine);
    box-shadow: inset 0 -2px 0 var(--hiras-wine);
}

.hiras-account__content {
    padding: 32px;
    background: #fff;
    border: 1px solid #ececec;
    min-width: 0;
}

.hiras-account-orders__head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 600;
    color: var(--hiras-wine);
}

.hiras-account-orders__head p {
    margin: 0 0 28px;
    color: var(--hiras-muted);
    font-size: 14px;
    line-height: 1.8;
}

.hiras-account-orders__table-wrap {
    overflow-x: auto;
}

.hiras-account-orders__table {
    width: 100%;
    border-collapse: collapse;
}

.hiras-account-orders__table th,
.hiras-account-orders__table td {
    padding: 16px 12px;
    border-bottom: 1px solid #eee;
    text-align: right;
    font-size: 14px;
}

.hiras-account-orders__table th {
    color: var(--hiras-wine);
    font-weight: 600;
    background: #ececec;
}

.hiras-account-orders__cards {
    display: none;
    gap: 16px;
}

.hiras-order-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #ececec;
}

.hiras-order-card__head {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.hiras-order-card__head strong {
    color: var(--hiras-wine);
    font-size: 18px;
}

.hiras-order-card__meta {
    display: grid;
    gap: 12px;
    margin: 0 0 20px;
}

.hiras-order-card__meta div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
}

.hiras-order-card__meta dt {
    margin: 0;
    color: var(--hiras-muted);
    font-size: 13px;
}

.hiras-order-card__meta dd {
    margin: 0;
    font-size: 14px;
}

.hiras-order-card__action {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: #fff !important;
    background: var(--hiras-wine);
    text-align: center;
    font-size: 14px;
}

.hiras-account-orders__table a {
    color: var(--hiras-wine);
    font-weight: 500;
}

.hiras-order-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--hiras-beige);
    color: var(--hiras-wine);
    font-size: 12px;
    font-weight: 500;
}

.hiras-order-status--completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.hiras-order-status--processing {
    background: #fff3e0;
    color: #e65100;
}

.hiras-order-status--cancelled,
.hiras-order-status--failed {
    background: #ffebee;
    color: #c62828;
}

.hiras-account-orders__action {
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
}

.hiras-account-orders__empty {
    display: grid;
    gap: 16px;
    padding: 32px;
    background: #fafafa;
    text-align: center;
}

.hiras-account-orders__shop-link {
    justify-self: center;
    min-width: 140px;
    padding: 12px 20px;
    color: #fff !important;
    background: var(--hiras-wine);
    font-size: 14px;
}

.hiras-account-orders__pagination {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
}

.hiras-order-view__head h2 {
    margin: 8px 0;
    font-size: 28px;
}

.hiras-order-view__meta {
    color: var(--hiras-muted);
    font-size: 14px;
}

.hiras-order-view__table,
.hiras-order-view address {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
}

.hiras-order-view__table th,
.hiras-order-view__table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.hiras-account-addresses__grid,
.hiras-about-page__values,
.hiras-branches-page__grid,
.hiras-blog-archive__grid {
    display: grid;
    gap: 24px;
}

.hiras-account-addresses__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hiras-account-addresses__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.hiras-account-addresses__card-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--hiras-wine);
}

.hiras-account-addresses__card-head .edit {
    color: var(--hiras-wine);
    font-size: 14px;
    font-weight: 500;
}

.hiras-account-address-form__back {
    margin: 0 0 12px;
}

.hiras-account-address-form__back a {
    color: var(--hiras-muted);
    font-size: 14px;
}

.hiras-account-address-form__head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 600;
    color: var(--hiras-wine);
}

.hiras-account-address-form__head p {
    margin: 0 0 28px;
    color: var(--hiras-muted);
    line-height: 1.8;
}

.hiras-account-address-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hiras-account-address-form__fields .form-row-wide,
.hiras-account-address-form__fields #billing_address_1_field,
.hiras-account-address-form__fields #shipping_address_1_field,
.hiras-account-address-form__fields #billing_address_2_field,
.hiras-account-address-form__fields #shipping_address_2_field,
.hiras-account-address-form__fields #billing_country_field,
.hiras-account-address-form__fields #shipping_country_field,
.hiras-account-address-form__fields #billing_state_field,
.hiras-account-address-form__fields #shipping_state_field {
    grid-column: 1 / -1;
}

.woocommerce-account .hiras-account-address-form__fields .form-row {
    float: none !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
    clear: none !important;
}

.woocommerce-account .hiras-account-address-form__fields label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce-account .hiras-account-address-form__fields .woocommerce-input-wrapper,
.woocommerce-account .hiras-account-address-form__fields input,
.woocommerce-account .hiras-account-address-form__fields select,
.woocommerce-account .hiras-account-address-form__fields textarea {
    width: 100%;
}

.hiras-account-addresses__card,
.hiras-branches-page__card {
    padding: 24px;
    background: #fafafa;
    border: 1px solid #ececec;
}

.hiras-account-form input,
.hiras-auth__form input,
.hiras-checkout-page input,
.hiras-checkout-page select,
.hiras-checkout-page textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    background: #fff;
}

.hiras-account-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hiras-account-form__password {
    margin-top: 24px;
    padding: 0;
    border: 0;
}

.hiras-account-form button,
.hiras-auth__submit,
.hiras-cart-page .checkout-button,
.hiras-checkout-page #place_order {
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    color: #fff;
    background: var(--hiras-wine);
    cursor: pointer;
}

.hiras-about-page__hero,
.hiras-branches-page__head {
    position: relative;
}

.hiras-about-page__hero {
    min-height: 420px;
}

.hiras-about-page__hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiras-about-page__hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    min-height: 420px;
    padding: 48px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
}

.hiras-about-page__intro,
.hiras-about-page__values,
.hiras-about-page__cta,
.hiras-branches-page__head,
.hiras-branches-page__grid,
.hiras-branches-page__cta {
    width: min(var(--hiras-page), calc(100% - 96px));
    margin: 0 auto;
    padding: 48px 0;
}

.hiras-about-page__values {
    grid-template-columns: repeat(3, 1fr);
}

.hiras-about-page__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hiras-about-page__links a {
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
}

.hiras-branches-page__card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: center;
}

.hiras-branches-page__card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hiras-product-page {
    width: min(var(--hiras-page), calc(100% - 96px));
    padding: 32px 0 96px;
    margin: 0 auto;
}

.hiras-product-page__brand {
    color: var(--hiras-wine);
    font-size: 14px;
    font-weight: 600;
}

.hiras-product-page__summary .price {
    color: var(--hiras-wine);
    font-size: 24px;
    font-weight: 600;
}

.hiras-auth {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: calc(100vh - 72px - 280px);
    padding: 64px 24px 96px;
    background: var(--hiras-paper);
}

body.hiras-auth-page .hiras-shop {
    background: var(--hiras-paper);
}

body.hiras-auth-page .hiras-shop,
body.hiras-auth-page .hiras-content {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 0;
    margin: 0;
}

body.hiras-auth-page .hiras-entry > h1 {
    display: none;
}

body.hiras-auth-page .hiras-entry .woocommerce {
    width: 100%;
}

body.hiras-auth-page .woocommerce .hiras-auth__terms {
    width: 100%;
}

body.hiras-auth-page:not(.logged-in) .hiras-account,
body.hiras-auth-page:not(.logged-in) .woocommerce-MyAccount-content {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
}

body.hiras-auth-page .entry-title,
body.hiras-auth-page .page-title,
body.hiras-auth-page .woocommerce-MyAccount-content > h1,
body.hiras-auth-page .woocommerce-MyAccount-content > h2:not([class]) {
    display: none;
}

.hiras-auth__panel {
    width: min(500px, 100%);
    padding: 40px 32px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.hiras-auth__title,
.hiras-auth__panel h2 {
    margin: 0 0 8px;
    color: #4a4a4a;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.hiras-auth__lead {
    margin: 0 0 24px;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.hiras-auth__form {
    display: grid;
    gap: 16px;
}

.hiras-auth__card-body {
    display: grid;
    gap: 16px;
}

@media (min-width: 701px) {
    .hiras-auth__form {
        display: grid;
        gap: 16px;
    }

    .hiras-auth__card-body {
        display: contents;
    }
}

.hiras-auth__field {
    display: grid;
    gap: 8px;
}

.hiras-auth__label,
.hiras-auth__field span {
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.hiras-auth__input,
.hiras-auth__form input[type="tel"],
.hiras-auth__form input[type="text"],
.hiras-auth__form input[type="email"] {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgb(74 74 74 / 50%);
    border-radius: 0;
    background: #fff;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    transition: border-color .2s ease;
}

.hiras-auth__input:focus,
.hiras-auth__form input:focus {
    outline: none;
    border-color: #4a4a4a;
}

.hiras-auth__input::placeholder,
.hiras-auth__form input::placeholder {
    color: #4a4a4a;
    opacity: .5;
}

.hiras-auth__terms {
    position: relative;
    display: block;
    margin: 0;
    padding-right: 14px;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    cursor: pointer;
}

.hiras-auth__terms input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hiras-auth__terms::before {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 6px;
    height: 6px;
    border: 1px solid #4a4a4a;
    border-radius: 50%;
    background: transparent;
}

.hiras-auth__terms:has(input:checked)::before {
    background: #4a4a4a;
}

.hiras-auth__terms span {
    display: block;
}

.hiras-auth__terms a {
    color: #4a4a4a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hiras-auth__submit {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 24px;
    border: 0;
    color: #fff;
    background: var(--hiras-wine);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}

.hiras-auth__submit:hover {
    background: var(--hiras-wine-dark);
}

.hiras-auth__submit:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.hiras-auth__phone {
    font-weight: 600;
}

.hiras-auth__form--otp {
    gap: 16px;
}

.hiras-auth__otp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hiras-auth__edit-phone {
    min-height: auto;
    padding: 0;
    border: 0;
    background: none;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hiras-auth__edit-phone:hover {
    color: var(--hiras-wine);
}

.hiras-auth__otp-boxes {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 500px;
    height: 48px;
}

.hiras-auth__otp-digit {
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid rgb(74 74 74 / 50%);
    border-radius: 0;
    background: #fff;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    transition: border-color .2s ease;
}

.hiras-auth__otp-digit:focus {
    outline: none;
    border-color: #4a4a4a;
}

.hiras-auth__otp-digit::placeholder {
    color: rgb(74 74 74 / 35%);
}

.hiras-auth__resend {
    margin: 0;
    text-align: center;
}

.hiras-auth__resend-btn {
    display: inline-block;
    min-height: auto;
    padding: 0;
    border: 0;
    background: none;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: color .2s ease;
}

.hiras-auth__resend-btn:hover:not(:disabled) {
    color: var(--hiras-wine);
}

.hiras-auth__resend-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.hiras-auth__form--otp .hiras-auth__submit {
    margin-top: 0;
}

.hiras-auth__message.is-error {
    margin: 0;
    color: #b00020;
    font-size: 13px;
}

.hiras-auth__message.is-success {
    margin: 0;
    color: #1b7f4a;
    font-size: 13px;
}

.hiras-legal-page {
    width: min(760px, calc(100% - 48px));
    padding: 64px 0 96px;
    margin: 0 auto;
}

.hiras-legal-page h1 {
    margin: 0 0 24px;
    color: var(--hiras-wine);
    font-size: 32px;
    font-weight: 600;
}

.hiras-legal-page h2 {
    margin: 32px 0 12px;
    color: #303030;
    font-size: 20px;
    font-weight: 600;
}

.hiras-legal-page p,
.hiras-legal-page li {
    color: #4a4a4a;
    line-height: 1.9;
}

.hiras-legal-page ul {
    padding-right: 20px;
}

.hiras-agency-page__form {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.hiras-cart-page,
.hiras-checkout-page,
.hiras-edit-address {
    width: min(var(--hiras-page), calc(100% - 96px));
    padding: 32px 0 96px;
    margin: 0 auto;
}

.hiras-checkout-steps ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.hiras-checkout-steps__item span,
.hiras-checkout-steps__item a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    color: #666;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.hiras-checkout-steps__item.is-current span,
.hiras-checkout-steps__item.is-current a {
    color: #fff;
    border-color: var(--hiras-wine);
    background: var(--hiras-wine);
}

.hiras-checkout-steps__item.is-done a {
    color: var(--hiras-wine);
    border-color: var(--hiras-wine);
}

.hiras-checkout-steps__sep {
    width: 24px;
    height: 1px;
    background: #ddd;
}

.hiras-cart-page__layout,
.hiras-checkout-page__layout,
.hiras-edit-address__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.hiras-cart-page__title,
.hiras-checkout-panel__head h1,
.hiras-edit-address__head h1 {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 600;
    color: var(--hiras-wine);
}

.hiras-cart-items {
    display: grid;
    gap: 24px;
}

.hiras-cart-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    border: 1px solid #ececec;
    background: #fff;
}

.hiras-cart-item__media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hiras-cart-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.hiras-cart-item__name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.hiras-cart-item__remove {
    font-size: 24px;
    line-height: 1;
    color: #999;
    text-decoration: none;
}

.hiras-cart-item__meta,
.hiras-cart-item__code {
    margin: 8px 0 0;
    color: #666;
    line-height: 1.8;
}

.hiras-cart-item__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.hiras-cart-item__price {
    margin: 0;
    font-weight: 600;
}

.hiras-cart-cross-sells {
    margin-top: 48px;
}

.hiras-cart-cross-sells h2 {
    margin: 0 0 24px;
    font-size: 22px;
    color: var(--hiras-wine);
}

.hiras-order-summary {
    position: sticky;
    top: 96px;
    padding: 24px;
    border: 1px solid #ececec;
    background: #fff;
}

.hiras-order-summary__title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 600;
}

.hiras-order-summary__rows {
    margin: 0;
}

.hiras-order-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hiras-order-summary__row dt,
.hiras-order-summary__row dd {
    margin: 0;
}

.hiras-order-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
    font-weight: 600;
}

.hiras-order-summary__button,
.hiras-checkout-panel__next,
.hiras-checkout-panel__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 24px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: var(--hiras-wine);
    border: 0;
    cursor: pointer;
}

.hiras-checkout-panel__back {
    color: var(--hiras-wine);
    background: #fff;
    border: 1px solid var(--hiras-wine);
}

.hiras-checkout-panel:not(.is-active) {
    display: none;
}

.hiras-checkout-panel__head h1,
.hiras-checkout-addresses__head h2,
.hiras-checkout-shipping__head h2,
.hiras-checkout-payment__head h2 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
}

.hiras-checkout-addresses__head p,
.hiras-checkout-shipping__head p,
.hiras-checkout-payment__head p {
    margin: 0 0 24px;
    color: #666;
}

.hiras-address-card {
    position: relative;
    margin-bottom: 16px;
    padding: 20px;
    border: 1px solid #ececec;
    background: #fff;
}

.hiras-address-card.is-selected {
    border-color: var(--hiras-wine);
}

.hiras-address-card--add {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    color: var(--hiras-wine);
    text-decoration: none;
    border-style: dashed;
}

.hiras-address-card__actions {
    position: absolute;
    top: 16px;
    left: 16px;
}

.hiras-address-card__actions a {
    color: var(--hiras-wine);
    text-decoration: none;
}

.hiras-address-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.hiras-address-card p {
    margin: 0;
    color: #444;
    line-height: 1.8;
}

.hiras-shipping-methods__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hiras-shipping-method {
    position: relative;
}

.hiras-shipping-method input {
    position: absolute;
    opacity: 0;
}

.hiras-shipping-method__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid #ececec;
    cursor: pointer;
}

.hiras-shipping-method input:checked + .hiras-shipping-method__label {
    border-color: var(--hiras-wine);
}

.hiras-payment-methods .wc_payment_methods {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hiras-payment-card {
    padding: 16px 20px;
    border: 1px solid #ececec;
}

.hiras-payment-card input[type="radio"]:checked + label,
.hiras-payment-card:has(input:checked) {
    border-color: var(--hiras-wine);
}

.hiras-checkout-terms {
    margin-top: 24px;
    color: #666;
    line-height: 1.8;
}

.hiras-checkout-terms a {
    color: var(--hiras-wine);
}

.hiras-checkout-page #order_review_heading,
.hiras-checkout-page .woocommerce-checkout-review-order-table,
.hiras-checkout-page .place-order .woocommerce-terms-and-conditions-wrapper {
    display: none;
}

.hiras-checkout-page .place-order {
    margin: 0;
    padding: 0;
}

.hiras-checkout-page #place_order {
    display: none;
}

.hiras-edit-address__form .form-row {
    margin-bottom: 16px;
}

.hiras-cart-page__table th,
.hiras-cart-page__table td {
    padding: 16px 12px;
    border-bottom: 1px solid #eee;
}

.hiras-blog-archive,
.hiras-blog-single {
    width: min(var(--hiras-page), calc(100% - 96px));
    padding: 48px 0 96px;
    margin: 0 auto;
}

.hiras-blog-archive__grid {
    grid-template-columns: repeat(3, 1fr);
}

.hiras-blog-card {
    display: grid;
    gap: 16px;
    background: #fff;
    border: 1px solid #ececec;
}

.hiras-blog-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hiras-blog-card__body {
    padding: 0 20px 24px;
}

.hiras-blog-single__content {
    line-height: 2;
}

@media (max-width: 1100px) and (min-width: 701px) {
    .hiras-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(100% - 64px, 1342px);
        padding-inline: 0;
    }

    .hiras-footer__newsletter,
    .hiras-footer__social {
        grid-column: span 3;
    }
}

@media (max-width: 700px) {
    .hiras-header {
        height: 48px;
        padding: 0 16px;
    }

    .hiras-header__actions {
        gap: 12px;
    }

    .hiras-header__actions .hiras-icon-button:first-child {
        width: 24px;
        height: 24px;
    }

    .hiras-header__actions [data-search-toggle] {
        display: none;
    }

    .hiras-header__logo {
        width: 95px;
        height: 35px;
    }

    .hiras-home-intro {
        height: min(852px, 100svh);
    }

    .hiras-home-intro__logo {
        width: min(358px, calc(100vw - 48px));
        height: auto;
        aspect-ratio: 665 / 246;
    }

    .hiras-search {
        top: 48px;
        padding: 14px;
    }

    .hiras-drawer {
        padding: 68px 32px;
    }

    .hiras-hero__stage {
        height: 412px;
    }

    .hiras-hero__panel--left {
        top: 0;
        left: 0;
        width: 100%;
        height: 206px;
    }

    .hiras-hero__panel--left img {
        object-position: center 65%;
    }

    .hiras-hero__panel--right {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 206px;
    }

    .hiras-hero__panel--right img {
        object-position: center 35%;
    }

    .hiras-hero__copy {
        top: 148px;
        width: calc(100% - 68px);
        max-width: none;
    }

    .hiras-hero__copy h1 {
        font-size: 28px;
        line-height: 1.79;
        white-space: normal;
    }

    .hiras-feature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 8px;
    }

    .hiras-feature-card {
        height: 432px;
    }

    .hiras-feature-card strong {
        font-size: 22px;
    }

    .hiras-feature-card__content {
        gap: 13px;
        max-width: calc(100% - 32px);
    }

    .hiras-feature-card__cta {
        min-width: 111px;
        height: 40px;
        font-size: 12px;
        background-color: rgba(84, 8, 22, .08);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .hiras-collections {
        padding: 42px 8px 0;
    }

    .hiras-section-heading {
        margin-bottom: 24px;
    }

    .hiras-section-heading h2 {
        font-size: 28px;
    }

    .hiras-section-heading p {
        max-width: 320px;
        margin: auto;
        font-size: 14px;
    }

    .hiras-collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hiras-collection-card {
        height: auto;
        aspect-ratio: 321 / 455;
    }

    .hiras-collection-card__content strong {
        font-size: 18px;
    }

    .hiras-collection-card__cta {
        height: 36px;
        font-size: 12px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .hiras-story {
        min-height: 762px;
        margin-top: 64px;
    }

    .hiras-story > img {
        object-position: 55% center;
    }

    .hiras-story::after {
        background: linear-gradient(180deg, transparent 35%, rgba(255, 250, 241, .94) 69%);
    }

    .hiras-story__content {
        top: auto;
        bottom: 62px;
        width: calc(100% - 48px);
    }

    .hiras-story h2 {
        font-size: 28px;
    }

    .hiras-story p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hiras-story__cta {
        min-width: 0;
        height: 36px;
        padding: 10px 12px;
        font-size: 12px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .hiras-packaging {
        display: flex;
        flex-direction: column;
        width: calc(100% - 32px);
        min-height: 1120px;
        padding-top: 28px;
    }

    .hiras-packaging > img {
        top: 290px;
        width: 100%;
        height: auto;
    }

    .hiras-packaging__note {
        width: 80%;
        padding: 16px;
    }

    .hiras-packaging__note h3 {
        font-size: 18px;
    }

    .hiras-packaging__note p {
        font-size: 14px;
    }

    .hiras-packaging__note--texture {
        top: 20px;
        right: 20px;
    }

    .hiras-packaging__note--structure {
        z-index: 3;
        top: 600px;
        left: 20px;
    }

    .hiras-packaging__note--mark {
        right: 20px;
        bottom: 45px;
    }

    .hiras-values {
        padding: 54px 24px 124px;
    }

    .hiras-values h2 {
        font-size: 28px;
    }

    .hiras-values__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hiras-values article {
        min-height: 210px;
        padding: 32px 28px;
    }

    .hiras-footer__grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 32px 24px;
        width: calc(100% - 48px);
        padding: 40px 0 32px;
    }

    .hiras-footer__social {
        order: 1;
        width: 100%;
    }

    .hiras-footer__column--guide {
        order: 2;
        width: calc(50% - 12px);
    }

    .hiras-footer__column--brand {
        order: 3;
        width: calc(50% - 12px);
    }

    .hiras-footer__column--rules {
        order: 4;
        width: 100%;
        padding-top: 4px;
    }

    .hiras-footer__newsletter {
        order: 5;
        width: 100%;
        padding-top: 8px;
    }

    .hiras-footer__social p {
        margin-bottom: 0;
        text-align: right;
    }

    .hiras-footer__logo {
        margin: 0 auto 16px;
    }

    .hiras-footer__social .hiras-socials {
        display: none;
    }

    .hiras-footer h2 {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .hiras-footer__column a {
        font-size: 13px;
        line-height: 2;
    }

    .hiras-footer__column--rules {
        padding-top: 4px;
    }

    .hiras-footer__newsletter {
        padding-top: 8px;
    }

    .hiras-footer__newsletter h2 {
        white-space: normal;
        font-size: 22px;
        line-height: 1.45;
        text-align: right;
    }

    .hiras-footer__newsletter p {
        font-size: 13px;
        line-height: 1.85;
    }

    .hiras-newsletter {
        max-width: none;
        height: 44px;
    }

    .hiras-footer__copyright {
        flex-wrap: wrap;
        gap: 8px 16px;
        padding: 10px 16px;
    }

    .hiras-archive {
        padding-bottom: 80px;
    }

    .hiras-archive__inner {
        width: calc(100% - 32px);
    }

    .hiras-archive__hero {
        margin-bottom: 20px;
        max-height: none;
        aspect-ratio: 4 / 5;
    }

    .hiras-archive__media--span-2 {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
    }

    .hiras-archive__banner {
        aspect-ratio: 16 / 10;
        margin-top: 16px;
    }

    .hiras-archive__play {
        width: 56px;
        height: 56px;
    }

    .hiras-archive__play-icon {
        border-width: 10px 0 10px 16px;
    }

    .hiras-archive__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hiras-archive__header h1 {
        font-size: 28px;
    }

    .hiras-archive__toolbar {
        order: 2;
        width: 100%;
        gap: 20px;
    }

    .hiras-archive__view-all {
        display: none;
    }

    .hiras-product-grid,
    .products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px;
    }

    .hiras-product-card .hiras-wishlist-toggle {
        opacity: 1;
        background: rgb(255 255 255 / 35%);
    }

    .hiras-product-card__overlay {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 24px 10px 10px;
        background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 88%) 48%);
    }

    .hiras-product-card__title {
        font-size: 13px;
    }

    .hiras-product-card__price {
        font-size: 11px;
    }

    .hiras-product-card__cta {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .hiras-product-card__cart {
        width: 30px;
        height: 30px;
    }

    .hiras-archive__break--banner {
        aspect-ratio: 16 / 10;
    }

    .hiras-archive__sort-panel,
    .hiras-archive__filters {
        position: fixed;
        inset: auto 16px 16px;
        left: 16px;
        right: 16px;
        top: auto;
        min-width: 0;
        width: auto;
    }

    .hiras-story-page__hero {
        min-height: 360px;
        aspect-ratio: 4 / 5;
    }

    .hiras-story-page__intro {
        width: calc(100% - 32px);
        padding: 56px 0 40px;
    }

    .hiras-story-page__roots {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
        gap: 32px;
        padding: 24px 0 64px;
    }

    .hiras-story-page__collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 140px 160px;
        min-height: 0;
    }

    .hiras-story-page__collage-item--a {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .hiras-story-page__collage-item--b {
        grid-column: 2;
        grid-row: 1;
    }

    .hiras-story-page__collage-item--c {
        grid-column: 2;
        grid-row: 2;
    }

    .hiras-story-page__collage-item--d {
        grid-column: 1;
        grid-row: 3;
    }

    .hiras-story-page__collage-item--e {
        grid-column: 2;
        grid-row: 3;
    }

    .hiras-story-page__band {
        min-height: 280px;
    }

    .hiras-story-page__meaning {
        width: calc(100% - 32px);
        padding: 64px 0 32px;
    }

    .hiras-story-page__closing {
        padding: 32px 16px 96px;
    }

    .hiras-packaging-page__intro {
        min-height: 560px;
    }

    .hiras-packaging-page__intro > img {
        top: 24px;
        width: min(88vw, 420px);
    }

    .hiras-packaging-page__intro-copy {
        padding: 340px 16px 48px;
    }

    .hiras-packaging-page__intro-copy p {
        font-size: 14px;
    }

    .hiras-packaging-page__statement {
        padding: 0 16px 8px;
        font-size: 72px;
    }

    .hiras-packaging-page__gallery {
        padding: 0 16px 8px;
    }

    .hiras-packaging-page__gallery figure {
        flex-basis: 88vw;
    }

    .hiras-packaging-page__details {
        padding: 0 16px 48px;
    }

    .hiras-packaging-page__details-head p {
        font-size: 48px;
        white-space: normal;
    }

    .hiras-packaging-page__details-grid {
        grid-template-columns: 1fr;
    }

    .hiras-packaging-page__details-grid img {
        min-height: 280px;
    }

    .hiras-packaging-page__details-grid p {
        font-size: 16px;
    }

    .hiras-packaging-page__forever {
        padding: 32px 16px 56px;
    }

    .hiras-packaging-page__forever-words {
        font-size: 64px;
    }

    .hiras-packaging-page__forever-body {
        grid-template-columns: 1fr;
    }

    .hiras-packaging-page__forever-body img {
        min-height: 240px;
    }

    .hiras-packaging-page__forever-body p {
        font-size: 14px;
    }

    .hiras-contact-page__hero {
        min-height: 360px;
    }

    .hiras-contact-page__hero-media {
        grid-template-columns: 1fr;
    }

    .hiras-contact-page__hero-img--right {
        display: none;
    }

    .hiras-contact-page__hero-copy {
        width: calc(100% - 32px);
        min-height: 360px;
        padding: 48px 16px;
    }

    .hiras-contact-page__hero-copy h1 {
        font-size: 22px;
    }

    .hiras-contact-page__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 16px 80px;
    }

    .hiras-contact-form__row {
        grid-template-columns: 1fr;
    }

    .hiras-contact-page__form-wrap {
        padding: 24px 20px 32px;
    }

    .hiras-product-grid,
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .hiras-account-tabs {
        display: flex;
        overflow-x: auto;
        grid-area: tabs;
        grid-row: 1;
    }

    .hiras-account {
        grid-template-columns: 1fr;
        grid-template-areas:
            "tabs"
            "content";
        width: calc(100% - 32px);
        padding-top: 24px;
    }

    .hiras-account__nav {
        display: none;
    }

    .hiras-account-orders__table-wrap {
        display: none;
    }

    .hiras-account-orders__cards {
        display: grid;
    }

    .hiras-account__content {
        grid-area: content;
        grid-row: 2;
        padding: 20px 16px;
    }

    .hiras-auth {
        display: block;
        min-height: auto;
        padding: 135px 16px 120px;
        background: #fff;
    }

    body.hiras-auth-page .hiras-auth {
        min-height: auto;
    }

    body.hiras-auth-page .hiras-shop,
    body.hiras-auth-page .hiras-content {
        background: #fff;
    }

    .hiras-auth__panel {
        width: 100%;
        max-width: 361px;
        margin: 0 auto;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .hiras-auth__form {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hiras-auth__card-body {
        gap: 20px;
        padding: 36px 24px 32px;
        background: var(--hiras-paper);
    }

    .hiras-auth__title,
    .hiras-auth__panel h2 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.35;
    }

    .hiras-auth__lead {
        margin-bottom: 4px;
        font-size: 12px;
        line-height: 1.6;
    }

    .hiras-auth__field {
        gap: 10px;
    }

    .hiras-auth__input,
    .hiras-auth__form input[type="tel"],
    .hiras-auth__form input[type="text"],
    .hiras-auth__form input[type="email"] {
        min-height: 48px;
        padding: 0 16px;
        border: 1px solid rgb(74 74 74 / 50%);
        background: #fff;
    }

    .hiras-auth__input:focus,
    .hiras-auth__form input:focus {
        border-color: #4a4a4a;
    }

    .hiras-auth__terms {
        font-size: 11px;
        line-height: 1.65;
    }

    .hiras-auth__submit {
        min-height: 52px;
        margin-top: 0;
        font-size: 13px;
    }

    .hiras-auth__form--otp {
        gap: 0;
    }

    .hiras-auth__form--otp .hiras-auth__card-body {
        gap: 20px;
    }

    .hiras-auth__otp-head {
        margin-top: 4px;
    }

    .hiras-auth__otp-boxes {
        gap: 6px;
        max-width: none;
        height: auto;
    }

    .hiras-auth__otp-digit {
        width: 100%;
        height: 44px;
        min-height: 44px;
        line-height: 44px;
    }

    .hiras-auth__form--otp .hiras-auth__submit {
        margin-top: 0;
    }

    .hiras-auth__resend {
        margin-top: 16px;
    }

    .hiras-account-orders__table thead {
        display: none;
    }

    .hiras-account-orders__table tr {
        display: grid;
        gap: 8px;
        padding: 16px 0;
    }

    .hiras-account-orders__table td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 0;
        border: 0;
    }

    .hiras-account-orders__table td::before {
        color: var(--hiras-muted);
        content: attr(data-title);
        font-weight: 500;
    }

    .hiras-about-page__values,
    .hiras-blog-archive__grid,
    .hiras-product-page__layout,
    .hiras-branches-page__card,
    .hiras-account-form__grid {
        grid-template-columns: 1fr;
    }

    .hiras-about-page__hero-copy {
        min-height: 360px;
        padding: 48px 16px;
    }

    .hiras-about-page__intro,
    .hiras-about-page__values,
    .hiras-about-page__cta,
    .hiras-branches-page__head,
    .hiras-branches-page__grid,
    .hiras-branches-page__cta,
    .hiras-product-page,
    .hiras-cart-page,
    .hiras-checkout-page,
    .hiras-edit-address,
    .hiras-blog-archive,
    .hiras-blog-single {
        width: calc(100% - 32px);
        padding-left: 0;
        padding-right: 0;
    }

    .hiras-account-addresses__grid,
    .hiras-account-address-form__fields {
        grid-template-columns: 1fr;
    }

    .hiras-cart-page__layout,
    .hiras-checkout-page__layout,
    .hiras-edit-address__layout {
        grid-template-columns: 1fr;
    }

    .hiras-order-summary {
        position: static;
    }

    .hiras-cart-item {
        grid-template-columns: 1fr;
    }

    .hiras-cart-item__foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .hiras-branches-page__card img {
        height: 180px;
    }
}

.hiras-wishlist-toggle {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #ececec;
    border-radius: 50%;
    color: var(--hiras-muted);
    background: #fff;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.hiras-wishlist-toggle.is-active {
    color: var(--hiras-wine);
    border-color: var(--hiras-wine);
    background: var(--hiras-beige);
}

.hiras-product-card__top {
    position: relative;
}

.hiras-product-card__top .hiras-wishlist-toggle {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.hiras-product-page__summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.hiras-wishlist-card {
    display: grid;
    gap: 16px;
    border: 1px solid #ececec;
    padding: 16px;
}

.hiras-wishlist-card__media img {
    width: 100%;
    height: auto;
    display: block;
}

.hiras-wishlist-card__brand {
    margin: 0;
    color: var(--hiras-wine);
    font-size: 13px;
    font-weight: 600;
}

.hiras-wishlist-card__body h3 {
    margin: 8px 0;
    font-size: 18px;
}

.hiras-wishlist-card__price {
    margin: 0 0 12px;
    color: var(--hiras-wine);
    font-weight: 600;
}

.hiras-wishlist-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hiras-wishlist-card__remove {
    padding: 10px 16px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--hiras-muted);
    cursor: pointer;
}

.hiras-account-wishlist__empty,
.hiras-account-installments__empty {
    display: grid;
    gap: 16px;
    padding: 32px;
    border: 1px dashed #ddd;
    text-align: center;
}

.hiras-account-installments__table-wrap,
.hiras-account-treasury__table-wrap {
    overflow-x: auto;
}

.hiras-account-installments__table,
.hiras-account-treasury__table {
    width: 100%;
    border-collapse: collapse;
}

.hiras-account-installments__table th,
.hiras-account-installments__table td,
.hiras-account-treasury__table th,
.hiras-account-treasury__table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eee;
    text-align: right;
    font-size: 14px;
}

.hiras-account-installments__table th,
.hiras-account-treasury__table th {
    color: var(--hiras-wine);
    background: #faf7f4;
}

.hiras-installment-status,
.hiras-treasury-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #f3f3f3;
}

.hiras-installment-status--paid,
.hiras-treasury-status--completed,
.hiras-treasury-status--approved {
    color: #1f7a4f;
    background: #e8f6ee;
}

.hiras-installment-status--overdue,
.hiras-treasury-status--rejected {
    color: #a33;
    background: #fdeeee;
}

.hiras-account-treasury__forms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.hiras-treasury-form {
    display: grid;
    gap: 12px;
    padding: 20px;
    border: 1px solid #ececec;
}

.hiras-treasury-form h3 {
    margin: 0;
    font-size: 18px;
    color: var(--hiras-wine);
}

.hiras-treasury-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: var(--hiras-muted);
}

.hiras-treasury-form input,
.hiras-treasury-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    font: inherit;
}

.hiras-treasury-form__message.is-error,
.hiras-change-phone__message.is-error {
    color: #a33;
}

.hiras-treasury-form__message.is-success,
.hiras-change-phone__message.is-success {
    color: #1f7a4f;
}

.hiras-change-phone {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #ececec;
}

.hiras-change-phone__head h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: var(--hiras-wine);
}

.hiras-change-phone__head p {
    margin: 0 0 20px;
    color: var(--hiras-muted);
}

.hiras-change-phone__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
}

.hiras-change-phone__field {
    display: grid;
    gap: 6px;
}

.hiras-change-phone__field input {
    padding: 12px 14px;
    border: 1px solid #ddd;
    font: inherit;
}

.hiras-change-phone__otp {
    margin-top: 20px;
}

.hiras-change-phone__otp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.hiras-filter-block li.is-active a {
    color: var(--hiras-wine);
    font-weight: 600;
}

.hiras-error-page,
.hiras-search-page {
    width: min(var(--hiras-page), calc(100% - 96px));
    margin: 0 auto;
    padding: 64px 0 96px;
}

.hiras-error-page__content,
.hiras-search-page__empty {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.hiras-error-page__code {
    margin: 0 0 8px;
    color: var(--hiras-wine);
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
}

.hiras-error-page__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hiras-search-page__head h1 {
    margin: 0 0 8px;
    font-size: 32px;
    color: var(--hiras-wine);
}

.hiras-search-page__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 24px 0 32px;
}

.hiras-search-page__form input {
    padding: 12px 14px;
    border: 1px solid #ddd;
    font: inherit;
}

.hiras-search-page__results {
    display: grid;
    gap: 20px;
}

.hiras-search-card {
    padding: 20px;
    border: 1px solid #ececec;
}

.hiras-search-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.hiras-search-card__type {
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 8px;
    font-size: 12px;
    color: var(--hiras-wine);
    background: var(--hiras-beige);
}

.hiras-search-card__price {
    margin: 0 0 8px;
    color: var(--hiras-wine);
    font-weight: 600;
}

.hiras-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 4px;
    color: #fff;
    transform: translateX(-50%);
}

.hiras-notice--success {
    background: #1f7a4f;
}

.hiras-notice--error {
    background: #a33;
}

@media (max-width: 900px) {
    .hiras-account-treasury__summary,
    .hiras-account-treasury__profile-grid,
    .hiras-account-treasury__forms,
    .hiras-wishlist-grid {
        grid-template-columns: 1fr;
    }

    .hiras-change-phone__grid {
        grid-template-columns: 1fr;
    }

    .hiras-archive__hero {
        margin-top: -24px;
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .hiras-archive__sort-panel,
    .hiras-archive__filters {
        position: fixed;
        inset: auto 16px 16px;
        left: 16px;
        right: 16px;
        min-width: 0;
    }

    .hiras-product-page__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hiras-product-page__gallery {
        order: 1;
    }

    .hiras-product-page__summary {
        order: 2;
    }

    .hiras-product-page__buy {
        position: sticky;
        bottom: 0;
        z-index: 20;
        padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, rgb(242 242 242 / 0), var(--hiras-paper) 28%);
    }

    .hiras-product-page__below .related.products .products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
