@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Nunito+Sans:wght@400;500;600;700&display=swap');

:root {
    --closetory-ink: #0d0d0c;
    --closetory-muted: #6f6961;
    --closetory-border: #eee9e2;
    --closetory-cream: #fbfaf8;
    --closetory-soft: #f6f4f1;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--closetory-ink);
    background: #fff;
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0;
}

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

.closetory-logo,
.closetory-home h1,
.closetory-home h2,
.closetory-home h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: 0;
    color: var(--closetory-ink);
}

.closetory-header {
    height: 76px;
    background: #fff;
    border-bottom: 1px solid #f0eee9;
    position: relative;
    z-index: 20;
}

.closetory-header__inner {
    width: min(1532px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.closetory-logo {
    display: inline-block;
    font-size: 29px;
    font-weight: 500;
    line-height: 1;
}

.closetory-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.closetory-nav a,
.closetory-actions a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.closetory-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #050505;
}

.closetory-actions i {
    font-size: 21px;
    line-height: 1;
}

.closetory-search {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.closetory-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.closetory-search-box {
    width: 340px;
    position: absolute;
    top: calc(100% + 24px);
    right: -8px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--closetory-border);
    box-shadow: 0 20px 45px rgba(18, 17, 15, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.closetory-search--open .closetory-search-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.closetory-search-form {
    height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d9d3ca;
}

.closetory-search-form input {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--closetory-ink);
    font-size: 14px;
}

.closetory-search-form input:focus {
    outline: none;
}

.closetory-search-close {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--closetory-ink);
}

.closetory-search-close i {
    font-size: 15px;
}

.closetory-search-results {
    max-height: 260px;
    margin-top: 10px;
    overflow-y: auto;
}

.closetory-menu-toggle {
    display: none;
}

.closetory-hero {
    min-height: 793px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.closetory-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: inherit;
    filter: saturate(.74) brightness(1.13);
}

.closetory-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.52) 53%, rgba(255,255,255,.95) 100%),
        linear-gradient(90deg, rgba(255,255,255,.66) 0%, rgba(255,255,255,.24) 48%, rgba(255,255,255,.46) 100%);
}

.closetory-hero__content {
    width: min(1532px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 38px;
}

.closetory-hero h1 {
    max-width: 820px;
    margin: 0 0 12px;
    font-size: clamp(55px, 4.25vw, 76px);
    font-weight: 500;
    line-height: .96;
}

.closetory-hero p {
    max-width: 680px;
    margin: 0;
    color: #0b0b0b;
    font-size: 21px;
    line-height: 1.35;
}

.closetory-hero__actions {
    display: flex;
    gap: 24px;
    margin-top: 46px;
}

.closetory-btn {
    min-width: 144px;
    height: 48px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #141412;
    border-radius: 1px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1;
    text-transform: uppercase;
}

.closetory-btn--dark {
    color: #fff;
    background: #141412;
}

.closetory-btn--light {
    color: #141412;
    background: rgba(255,255,255,.42);
}

.closetory-btn--outline {
    color: #141412;
    background: transparent;
}

.closetory-btn i {
    margin-left: 14px;
    font-size: 13px;
}

.closetory-section {
    padding: 74px 0 96px;
}

.closetory-occasions {
    border-top: 1px solid #f2f0ec;
    background: #fff;
}

.closetory-featured {
    border-top: 1px solid #f2f0ec;
    background: #fff;
}

.closetory-home-blog {
    border-top: 1px solid #f2f0ec;
    background: #fff;
}

.closetory-home-blog .closetory-heading {
    margin-bottom: 28px;
}

.closetory-home-blog-grid {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.closetory-heading {
    text-align: center;
    margin-bottom: 56px;
}

.closetory-heading span {
    display: block;
    margin-bottom: 4px;
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-style: italic;
}

.closetory-heading h2,
.closetory-intention h2,
.closetory-why h2,
.closetory-newsletter h2 {
    margin: 0;
    font-size: clamp(42px, 3.1vw, 56px);
    font-weight: 500;
    line-height: 1.05;
}

.closetory-occasion-grid {
    width: min(1532px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.closetory-occasion-card {
    height: 390px;
    position: relative;
    display: block;
    overflow: hidden;
    background: #ddd;
}

.closetory-occasion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04) 28%, rgba(0,0,0,.57) 100%);
}

.closetory-occasion-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.closetory-occasion-card:hover img {
    transform: scale(1.035);
}

.closetory-occasion-card span {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 1;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.closetory-featured-grid {
    width: min(1532px, calc(100% - 70px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.closetory-featured-card {
    min-width: 0;
}

.closetory-featured-card__image {
    aspect-ratio: 360 / 478;
    position: relative;
    overflow: hidden;
    background: var(--closetory-soft);
}

.closetory-featured-card__image > a:first-child {
    display: block;
    height: 100%;
}

.closetory-featured-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.closetory-featured-card:hover .closetory-featured-card__image img {
    transform: scale(1.035);
}

.closetory-featured-card__wishlist {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.86);
    color: #111;
    font-size: 17px;
    line-height: 1;
}

.closetory-featured-card__content {
    padding-top: 17px;
}

.closetory-featured-card__category {
    display: inline-block;
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.2;
}

.closetory-featured-card h3 {
    margin: 9px 0 4px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
}

.closetory-featured-card p {
    margin: 0;
    color: #d08a14;
    font-size: 15px;
    line-height: 1.35;
}

.closetory-featured__actions {
    margin-top: 48px;
    text-align: center;
}

.closetory-intention {
    min-height: 386px;
    padding: 104px 24px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    background: var(--closetory-soft);
}

.closetory-narrow {
    max-width: 770px;
}

.closetory-narrow p {
    margin: 22px 0 0;
    color: var(--closetory-muted);
    font-size: 18px;
    line-height: 1.55;
}

.closetory-testimonials {
    background: #fff;
    border-top: 1px solid #f2f0ec;
}

.closetory-testimonial-carousel {
    position: relative;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 62px;
    overflow: hidden;
}

.closetory-testimonial-grid {
    align-items: stretch;
}

.closetory-testimonial-card {
    height: auto;
    min-height: 298px;
    padding: 38px 34px 34px;
    display: flex;
    flex-direction: column;
    background: var(--closetory-cream);
    border: 1px solid var(--closetory-border);
}

.closetory-testimonial-card__rating {
    display: flex;
    gap: 5px;
    color: #d08a14;
    font-size: 12px;
}

.closetory-testimonial-card p {
    margin: 24px 0 30px;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.18;
}

.closetory-testimonial-card h3 {
    margin: auto 0 6px;
    color: var(--closetory-ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
}

.closetory-testimonial-card > span {
    color: var(--closetory-muted);
    font-size: 14px;
    line-height: 1.35;
}

.closetory-testimonial-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.closetory-testimonial-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #141412;
    border-radius: 2px;
    background: transparent;
    color: var(--closetory-ink);
    font-size: 18px;
    line-height: 1;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.closetory-testimonial-button:hover {
    background: #141412;
    color: #fff;
}

.closetory-testimonial-button.swiper-button-disabled {
    opacity: .4;
}

.closetory-why {
    text-align: center;
    background: #fff;
}

.closetory-values {
    width: min(1100px, calc(100% - 48px));
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 78px;
}

.closetory-values h3 {
    margin: 0 0 16px;
    font-size: 30px;
    font-weight: 500;
}

.closetory-values p {
    margin: 0;
    color: var(--closetory-muted);
    font-size: 16px;
    line-height: 1.55;
}

.closetory-newsletter {
    min-height: 359px;
    padding: 86px 24px 70px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    background: #fff;
    border-top: 1px solid #f2f0ec;
}

.closetory-newsletter p {
    margin: 22px 0 28px;
    color: var(--closetory-muted);
    font-size: 18px;
}

.closetory-newsletter__form {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.closetory-newsletter__form input {
    width: 290px;
    height: 37px;
    border: 1px solid #ddd7cf;
    border-radius: 0;
    background: transparent;
    padding: 0 2px;
    color: var(--closetory-ink);
    font-size: 14px;
}

.closetory-newsletter__form input:focus {
    outline: 1px solid #b9b0a5;
}

.closetory-newsletter__form button {
    height: 37px;
    min-width: 142px;
    border: 1px solid #141412;
    border-radius: 2px;
    background: #141412;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.closetory-footer-bridge {
    padding: 58px 0;
    background: #fff;
    border-top: 1px solid #f2f0ec;
    border-bottom: 1px solid #f2f0ec;
}

.closetory-footer-bridge__inner {
    width: min(1536px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.closetory-footer-bridge article {
    min-height: 122px;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #ebe6de;
}

.closetory-footer-bridge article:first-child {
    padding-left: 0;
}

.closetory-footer-bridge article:last-child {
    padding-right: 0;
    border-right: 0;
}

.closetory-footer-bridge span {
    color: #c78a25;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1;
}

.closetory-footer-bridge h3 {
    margin: 13px 0 9px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.05;
}

.closetory-footer-bridge p {
    max-width: 340px;
    margin: 0;
    color: var(--closetory-muted);
    font-size: 14px;
    line-height: 1.6;
}

.closetory-about {
    background: #fff;
}

.closetory-about-hero {
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 38%;
    isolation: isolate;
}

.closetory-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: inherit;
    filter: saturate(.72) brightness(1.08);
}

.closetory-about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.42) 62%, #fff 100%),
        linear-gradient(90deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 48%, rgba(255,255,255,.18) 100%);
}

.closetory-about-hero__inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 42px;
}

.closetory-about h1,
.closetory-about h2,
.closetory-about h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--closetory-ink);
    letter-spacing: 0;
}

.closetory-about h1 {
    margin: 0;
    font-size: clamp(54px, 4.8vw, 82px);
    font-weight: 500;
    line-height: .98;
}

.closetory-about-content {
    padding: 96px 0 198px;
}

.closetory-about-copy {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.closetory-about-copy p {
    margin: 0;
    color: var(--closetory-muted);
    font-size: 15px;
    line-height: 1.75;
}

.closetory-about-copy p + p {
    margin-top: 18px;
}

.closetory-about-lede {
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px !important;
    font-style: italic;
    line-height: 1.5 !important;
}

.closetory-about-copy h2 {
    margin: 52px 0 18px;
    font-size: 31px;
    font-weight: 500;
    line-height: 1.08;
}

.closetory-about-copy h3 {
    margin: 28px 0 12px;
    color: var(--closetory-ink);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
}

.closetory-about-copy ul {
    margin: 0 0 22px 22px;
    padding: 0;
    color: var(--closetory-muted);
    font-size: 15px;
    line-height: 1.75;
}

.closetory-about-copy li + li {
    margin-top: 6px;
}

.closetory-about-copy blockquote {
    margin: 42px 0 0;
    padding: 8px 31px;
    border-left: 2px solid #d08a14;
    border-right: 2px solid #d08a14;
}

.closetory-about-copy blockquote p {
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.45;
}

.closetory-founder {
    margin: 58px 0 56px;
    padding: 52px 74px 58px;
    text-align: center;
    background: var(--closetory-cream);
}

.closetory-founder h2 {
    margin: 0 0 30px;
}

.closetory-founder__avatar {
    width: 116px;
    height: 116px;
    margin: 0 auto 27px;
    border-radius: 50%;
    background: #e8e6e2;
}

.closetory-founder h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
}

.closetory-founder span {
    display: block;
    margin-top: 5px;
    color: #a59b8f;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.2;
}

.closetory-founder p {
    margin-top: 34px;
    color: var(--closetory-muted);
    text-align: center;
}

.closetory-about-social {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d08a14;
    font-size: 14px;
}

.closetory-about-social i {
    font-size: 18px;
}

.closetory-about-signoff {
    margin-top: 116px !important;
    color: var(--closetory-ink) !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 29px !important;
    line-height: 1.15 !important;
    text-align: center;
}

.closetory-shop {
    background: #fff;
}

.closetory-product-section {
    background: #fff;
}

.closetory-cart-section {
    background: #fff;
}

.closetory-checkout-section {
    background: #fff;
}

.closetory-login-section,
.closetory-forgot-password-section,
.closetory-register-section {
    background: #fff;
}

.closetory-dashboard-section {
    background: #fff;
}

.closetory-orders-section,
.closetory-wishlist-section,
.closetory-address-section,
.closetory-account-section {
    background: #fff;
}

.closetory-orders-section .my-account-tab,
.closetory-address-section .my-account-tab,
.closetory-account-section .my-account-tab {
    padding: 34px;
}

.closetory-shop-hero {
    padding: 92px 24px 66px;
    text-align: center;
    background: var(--closetory-soft);
    border-top: 1px solid #f2f0ec;
    border-bottom: 1px solid #f2f0ec;
}

.closetory-shop-hero span {
    display: block;
    margin-bottom: 8px;
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-style: italic;
}

.closetory-shop-hero h1 {
    margin: 0;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(52px, 4vw, 72px);
    font-weight: 500;
    line-height: 1;
}

.closetory-shop-section {
    padding: 82px 0 110px;
}

.closetory-shop-layout {
    width: min(1536px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
    gap: 58px;
    align-items: start;
}

.closetory-shop-sidebar {
    min-width: 0;
}

.closetory-shop-filter {
    position: sticky;
    top: 100px;
}

.closetory-filter-panel {
    padding: 29px 27px 30px;
    background: var(--closetory-cream);
    border: 1px solid var(--closetory-border);
}

.closetory-filter-group + .closetory-filter-group {
    margin-top: 34px;
}

.closetory-filter-group h2 {
    margin: 0 0 18px;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
}

.closetory-filter-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.closetory-filter-group li + li {
    margin-top: 11px;
}

.closetory-filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--closetory-muted);
    font-size: 14px;
    line-height: 1.35;
    cursor: pointer;
}

.closetory-filter-check input {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    accent-color: #d08a14;
}

.closetory-filter-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.closetory-filter-price input,
.closetory-shop-toolbar select {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd7cf;
    border-radius: 0;
    background: #fff;
    color: var(--closetory-ink);
    font-size: 14px;
}

.closetory-filter-price input {
    padding: 0 12px;
}

.closetory-shop-toolbar select {
    max-width: 210px;
    padding: 0 11px;
}

.closetory-filter-price input:focus,
.closetory-shop-toolbar select:focus {
    outline: 1px solid #b9b0a5;
}

.closetory-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}

.closetory-filter-actions button,
.closetory-filter-actions a {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #141412;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
}

.closetory-filter-actions button {
    background: #141412;
    color: #fff;
}

.closetory-filter-actions a {
    background: transparent;
    color: #141412;
}

.closetory-shop-main {
    min-width: 0;
}

.closetory-shop-toolbar {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.closetory-shop-toolbar p {
    margin: 0;
    color: var(--closetory-muted);
    font-size: 14px;
}

.closetory-active-filters {
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.closetory-active-filters span,
.closetory-active-filters a {
    min-height: 32px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--closetory-border);
    background: #fff;
    color: var(--closetory-muted);
    font-size: 13px;
    line-height: 1;
}

.closetory-active-filters a {
    color: #d08a14;
}

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

.closetory-shop-card {
    min-width: 0;
}

.closetory-shop-card__image {
    aspect-ratio: 360 / 478;
    position: relative;
    overflow: hidden;
    background: var(--closetory-soft);
}

.closetory-shop-card__image > a:first-child {
    display: block;
    height: 100%;
}

.closetory-shop-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.closetory-shop-card:hover .closetory-shop-card__image img {
    transform: scale(1.035);
}

.closetory-shop-card__wishlist {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.86);
    color: #111;
    font-size: 17px;
    line-height: 1;
    transition: background .2s ease, color .2s ease;
}

.closetory-shop-card__wishlist:hover {
    background: #111;
    color: #fff;
}

.closetory-shop-card__content {
    padding-top: 16px;
}

.closetory-shop-card__category {
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.2;
}

.closetory-shop-card h2 {
    margin: 9px 0 5px;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
}

.closetory-shop-card p {
    margin: 0;
    color: #d08a14;
    font-size: 15px;
    line-height: 1.35;
}

.closetory-shop-pagination {
    margin-top: 54px;
    display: flex;
    justify-content: flex-end;
}

.closetory-shop-pagination .pagination {
    margin: 0;
    gap: 6px;
}

.closetory-shop-pagination .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--closetory-border);
    border-radius: 0;
    color: var(--closetory-ink);
    font-size: 13px;
}

.closetory-shop-pagination .page-item.active .page-link,
.closetory-shop-pagination .page-link:hover {
    border-color: #141412;
    background: #141412;
    color: #fff;
}

.closetory-shop-empty {
    padding: 38px 24px;
    border: 1px solid var(--closetory-border);
    background: var(--closetory-cream);
    color: var(--closetory-muted);
    text-align: center;
}

.closetory-contact {
    background: #fff;
}

.closetory-contact-hero {
    padding: 92px 24px 66px;
    text-align: center;
    background: var(--closetory-soft);
    border-top: 1px solid #f2f0ec;
    border-bottom: 1px solid #f2f0ec;
}

.closetory-contact-hero span,
.closetory-contact-heading span {
    display: block;
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.2;
}

.closetory-contact-hero span {
    margin-bottom: 8px;
}

.closetory-contact-hero h1,
.closetory-contact-heading h2,
.closetory-contact-info h2 {
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    letter-spacing: 0;
}

.closetory-contact-hero h1 {
    margin: 0;
    font-size: clamp(52px, 4vw, 72px);
    line-height: 1;
}

.closetory-contact-section {
    padding: 88px 0 118px;
}

.closetory-contact-layout {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 62px;
    align-items: start;
}

.closetory-contact-heading {
    max-width: 640px;
    margin-bottom: 34px;
}

.closetory-contact-heading h2 {
    margin: 10px 0 14px;
    font-size: clamp(40px, 3vw, 54px);
    line-height: 1.05;
}

.closetory-contact-heading p {
    margin: 0;
    color: var(--closetory-muted);
    font-size: 16px;
    line-height: 1.7;
}

.closetory-contact-alert {
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1px solid var(--closetory-border);
    font-size: 14px;
}

.closetory-contact-alert--success {
    background: var(--closetory-cream);
    color: #47745d;
}

.closetory-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.closetory-contact-field {
    min-width: 0;
}

.closetory-contact-field--full {
    grid-column: 1 / -1;
}

.closetory-contact-field input,
.closetory-contact-field textarea {
    width: 100%;
    border: 1px solid #ddd7cf;
    border-radius: 0;
    background: #fff;
    color: var(--closetory-ink);
    font-size: 14px;
}

.closetory-contact-field input {
    height: 46px;
    padding: 0 14px;
}

.closetory-contact-field textarea {
    min-height: 176px;
    padding: 13px 14px;
    resize: vertical;
}

.closetory-contact-field input:focus,
.closetory-contact-field textarea:focus {
    outline: 1px solid #b9b0a5;
}

.closetory-contact-field span {
    display: block;
    margin-top: 6px;
    color: #b34b34;
    font-size: 13px;
    line-height: 1.35;
}

.closetory-contact-form button {
    min-width: 164px;
    height: 46px;
    margin-top: 24px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #141412;
    background: #141412;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
}

.closetory-contact-info {
    background: var(--closetory-cream);
    border: 1px solid var(--closetory-border);
}

.closetory-contact-info__inner {
    padding: 36px 34px 38px;
}

.closetory-contact-info article + article {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ebe6de;
}

.closetory-contact-info article > span {
    display: block;
    color: #d08a14;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1;
}

.closetory-contact-info h2 {
    margin: 12px 0 10px;
    font-size: 27px;
    line-height: 1.08;
}

.closetory-contact-info p {
    margin: 0;
    color: var(--closetory-muted);
    font-size: 14px;
    line-height: 1.65;
}

.closetory-contact-info p + p {
    margin-top: 4px;
}

.closetory-contact-info a {
    color: inherit;
}

.closetory-contact-info i {
    margin-right: 8px;
    color: #d08a14;
    font-size: 17px;
}

.closetory-blog {
    background: #fff;
}

.closetory-blog-hero {
    padding: 92px 24px 66px;
    text-align: center;
    background: var(--closetory-soft);
    border-top: 1px solid #f2f0ec;
    border-bottom: 1px solid #f2f0ec;
}

.closetory-blog-hero span {
    display: block;
    margin-bottom: 8px;
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.2;
}

.closetory-blog-hero h1 {
    max-width: 920px;
    margin: 0 auto;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(46px, 4vw, 72px);
    font-weight: 500;
    line-height: 1.02;
}

.closetory-blog-section {
    padding: 82px 0 82px;
}

.closetory-blog-layout {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 58px;
    align-items: start;
}

.closetory-blog-list-page .closetory-blog-layout,
.closetory-blog-detail-page .closetory-blog-layout {
    display: block;
}

.closetory-blog-main,
.closetory-blog-detail {
    min-width: 0;
}

.closetory-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 30px;
}

.closetory-blog-list-page .closetory-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.closetory-blog-card {
    min-width: 0;
}

.closetory-blog-card__image {
    aspect-ratio: 410 / 292;
    overflow: hidden;
    background: var(--closetory-soft);
}

.closetory-blog-card__image a {
    display: block;
    height: 100%;
}

.closetory-blog-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.closetory-blog-card:hover .closetory-blog-card__image img {
    transform: scale(1.035);
}

.closetory-blog-card__content {
    padding-top: 20px;
}

.closetory-blog-card h2 {
    margin: 0;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.12;
}

.closetory-blog-card__link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d08a14;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
}

.closetory-blog-card__link i {
    font-size: 12px;
}

.closetory-blog-sidebar {
    min-width: 0;
}

.closetory-blog-widget {
    position: sticky;
    top: 100px;
    padding: 30px 28px;
    background: var(--closetory-cream);
    border: 1px solid var(--closetory-border);
}

.closetory-blog-widget h2 {
    margin: 0 0 20px;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.08;
}

.closetory-blog-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.closetory-blog-widget li {
    border-top: 1px solid #ebe6de;
}

.closetory-blog-widget li:first-child {
    border-top: 0;
}

.closetory-blog-widget a {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--closetory-muted);
    font-size: 14px;
    line-height: 1.35;
}

.closetory-blog-widget a::after {
    content: "\f105";
    color: #d08a14;
    font-family: FontAwesome;
    font-size: 13px;
}

.closetory-blog-pagination {
    margin-top: 54px;
    display: flex;
    justify-content: flex-end;
}

.closetory-blog-pagination .pagination {
    margin: 0;
    gap: 6px;
}

.closetory-blog-pagination .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--closetory-border);
    border-radius: 0;
    color: var(--closetory-ink);
    font-size: 13px;
}

.closetory-blog-pagination .page-item.active .page-link,
.closetory-blog-pagination .page-link:hover {
    border-color: #141412;
    background: #141412;
    color: #fff;
}

.closetory-blog-empty {
    padding: 38px 24px;
    border: 1px solid var(--closetory-border);
    background: var(--closetory-cream);
    color: var(--closetory-muted);
    text-align: center;
}

.closetory-blog-detail > img {
    width: auto;
    max-width: min(100%, 920px);
    max-height: 720px;
    margin: 0 auto;
    height: auto;
    display: block;
    object-fit: contain;
    background: var(--closetory-soft);
}

.closetory-blog-detail > h2 {
    margin: 34px 0 20px;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(38px, 3vw, 54px);
    font-weight: 500;
    line-height: 1.08;
}

.closetory-blog-detail__content {
    color: var(--closetory-muted);
    font-size: 15px;
    line-height: 1.75;
}

.closetory-blog-detail__content p {
    margin: 0 0 18px;
}

.closetory-blog-detail__content h1,
.closetory-blog-detail__content h2,
.closetory-blog-detail__content h3,
.closetory-blog-detail__content h4,
.closetory-blog-detail__content h5,
.closetory-blog-detail__content h6 {
    margin: 34px 0 14px;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    line-height: 1.12;
}

.closetory-blog-detail__content a {
    color: #d08a14;
}

.closetory-blog-detail__content img {
    max-width: 100%;
    height: auto;
}

.closetory-blog-products {
    margin-top: 76px;
    padding-top: 72px;
    border-top: 1px solid var(--closetory-border);
}

/* Legacy commerce/account pages use the original template markup; this layer keeps them aligned with Closetory. */
.closetory-logo__image {
    height: 32px;
    width: auto;
    display: block;
}

.page-banner {
    padding: 92px 24px 66px;
    background: var(--closetory-soft);
    border-top: 1px solid #f2f0ec;
    border-bottom: 1px solid #f2f0ec;
}

.page-banner .container {
    max-width: none;
    padding: 0;
}

.page-banner-wrapper .title {
    margin: 0;
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(46px, 4vw, 72px);
    font-weight: 500;
    line-height: 1.02;
}

.page-banner-wrapper .breadcrumb {
    display: none;
}

.section-padding,
.section-padding-02 {
    padding-top: 82px;
    padding-bottom: 110px;
}

.mt-n1,
.mt-n2,
.mt-n6,
.mt-n10 {
    margin-top: 0 !important;
}

.container {
    max-width: min(1240px, calc(100% - 48px));
}

.btn,
.login-register-wrapper .btn,
.checkout-btn .btn,
.cart-total-btn .btn,
.empty-cart .btn,
.product-cart .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
}

.btn-primary,
.btn-dark,
.btn-info {
    border-color: #141412 !important;
    background: #141412 !important;
    color: #fff !important;
}

.btn-hover-dark:hover,
.btn-hover-primary:hover,
.btn-primary:hover,
.btn-dark:hover,
.btn-info:hover {
    border-color: #141412 !important;
    background: transparent !important;
    color: #141412 !important;
}

.single-form label,
.checkout-title .title,
.cart-title .title,
.login-register-wrapper .title,
.my-account-tab .account-title,
.empty-cart .empty-cart-title,
.product-details-content .product-title,
.section-title .title {
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    letter-spacing: 0;
}

.login-register-wrapper .title,
.checkout-title .title,
.cart-title .title,
.my-account-tab .account-title,
.section-title .title {
    font-size: 30px;
}

.single-form input,
.single-form textarea,
.single-form select,
.checkout-coupon input,
.cart-table .product-quantity input,
.product-quantity input {
    border: 1px solid #ddd7cf !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--closetory-ink);
    font-size: 14px;
}

.single-form input:focus,
.single-form textarea:focus,
.single-form select:focus,
.checkout-coupon input:focus {
    outline: 1px solid #b9b0a5;
}

.single-form label {
    margin-bottom: 7px;
    font-size: 17px;
}

.single-form > div {
    color: #b34b34;
    font-size: 13px;
}

.checkout-title-with-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.checkout-same-address {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    color: var(--closetory-ink);
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
}

.checkout-same-address input {
    margin: 0;
}

.login-register-wrapper,
.checkout-billing,
.checkout-shipping,
.checkout-order,
.cart-totals,
.account-details,
.my-account-dashboard,
.my-account-address,
.my-account-payment,
.my-account-tab {
    border: 1px solid var(--closetory-border);
    background: var(--closetory-cream);
}

.login-register-wrapper,
.account-details,
.my-account-dashboard,
.my-account-address,
.my-account-payment {
    padding: 34px;
}

.login-register-wrapper p,
.my-account-dashboard p,
.my-account-address p,
.checkout-info .card-body p,
.cart-shipping p,
.cart-totals p {
    color: var(--closetory-muted);
}

.login-register-wrapper a,
.my-account-dashboard a,
.cart-table .name,
.checkout-info .info-header a {
    color: var(--closetory-ink);
}

.login-register-wrapper a:hover,
.my-account-dashboard a:hover,
.cart-table .name:hover,
.checkout-info .info-header a:hover {
    color: #d08a14;
}

.my-account-menu .account-menu-list {
    background: var(--closetory-cream);
    border: 1px solid var(--closetory-border);
}

.my-account-menu .account-menu-list li a {
    color: var(--closetory-muted);
    font-family: "Nunito Sans", Arial, sans-serif;
}

.my-account-menu .account-menu-list li a.active,
.my-account-menu .account-menu-list li a:hover {
    background: #141412;
    color: #fff;
}

.table {
    color: var(--closetory-muted);
}

.table thead th,
.cart-table .table thead tr th,
.account-table .table thead tr th,
.checkout-order .table thead tr th {
    border-color: var(--closetory-border) !important;
    color: var(--closetory-ink) !important;
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.table tbody td,
.cart-table .table tbody tr td,
.account-table .table tbody tr td,
.checkout-order .table tbody tr td,
.checkout-order .table tfoot tr td {
    border-color: var(--closetory-border) !important;
    color: var(--closetory-muted) !important;
}

.cart-product-size {
    display: block;
    margin-top: 6px;
    color: var(--closetory-muted);
    font-size: 14px;
    line-height: 1.4;
}

.closetory-cart-product-image,
.wishlist-table img {
    height: 100px;
    width: 76px;
    object-fit: cover;
}

.sale-price,
.cart-total-table .price,
.checkout-order .total-price p,
.product-price .sale-price {
    color: #d08a14 !important;
}

.product-quantity button,
.cart-table .product-quantity button {
    border: 1px solid #ddd7cf;
    background: #fff;
    color: var(--closetory-ink);
}

.product-details-wrapper,
.product-details-tabs,
.related-products {
    color: var(--closetory-muted);
}

.product-details-content .product-category a,
.product-content .product-category a {
    color: #7f776d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 14px;
    font-style: italic;
}

.product-details-content .product-title {
    font-size: clamp(38px, 3vw, 54px);
    line-height: 1.05;
}

.closetory-product-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.closetory-product-gallery__thumbs {
    max-height: 650px;
    padding: 2px 4px 2px 2px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #bdb4aa #f5f2ee;
}

.closetory-product-gallery__thumbs::-webkit-scrollbar {
    width: 4px;
}

.closetory-product-gallery__thumbs::-webkit-scrollbar-track {
    background: #f5f2ee;
}

.closetory-product-gallery__thumbs::-webkit-scrollbar-thumb {
    background: #bdb4aa;
}

.closetory-product-gallery__thumb {
    width: 56px;
    height: 56px;
    padding: 0;
    flex: 0 0 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #d9d0c5;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.closetory-product-gallery__thumb.active,
.closetory-product-gallery__thumb:hover {
    border-color: #0d6efd;
    box-shadow: 0 6px 16px rgba(13, 110, 253, .16);
    transform: translateY(-1px);
}

.closetory-product-gallery__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.closetory-product-gallery__stage {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f7f7;
}

.closetory-product-gallery__stage img {
    width: 100%;
    height: 100%;
    max-height: 650px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.closetory-product-gallery__count {
    min-width: 48px;
    height: 30px;
    padding: 0 10px;
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(20, 20, 18, .78);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.product-details-content .product-brand {
    width: fit-content;
    max-width: 100%;
    margin: 10px 0 12px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e8dfd3;
    background: #fffdf9;
    color: var(--closetory-ink);
    box-shadow: 0 10px 24px rgba(35, 30, 24, .06);
}

.product-details-content .product-brand__label {
    color: #bd730c;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-details-content .product-brand__name {
    min-width: 0;
    padding-left: 10px;
    border-left: 1px solid #e1d7ca;
    color: #151411;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.product-details-content p,
.product-description,
.information {
    color: var(--closetory-muted);
    font-size: 15px;
    line-height: 1.75;
}

.product-styling-notes {
    margin-top: 18px;
}

.product-styling-notes label {
    display: block;
    margin-bottom: 8px;
    color: #bd730c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.product-styling-notes textarea {
    width: 100%;
    min-height: 92px;
    padding: 13px 15px;
    display: block;
    border: 1px solid #ddd7cf;
    border-radius: 0;
    background: #fff;
    color: var(--closetory-ink);
    font-size: 14px;
    line-height: 1.55;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.product-styling-notes textarea::placeholder {
    color: #a59b8f;
}

.product-styling-notes textarea:focus {
    border-color: #b9b0a5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(208, 138, 20, .1);
}

.product-info .single-info .label {
    color: var(--closetory-ink);
    font-weight: 600;
}

.product-info .single-info .value {
    color: var(--closetory-muted);
}

.product-details-content .product-info {
    margin-top: 18px;
}

.product-details-content .product-info .single-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px 14px;
    margin-top: 14px;
}

.product-details-content .product-info .single-info .label {
    width: 72px;
    flex: 0 0 72px;
    color: #bd730c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.product-details-content .product-info .single-info .value {
    color: var(--closetory-ink);
    font-size: 15px;
    font-weight: 500;
}

.product-details-content .product-info .size {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 !important;
    padding: 3px;
    list-style: none;
    background: #f8f6f2;
    border: 1px solid #ebe5dc;
}

.product-details-content .product-info .size li {
    min-width: 39px;
    height: 34px;
    margin: 0 !important;
    padding: 0 12px;
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 1px;
    background: #fff;
    color: var(--closetory-ink);
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(18, 17, 15, .03);
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-details-content .product-info .size li:hover {
    border-color: #bfb5a8;
    box-shadow: 0 6px 14px rgba(18, 17, 15, .08);
    transform: translateY(-1px);
}

.product-details-content .product-info .size li.active {
    border-color: #141412;
    background: #141412;
    color: #fff;
    box-shadow: 0 10px 20px rgba(20, 20, 18, .16);
}

.product-details-content .product-info .size li.active::after {
    width: 12px;
    height: 2px;
    position: absolute;
    right: 8px;
    bottom: 5px;
    content: "";
    background: #d08a14;
}

.product-details-content .product-cart .btn {
    min-width: 158px;
    height: 50px;
    padding: 0 28px !important;
    line-height: 1 !important;
    text-align: center;
}

.product-details-content .product-quantity {
    overflow: hidden;
    border: 1px solid #ddd7cf;
    background: #fff;
}

.product-details-content .product-quantity button,
.product-details-content .product-quantity input {
    height: 36px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
}

.product-details-content .product-quantity button {
    width: 34px !important;
    color: var(--closetory-ink);
    font-weight: 700;
}

.product-details-content .product-quantity input {
    width: 48px !important;
    padding: 0 !important;
    border-right: 1px solid #eee9e2 !important;
    border-left: 1px solid #eee9e2 !important;
    color: var(--closetory-ink);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.product-details-tabs .nav {
    border-bottom: 1px solid var(--closetory-border);
}

.product-details-tabs .nav li a {
    color: var(--closetory-muted);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
}

.product-details-tabs .nav li a.active,
.product-details-tabs .nav li a:hover {
    color: var(--closetory-ink);
}

.single-product .product-image {
    background: var(--closetory-soft);
}

.single-product .product-title,
.product-content .product-title {
    color: var(--closetory-ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}

.alert,
.checkout-info .info-header {
    border: 1px solid var(--closetory-border);
    border-radius: 0;
    background: var(--closetory-cream);
    color: var(--closetory-muted);
}

.checkout-coupon {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.checkout-coupon-field {
    flex: 1;
}

.checkout-coupon input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
}

.checkout-coupon-error {
    margin-top: 6px;
    color: #b34b34;
    font-size: 14px;
    line-height: 1.4;
}

.checkout-coupon .btn {
    min-width: 100px;
    height: 45px;
    padding: 0 20px;
}

.checkout-form .single-form textarea {
    min-height: 45px;
    padding: 11px 15px;
    line-height: 22px;
    resize: vertical;
}

.account-details .single-form textarea.address-textarea {
    height: 50px;
    min-height: 50px;
    padding: 0 15px;
    line-height: 50px;
    overflow: hidden;
}

.closetory-footer {
    background: var(--closetory-soft);
    border-top: 1px solid #e9e5dd;
}

.closetory-footer__inner {
    width: min(1536px, calc(100% - 48px));
    margin: 0 auto;
    padding: 64px 0 66px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 86px;
    border-bottom: 1px solid #e5e0d8;
}

.closetory-footer p,
.closetory-footer a {
    color: var(--closetory-muted);
    font-size: 14px;
}

.closetory-footer__brand p {
    max-width: 280px;
    margin: 28px 0 0;
}

.closetory-footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.closetory-footer__col h4 {
    margin: 0 0 10px;
    color: var(--closetory-ink);
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
}

.closetory-footer__col i {
    margin-right: 8px;
    font-size: 18px;
}

.closetory-footer__copyright {
    width: min(1536px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0 36px;
    text-align: center;
}

.closetory-footer__copyright p {
    margin: 0;
}

.back-to-top {
    display: none !important;
}

.search-box {
    display: none;
}

.offcanvas-menu .mobile-primary-menu ul li a {
    font-family: "Nunito Sans", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
}

@media (max-width: 1199px) {
    .closetory-occasion-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .closetory-featured-grid {
        width: min(100% - 48px, 1532px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .closetory-home-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
    }

    .closetory-shop-layout {
        grid-template-columns: 245px minmax(0, 1fr);
        gap: 34px;
    }

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

    .closetory-occasion-card {
        height: 360px;
    }
}

@media (max-width: 991px) {
    .closetory-header__inner {
        grid-template-columns: 1fr auto;
    }

    .closetory-nav {
        display: none;
    }

    .closetory-menu-toggle {
        display: inline-flex;
    }

    .closetory-hero {
        min-height: 660px;
        background-position: center top;
    }

    .closetory-shop-layout {
        grid-template-columns: 1fr;
    }

    .closetory-shop-filter {
        position: static;
    }

    .closetory-contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .closetory-blog-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .closetory-blog-widget {
        position: static;
    }

    .closetory-values,
    .closetory-footer-bridge__inner,
    .closetory-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .closetory-footer-bridge article,
    .closetory-footer-bridge article:first-child,
    .closetory-footer-bridge article:last-child {
        padding: 0 0 32px;
        border-right: 0;
        border-bottom: 1px solid #ebe6de;
    }

    .closetory-footer-bridge article:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .closetory-header {
        height: 70px;
    }

    .closetory-header__inner,
    .closetory-hero__content,
    .closetory-occasion-grid,
    .closetory-testimonial-carousel,
    .closetory-values,
    .closetory-footer-bridge__inner,
    .closetory-footer__inner,
    .closetory-footer__copyright {
        width: min(100% - 32px, 1532px);
    }

    .closetory-logo {
        font-size: 26px;
    }

    .closetory-actions {
        gap: 16px;
    }

    .closetory-search-box {
        width: min(300px, calc(100vw - 32px));
        right: -72px;
    }

    .closetory-account-link {
        display: inline-flex;
    }

    .closetory-hero {
        min-height: 600px;
    }

    .closetory-about-hero {
        min-height: 440px;
    }

    .closetory-about-hero__inner {
        width: min(100% - 32px, 1240px);
        padding: 0 0 34px;
    }

    .closetory-about-content {
        padding: 64px 0 112px;
    }

    .closetory-about-copy {
        width: min(100% - 32px, 1240px);
    }

    .closetory-about-copy h2 {
        margin-top: 42px;
        font-size: 28px;
    }

    .closetory-founder {
        margin: 48px 0;
        padding: 42px 22px 46px;
    }

    .closetory-about-signoff {
        margin-top: 78px !important;
        font-size: 25px !important;
    }

    .closetory-shop-hero {
        padding: 70px 16px 52px;
    }

    .closetory-shop-section {
        padding: 54px 0 78px;
    }

    .closetory-shop-layout {
        width: min(100% - 32px, 1532px);
        gap: 34px;
    }

    .closetory-filter-panel {
        padding: 25px 20px 26px;
    }

    .closetory-shop-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .closetory-shop-toolbar select {
        max-width: none;
    }

    .closetory-shop-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .closetory-shop-pagination {
        justify-content: center;
    }

    .closetory-contact-hero {
        padding: 70px 16px 52px;
    }

    .closetory-contact-section {
        padding: 58px 0 82px;
    }

    .closetory-contact-layout {
        width: min(100% - 32px, 1240px);
        gap: 34px;
    }

    .closetory-contact-form__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .closetory-contact-form button {
        width: 100%;
    }

    .closetory-contact-info__inner {
        padding: 30px 22px 32px;
    }

    .closetory-blog-hero {
        padding: 70px 16px 52px;
    }

    .closetory-blog-section {
        padding: 54px 0 82px;
    }

    .closetory-blog-layout {
        width: min(100% - 32px, 1240px);
        gap: 34px;
    }

    .closetory-blog-list-page .closetory-blog-grid {
        grid-template-columns: 1fr;
    }

    .closetory-blog-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .closetory-blog-card h2 {
        font-size: 25px;
    }

    .closetory-blog-widget {
        padding: 26px 22px;
    }

    .closetory-blog-pagination {
        justify-content: center;
    }

    .closetory-blog-detail > h2 {
        margin-top: 28px;
    }

    .page-banner {
        padding: 70px 16px 52px;
    }

    .section-padding,
    .section-padding-02 {
        padding-top: 54px;
        padding-bottom: 78px;
    }

    .closetory-product-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 34px;
    }

    .closetory-product-gallery__stage {
        min-height: 430px;
        order: 1;
    }

    .closetory-product-gallery__stage img {
        max-height: 430px;
    }

    .closetory-product-gallery__thumbs {
        max-height: none;
        order: 2;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .closetory-product-gallery__thumb {
        width: 58px;
        height: 68px;
        flex-basis: 68px;
    }

    .container {
        max-width: min(100% - 32px, 1240px);
        padding-right: 0;
        padding-left: 0;
    }

    .login-register-wrapper,
    .account-details,
    .my-account-dashboard,
    .my-account-address,
    .my-account-payment {
        padding: 26px 20px;
    }

    .closetory-orders-section .my-account-tab,
    .closetory-address-section .my-account-tab,
    .closetory-account-section .my-account-tab {
        padding: 24px 18px;
    }

    .checkout-coupon {
        display: block;
    }

    .checkout-coupon .btn {
        width: 100%;
        margin-top: 10px;
    }

    .closetory-hero__content {
        padding-bottom: 30px;
    }

    .closetory-hero h1 {
        font-size: 47px;
    }

    .closetory-hero p {
        font-size: 17px;
    }

    .closetory-hero__actions,
    .closetory-newsletter__form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .closetory-btn,
    .closetory-newsletter__form input,
    .closetory-newsletter__form button {
        width: 100%;
    }

    .closetory-section {
        padding: 58px 0 70px;
    }

    .closetory-heading {
        margin-bottom: 34px;
    }

    .closetory-occasion-grid {
        grid-template-columns: 1fr;
    }

    .closetory-featured-grid {
        width: min(100% - 32px, 1532px);
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .closetory-home-blog-grid {
        width: min(100% - 32px, 1240px);
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .closetory-testimonial-carousel {
        width: min(100% - 32px, 1240px);
    }

    .closetory-testimonial-card {
        min-height: auto;
        padding: 32px 26px 30px;
    }

    .closetory-testimonial-card p {
        font-size: 25px;
    }

    .closetory-occasion-card {
        height: 420px;
    }

    .closetory-intention,
    .closetory-newsletter {
        min-height: auto;
        padding: 72px 16px;
    }

    .closetory-footer-bridge {
        padding: 42px 0;
    }

    .closetory-footer-bridge h3 {
        font-size: 25px;
    }

    .closetory-values {
        margin-top: 38px;
    }

    .closetory-footer__inner {
        padding: 52px 0;
    }

    .closetory-footer__copyright {
        padding-bottom: 28px;
    }
}
.closetory-instant-answers {
    position: fixed;
    right: 54px;
    bottom: 28px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 60px;
    padding: 0 26px 0 18px;
    border-radius: 999px;
    border: 1px solid #141412;
    background: #141412;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(20, 20, 18, 0.18);
    transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.closetory-instant-answers:hover,
.closetory-instant-answers:focus {
    color: #141412;
    background: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 20, 18, 0.22);
}

.closetory-instant-answers__icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.closetory-instant-answers__icon i {
    display: none;
}

.closetory-instant-answers__icon::after {
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.closetory-instant-answers__text {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .closetory-instant-answers {
        right: 16px;
        bottom: 24px;
        min-height: 52px;
        padding: 0 18px 0 16px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .closetory-instant-answers {
        right: 12px;
        padding-right: 15px;
        padding-left: 14px;
    }
}
