html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.catalog-page { max-width: 1320px; margin: 0 auto; padding: clamp(1rem, 3vw, 3rem) 0 4rem; color: #241c20; }
.catalog-intro { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding: 1rem 0 2.5rem; border-bottom: 1px solid #d9ced0; }
.catalog-kicker { margin: 0 0 .7rem; color: #8c2542; font-size: .75rem; font-weight: 700; letter-spacing: .14em; }
.catalog-intro h1 { margin: 0; font-size: clamp(2.25rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.05em; }
.catalog-intro p:not(.catalog-kicker) { margin: .9rem 0 0; color: #6d6065; font-size: 1.05rem; }
.catalog-home-link, .product-detail-link { color: #fff; background: #542136; text-decoration: none; padding: .7rem 1rem; font-weight: 700; transition: background .25s ease, transform .25s ease; }
.catalog-home-link:hover, .product-detail-link:hover { background: #8c2542; color: #fff; transform: translateY(-2px); }
.catalog-search { margin: 2rem 0 2.5rem; }
.catalog-search label { display: block; margin-bottom: .6rem; color: #6d6065; font-size: .85rem; font-weight: 700; }
.catalog-search div { display: flex; max-width: 660px; border: 1px solid #b7a9ae; background: #fffdfb; }
.catalog-search input { flex: 1; min-width: 0; border: 0; padding: .9rem 1rem; background: transparent; font: inherit; }
.catalog-search button { border: 0; padding: .9rem 1.2rem; color: #fff; background: #542136; font: inherit; font-weight: 700; cursor: pointer; }
.catalog-search button:hover { background: #8c2542; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.product-card { display: flex; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid #ded4d6; background: #fffdfb; transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(57, 26, 38, .12); }
.product-card-image { display: grid; min-height: 180px; place-items: center; overflow: hidden; background: #eee6e5; color: #725f67; text-decoration: none; }
.product-card-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card-image img { transform: scale(1.045); }
.product-card-content { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
.product-category { margin: 0 0 .45rem; color: #8c2542; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h2 { margin: 0 0 1rem; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.35; }
.product-card h2 a { color: #241c20; text-decoration: none; }
.product-detail-link { align-self: flex-start; margin-top: auto; display: inline-block; font-size: .88rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 640px) { .catalog-intro { align-items: start; flex-direction: column; gap: 1.25rem; } .catalog-search div { flex-direction: column; } .catalog-search button { width: 100%; } }

.checkout-page { width: min(100%, 880px); margin: 0 auto; padding: clamp(2rem, 5vw, 4.5rem) 1rem; color: #241c20; }
.checkout-intro { margin-bottom: 2rem; }
.checkout-intro h1 { margin: 0 0 .65rem; font-size: clamp(2.4rem, 6vw, 4.25rem); font-weight: 500; letter-spacing: -.04em; }
.checkout-intro p { max-width: 680px; margin: 0; color: #725f67; font-size: 1.02rem; line-height: 1.75; }
.checkout-form { display: grid; gap: 1.25rem; padding: clamp(1.25rem, 4vw, 2.25rem); border: 1px solid #ded4d6; background: #fffdfb; box-shadow: 0 24px 60px rgba(57, 26, 38, .08); }
.checkout-validation-summary:empty { display: none; }
.checkout-section { padding: 0 0 1.5rem; border-bottom: 1px solid #eadfe1; }
.checkout-section-heading { margin-bottom: 1rem; }
.checkout-section-heading h2 { margin: 0 0 .35rem; font-size: clamp(1.25rem, 3vw, 1.55rem); font-weight: 650; }
.checkout-section-heading p { margin: 0; color: #725f67; line-height: 1.6; }
.checkout-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.25rem; }
.checkout-field { display: grid; align-content: start; gap: .45rem; }
.checkout-field--wide { grid-column: 1 / -1; }
.checkout-field label { font-size: .9rem; font-weight: 700; }
.checkout-field input, .checkout-field select { width: 100%; min-height: 48px; padding: .72rem .85rem; border: 1px solid #cdbfc2; border-radius: 0; background: #fff; color: #241c20; font: inherit; }
.checkout-field input:focus, .checkout-field select:focus { border-color: #8c2542; outline: 3px solid rgba(140, 37, 66, .12); }
.checkout-field .text-danger { min-height: 1.2em; font-size: .82rem; }
.checkout-note { margin: .85rem 0 0; color: #8c2542; font-size: .88rem; }
.checkout-home-fields.is-hidden { display: none; }
.checkout-submit { width: 100%; min-height: 52px; border: 0; padding: .85rem 1.2rem; background: #542136; color: #fff; font: inherit; font-weight: 750; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.checkout-submit:hover { background: #8c2542; transform: translateY(-1px); }
.checkout-submit:focus-visible { outline: 3px solid rgba(140, 37, 66, .28); outline-offset: 3px; }
.payment-report-page { display: grid; gap: 1.25rem; }
.payment-report-page .checkout-intro { margin-bottom: .5rem; }
.payment-transfer-info { padding: clamp(1.25rem, 4vw, 2.25rem); border: 1px solid #ded4d6; background: #fffdfb; box-shadow: 0 18px 44px rgba(57, 26, 38, .06); }
.payment-transfer-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; border-top: 1px solid #eadfe1; }
.payment-transfer-details div { padding: 1rem 0; border-bottom: 1px solid #eadfe1; }
.payment-transfer-details div:nth-child(even) { padding-left: 1.25rem; }
.payment-transfer-details dt { color: #725f67; font-size: .82rem; font-weight: 700; }
.payment-transfer-details dd { margin: .25rem 0 0; font-size: 1.02rem; overflow-wrap: anywhere; }
.payment-transfer-details .payment-transfer-amount { grid-column: 1 / -1; }
.payment-transfer-amount dd { color: #8c2542; font-size: clamp(1.65rem, 4vw, 2.35rem); font-weight: 750; }
.payment-report-form .checkout-section { padding-bottom: .5rem; border-bottom: 0; }
.payment-report-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.25rem; }
.payment-report-alert { margin: 0; padding: 1rem 1.25rem; border: 1px solid #dca5af; background: #fff3f5; }
.payment-report-success { margin-bottom: 1.25rem; padding: 1.25rem 1.4rem; border-left: 4px solid #2f7654; background: #eff8f3; color: #204d39; }
.payment-report-success strong { display: block; margin-bottom: .3rem; font-size: 1.1rem; }
.payment-report-success p { margin: 0; line-height: 1.6; }
.member-orders-table-wrap { border: 1px solid #ded4d6; background: #fffdfb; box-shadow: 0 18px 44px rgba(57, 26, 38, .06); }
.member-orders-table-wrap .table { margin-bottom: 0; }
.member-order-list { display: grid; gap: 1.25rem; }
.member-order-card { overflow: hidden; border: 1px solid #ded4d6; background: #fffdfb; box-shadow: 0 18px 44px rgba(57, 26, 38, .06); }
.member-order-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.35rem 1.5rem; border-bottom: 1px solid #eadfe1; }
.member-order-label { margin: 0 0 .25rem; color: #725f67; font-size: .78rem; font-weight: 700; }
.member-order-header h2 { margin: 0; font-size: clamp(.9rem, 2vw, 1.05rem); overflow-wrap: anywhere; }
.member-order-header time { display: block; margin-top: .35rem; color: #725f67; font-size: .86rem; }
.member-order-status { flex: 0 0 auto; padding: .45rem .7rem; background: #f2e5e9; color: #6f1f3a; font-size: .82rem; font-weight: 750; }
.member-order-items { padding: 0 1.5rem; }
.member-order-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 1.5rem; padding: 1.2rem 0; border-bottom: 1px solid #eadfe1; }
.member-order-item-copy, .member-order-item-price { display: grid; gap: .25rem; }
.member-order-item-copy span, .member-order-item-copy small, .member-order-item-price span { color: #725f67; }
.member-order-item-price { text-align: right; }
.member-order-footer { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: end; gap: 1.25rem; padding: 1.25rem 1.5rem 1.5rem; }
.member-order-delivery, .member-order-total { display: grid; gap: .25rem; }
.member-order-delivery span, .member-order-total span { color: #725f67; font-size: .82rem; font-weight: 700; }
.member-order-total { text-align: right; }
.member-order-total strong { color: #8c2542; font-size: 1.35rem; }
.member-order-action { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: .7rem 1rem; background: #542136; color: #fff; font-weight: 750; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.member-order-action:hover { background: #8c2542; color: #fff; transform: translateY(-1px); }
.member-order-waiting { padding: .65rem .85rem; border: 1px solid #c7b9bd; background: #f5f0f1; color: #5f5156; font-weight: 700; }
.member-orders-empty { padding: clamp(1.5rem, 5vw, 3rem); border: 1px solid #ded4d6; background: #fffdfb; text-align: center; box-shadow: 0 18px 44px rgba(57, 26, 38, .06); }
.member-orders-empty h2 { margin: 0 0 .5rem; }
.member-orders-empty p { margin: 0 0 1.25rem; color: #725f67; }
.cart-page { display: grid; gap: 1.25rem; }
.cart-page .checkout-intro { margin-bottom: .5rem; }
.cart-lines { display: grid; gap: 1rem; }
.cart-line { display: grid; grid-template-columns: 120px minmax(0, 1fr) auto; align-items: center; gap: 1.25rem; overflow: hidden; border: 1px solid #ded4d6; background: #fffdfb; box-shadow: 0 18px 44px rgba(57, 26, 38, .06); }
.cart-line--unavailable { background: #f7f3f4; }
.cart-line-image { display: grid; width: 120px; height: 120px; place-items: center; overflow: hidden; background: #eee6e5; color: #725f67; font-size: .82rem; }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-copy { padding: 1rem 0; }
.cart-line-copy h2 { margin: 0 0 .35rem; font-size: 1.12rem; }
.cart-line-copy p, .cart-line-copy small { display: block; margin: 0; color: #725f67; }
.cart-line-copy small { margin-top: .3rem; }
.cart-line-copy .text-danger { display: block; margin-top: .55rem; font-size: .86rem; }
.cart-line-price { display: grid; min-width: 150px; gap: .25rem; padding: 1rem 1.25rem 1rem 0; text-align: right; }
.cart-line-price span { color: #725f67; font-size: .88rem; }
.cart-line-price strong { margin-top: .25rem; color: #8c2542; font-size: 1.2rem; }
.cart-summary { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; padding: 1.35rem 1.5rem; border: 1px solid #ded4d6; background: #fffdfb; box-shadow: 0 18px 44px rgba(57, 26, 38, .06); }
.cart-summary > div:first-child { display: grid; gap: .25rem; }
.cart-summary span { color: #725f67; font-size: .85rem; font-weight: 700; }
.cart-summary strong { color: #8c2542; font-size: 1.55rem; }
.cart-actions { display: flex; gap: .75rem; }
.cart-secondary-action { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: .7rem 1rem; border: 1px solid #8c2542; color: #8c2542; font-weight: 750; text-decoration: none; }
.cart-secondary-action:hover { background: #f5e9ec; color: #6f1f3a; }
@media (max-width: 700px) {
  .checkout-page { padding: 1.5rem .85rem 3rem; }
  .checkout-intro { margin-bottom: 1.4rem; }
  .checkout-form { gap: 1rem; padding: 1rem; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-field--wide { grid-column: auto; }
  .payment-transfer-details, .payment-report-grid { grid-template-columns: 1fr; }
  .payment-transfer-details .payment-transfer-amount { grid-column: auto; }
  .payment-transfer-details div:nth-child(even) { padding-left: 0; }
  .member-order-header, .member-order-item { grid-template-columns: 1fr; flex-direction: column; }
  .member-order-item-price { text-align: left; }
  .member-order-footer { grid-template-columns: 1fr; align-items: stretch; }
  .member-order-total { text-align: left; }
  .member-order-action, .member-order-waiting { width: 100%; text-align: center; }
  .cart-line { grid-template-columns: 84px minmax(0, 1fr); align-items: start; }
  .cart-line-image { width: 84px; height: 84px; }
  .cart-line-copy { padding: .9rem .9rem .9rem 0; }
  .cart-line-price { grid-column: 1 / -1; min-width: 0; padding: .9rem; border-top: 1px solid #eadfe1; text-align: left; }
  .cart-summary, .cart-actions { align-items: stretch; flex-direction: column; }
  .cart-actions a { width: 100%; }
}
.home-showcase{max-width:1500px;margin:0 auto;padding:clamp(.75rem,2vw,2rem) 0 0}.home-carousel{position:relative;overflow:hidden;border-radius:1rem;background:#221d20}.home-carousel-slide{margin:0;position:relative}.home-carousel img{width:100%;height:clamp(330px,55vw,680px);object-fit:cover;display:block;filter:contrast(1.04)}.home-carousel-slide::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(16,12,14,.72),rgba(16,12,14,.16) 58%,rgba(16,12,14,.04))}.carousel-copy{position:absolute;z-index:1;inset:auto auto clamp(2rem,7vw,6rem) clamp(1.5rem,7vw,7rem);max-width:min(660px,75%);color:#fff;text-align:left;text-shadow:none}.carousel-kicker{margin:0 0 .9rem;color:#f2dce2;font-size:.78rem;font-weight:700;letter-spacing:.14em}.carousel-copy h1,.home-empty-hero h1{margin:0;font-size:clamp(2.4rem,5.5vw,5.8rem);line-height:.98;letter-spacing:-.055em}.carousel-copy>p:not(.carousel-kicker){max-width:38rem;margin:1rem 0 1.4rem;font-size:clamp(1rem,1.6vw,1.25rem);line-height:1.6}.carousel-cta{display:inline-block;background:#fff;color:#321925;padding:.85rem 1.15rem;font-weight:800;text-decoration:none;transition:transform .25s ease,background .25s ease}.carousel-cta:hover{background:#f0d8df;color:#321925;transform:translateY(-2px)}.home-carousel-dots{position:absolute;z-index:2;bottom:1.4rem;right:1.5rem;display:flex;gap:.5rem}.home-carousel-dots button{width:.7rem;height:.7rem;border:1px solid #fff;border-radius:50%;background:transparent}.home-carousel-dots button.active{background:#fff}.home-empty-hero{padding:clamp(4rem,10vw,8rem);background:#321925;color:#fff;border-radius:1rem}.home-trust-list{display:grid;grid-template-columns:repeat(3,1fr);max-width:1120px;margin:0 auto;padding:2rem 1rem 3.5rem;gap:1rem;text-align:center}.home-trust-list p{margin:0;padding:1rem;border-left:1px solid #d9ced0}.home-trust-list p:first-child{border-left:0}.home-trust-list strong,.home-trust-list span{display:block}.home-trust-list strong{font-size:1.05rem}.home-trust-list span{margin-top:.35rem;color:#6d6065;font-size:.9rem}@media(max-width:640px){.home-showcase{padding:0}.home-carousel{border-radius:0}.home-carousel img{height:clamp(420px,120vw,580px)}.carousel-copy{inset:auto 1.5rem 4rem;max-width:none}.home-carousel-slide::after{background:linear-gradient(0deg,rgba(16,12,14,.78),rgba(16,12,14,.05) 70%)}.home-trust-list{grid-template-columns:1fr;padding:1.5rem 1rem 2.5rem}.home-trust-list p{border-left:0;border-top:1px solid #d9ced0}.home-trust-list p:first-child{border-top:0}}
.admin-order-table { width: 100%; border-collapse: collapse; }
.admin-order-table th, .admin-order-table td { border: 1px solid #9ca3af; padding: .6rem; vertical-align: top; }
.admin-order-table th { background: #f3f4f6; }
