@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ot-bg: #ffffff;
  --ot-fg: #0d0d0d;
  --ot-fg-muted: #6b6b6b;
  --ot-line: #e7e5e0;
  --ot-warm-50: #faf8f4;
  --ot-warm-100: #f3efe7;
  --ot-warm-200: #ece6da;
  --ot-warm-300: #d8d0bf;
  --ot-accent: #e9c100;
  --ot-dark: #0a0a0a;

  --ot-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ot-font-serif: 'Cormorant Garamond', 'Times New Roman', serif;

  --ot-tracking: 0.14em;
  --ot-tracking-tight: 0.04em;

  --ot-container: 1320px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ot-bg);
  color: var(--ot-fg);
  font-family: var(--ot-font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .65; color: inherit; }

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

.ot-container { max-width: var(--ot-container); margin: 0 auto; padding: 0 32px; }

/* ===== Promo bar ===== */
.ot-promo {
  background: var(--ot-accent);
  color: var(--ot-dark);
  text-align: center;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 16px;
}
.ot-promo strong { font-weight: 700; }

/* ===== Thin header ===== */
.ot-header {
  background: var(--ot-bg);
  border-bottom: 1px solid var(--ot-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.ot-header-inner {
  max-width: var(--ot-container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 56px;
}

.ot-header-left { display: flex; align-items: center; gap: 12px; }
.ot-burger {
  background: none;
  border: 0;
  font-size: 16px;
  color: var(--ot-fg);
  padding: 6px 8px;
  cursor: pointer;
}

.ot-logo { display: inline-flex; align-items: center; color: var(--ot-fg); }
.ot-logo img { height: 28px; width: auto; display: block; }
.ot-logo:hover { opacity: .7; }
@media (max-width: 768px) {
  .ot-logo img { height: 22px; }
}

/* === Inline nav menu === */
.ot-header-nav { display: flex; justify-content: center; }
.ot-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ot-nav-item { position: relative; }
.ot-nav-link {
  display: inline-block;
  color: var(--ot-fg) !important;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  font-weight: 500;
  padding: 18px 14px;
  white-space: nowrap;
  cursor: pointer;
}
.ot-nav-link::after { display: none; }
.ot-nav-link:hover { opacity: .6; }

.ot-nav .dropdown-menu {
  border: 0;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  padding: 24px;
  font-size: 12px;
  margin-top: 0;
}
.ot-nav .dropdown-item {
  padding: 6px 8px;
  font-size: 12px;
  color: var(--ot-fg);
}
.ot-nav .dropdown-item:hover { background: var(--ot-warm-50); }

/* === Right-side icons === */
.ot-header-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ot-icon-btn,
.ot-icon-btn-wrap > .dropdown > .ot-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: none;
  color: var(--ot-fg);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  border-radius: 0;
  padding: 0;
}
.ot-icon-btn i { font-size: 15px; }
.ot-icon-btn:hover { opacity: .55; }
.ot-icon-btn::after { display: none !important; }

.ot-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--ot-fg);
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* === Cart drawer (slide-in from right) === */
.ot-cart-trigger { position: relative; }

.ot-cart-drawer {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none;
}
.ot-cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  transition: opacity .25s ease;
}
.ot-cart-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,.08);
}
body.ot-cart-open { overflow: hidden; }
body.ot-cart-open .ot-cart-drawer { pointer-events: auto; }
body.ot-cart-open .ot-cart-backdrop { opacity: 1; }
body.ot-cart-open .ot-cart-panel { transform: translateX(0); }

.ot-cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; border-bottom: 1px solid var(--ot-line);
}
.ot-cart-head h3 {
  margin: 0; font-family: var(--ot-font-sans);
  font-size: 12px; letter-spacing: var(--ot-tracking);
  text-transform: uppercase; font-weight: 600;
}
.ot-cart-count { color: var(--ot-fg-muted); font-weight: 400; margin-left: 4px; }
.ot-cart-close {
  background: none; border: 0; padding: 0; line-height: 1;
  font-size: 28px; cursor: pointer; color: var(--ot-fg);
  width: 28px; height: 28px;
}
.ot-cart-close:hover { opacity: .55; }

.ot-cart-body { flex: 1; overflow-y: auto; padding: 6px 24px 16px; }

.ot-cart-items { list-style: none; margin: 0; padding: 0; }
.ot-cart-item {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 14px; padding: 18px 0;
  border-bottom: 1px solid var(--ot-line);
  align-items: flex-start;
}
.ot-cart-item:first-child { padding-top: 12px; }
.ot-cart-item:last-child { border-bottom: 0; }
.ot-cart-thumb {
  display: block; aspect-ratio: 1 / 1;
  background: var(--ot-warm-100); overflow: hidden;
}
.ot-cart-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ot-cart-name {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ot-fg); margin-bottom: 6px;
}
.ot-cart-name:hover { opacity: 1; color: var(--ot-fg); }
.ot-cart-meta {
  list-style: none; margin: 0 0 6px; padding: 0;
  font-size: 11px; color: var(--ot-fg-muted);
}
.ot-cart-meta li { padding: 1px 0; }
.ot-cart-line-bottom {
  display: flex; gap: 8px; align-items: baseline;
  font-size: 13px; margin-top: 6px;
}
.ot-cart-qty { color: var(--ot-fg-muted); }
.ot-cart-total { font-weight: 500; color: var(--ot-fg); }

.ot-cart-remove-form { margin: 0; }
.ot-cart-remove {
  background: none; border: 0; cursor: pointer; padding: 4px 8px;
  font-size: 18px; line-height: 1; color: var(--ot-fg-muted);
}
.ot-cart-remove:hover { color: var(--ot-fg); }

.ot-cart-totals {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--ot-line);
}
.ot-cart-totals > div {
  display: flex; justify-content: space-between;
  padding: 4px 0; font-size: 13px; color: var(--ot-fg);
}
.ot-cart-totals > div:last-child {
  margin-top: 6px; padding-top: 12px;
  border-top: 1px solid var(--ot-line);
  font-size: 16px; font-weight: 500;
}

.ot-cart-actions {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--ot-line);
  display: flex; flex-direction: column; gap: 10px;
}
.ot-cart-btn {
  display: block; text-align: center; padding: 14px 18px;
  background: var(--ot-fg); color: #fff;
  text-transform: uppercase; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; transition: background .18s ease;
}
.ot-cart-btn:hover { background: #000; color: #fff; opacity: 1; }
.ot-cart-btn-secondary {
  background: #fff; color: var(--ot-fg);
  border: 1px solid var(--ot-fg);
}
.ot-cart-btn-secondary:hover { background: var(--ot-fg); color: #fff; }

.ot-cart-empty {
  text-align: center; padding: 40px 16px;
  color: var(--ot-fg-muted); font-size: 13px;
}
.ot-cart-empty p { margin: 0 0 18px; }

@media (max-width: 480px) {
  .ot-cart-panel { width: 100vw; }
}

/* === Search overlay === */
.ot-search-overlay {
  border-top: 1px solid var(--ot-line);
  background: var(--ot-warm-50);
}
.ot-search-overlay-inner {
  max-width: var(--ot-container);
  margin: 0 auto;
  padding: 18px 28px;
}
.ot-search-overlay .input-group { margin: 0; }

/* === Mobile collapsed menu === */
.ot-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--ot-bg);
  overflow-y: auto;
  border-top: 0;
  padding: 0;
}
.ot-mobile-menu.collapsing,
.ot-mobile-menu.show { display: block; }

.ot-mobile-menu-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
}

.ot-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ot-line);
  position: sticky;
  top: 0;
  background: var(--ot-bg);
  z-index: 2;
}
.ot-mobile-menu-eyebrow {
  font-size: 10px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ot-fg-muted);
}
.ot-mobile-menu-close {
  background: none;
  border: 0;
  font-size: 18px;
  color: var(--ot-fg);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.ot-mobile-menu-close:hover { opacity: .55; }

.ot-mobile-menu .ot-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 8px 0 0;
}

.ot-mobile-menu .ot-nav-item {
  position: relative;
  border-bottom: 1px solid var(--ot-warm-100);
}
.ot-mobile-menu .ot-nav-item.has-children {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.ot-mobile-menu .ot-nav-link {
  padding: 18px 24px;
  font-size: 13px;
  letter-spacing: var(--ot-tracking);
  border-bottom: 0;
  display: block;
}
.ot-mobile-menu .ot-nav-item.has-children > .ot-nav-link::after { display: none; }

.ot-nav-toggle {
  background: none;
  border: 0;
  width: 56px;
  height: 56px;
  color: var(--ot-fg);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
  grid-column: 2;
}
.ot-nav-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.ot-nav-toggle:hover { opacity: .55; }

.ot-mobile-menu .ot-submenu {
  grid-column: 1 / -1;
  background: var(--ot-warm-50);
}
.ot-submenu-list {
  margin: 0;
  padding: 4px 0 12px;
}
.ot-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 12px 36px;
  font-size: 13px;
  color: var(--ot-fg);
  letter-spacing: 0.02em;
}
.ot-submenu-link:hover { opacity: .65; }
.ot-submenu-all {
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: var(--ot-tracking);
  font-weight: 500;
  margin-top: 6px;
  border-top: 1px solid var(--ot-warm-200);
  padding-top: 14px;
  padding-bottom: 14px;
}
.ot-submenu-all i { font-size: 11px; }

@media (min-width: 992px) {
  .ot-mobile-menu { display: none !important; }
}

main > .container,
main > div > .container { max-width: var(--ot-container); }

#account-login,
#account-register,
#account-forgotten,
#account-account,
#account-address,
#account-edit,
#account-password,
#account-wishlist,
#account-order,
#account-return,
#account-download,
#account-reward,
#account-transaction,
#account-subscription,
#account-payment-method,
#account-newsletter { padding-bottom: 96px; }

/* ===== Information / static pages ===== */
.ot-info-breadcrumb {
  border-bottom: 1px solid var(--ot-line);
  background: var(--ot-bg);
}
.ot-info-bc-inner {
  max-width: var(--ot-container);
  margin: 0 auto;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: var(--ot-tracking-tight);
  color: var(--ot-fg-muted);
}
.ot-info-bc-inner a { color: inherit; }
.ot-info-bc-inner span { margin: 0 6px; opacity: .5; }

.ot-info-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.ot-info-head {
  text-align: center;
  margin-bottom: 48px;
}
.ot-info-head h1 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 12px 0 0;
  letter-spacing: 0.005em;
}
.ot-info-body { font-size: 15px; line-height: 1.75; color: var(--ot-fg); }
.ot-info-body > .ot-info-hero {
  width: calc(100% + 64px);
  margin-left: -32px;
  height: 420px;
  background-size: cover;
  background-position: center;
  margin-bottom: 48px;
}
.ot-info-body p { margin: 0 0 18px; }
.ot-info-body p.lead {
  font-family: var(--ot-font-serif);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ot-fg);
  margin: 0 0 32px;
}
.ot-info-body h2,
.ot-info-body h3 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: 28px;
  margin: 48px 0 16px;
  letter-spacing: 0.005em;
}
.ot-info-body h4 {
  font-family: var(--ot-font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  font-weight: 600;
  color: var(--ot-fg-muted);
  margin: 32px 0 12px;
}
.ot-info-body ul, .ot-info-body ol {
  padding-left: 20px;
  margin: 0 0 24px;
}
.ot-info-body li { margin-bottom: 8px; }
.ot-info-body blockquote {
  border-left: 2px solid var(--ot-fg);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--ot-font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ot-fg);
}
.ot-info-body .ot-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0;
}
@media (max-width: 700px) {
  .ot-info-body .ot-info-grid { grid-template-columns: 1fr; }
}
.ot-info-body .ot-info-grid .item h4 {
  margin-top: 0;
}
.ot-info-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--ot-line);
}
.ot-info-cta p { color: var(--ot-fg-muted); margin: 0 0 16px; }

.ot-info-sub {
  color: var(--ot-fg-muted);
  font-size: 14px;
  margin: 16px auto 0;
  max-width: 540px;
}

/* ===== Contact page ===== */
.ot-contact-page { max-width: 1100px; }
.ot-contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  margin-top: 24px;
}
@media (max-width: 800px) { .ot-contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.ot-contact-card { font-size: 14px; line-height: 1.65; }
.ot-contact-card h4 {
  font-family: var(--ot-font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  color: var(--ot-fg-muted);
  margin: 24px 0 6px;
  font-weight: 600;
}
.ot-contact-card h4:first-child { margin-top: 0; }
.ot-contact-card address { font-style: normal; margin: 0 0 8px; }
.ot-contact-card p { margin: 0 0 4px; }
.ot-contact-card a { color: var(--ot-fg); }
.ot-contact-card a:hover { opacity: .65; }
.ot-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 4px;
  border-bottom: 1px solid var(--ot-fg);
  padding-bottom: 2px;
}
.ot-contact-social a { color: var(--ot-fg); }
.ot-contact-social span { opacity: .35; margin: 0 4px; }

.ot-contact-form-wrap h3 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 12px;
}
.ot-contact-intro { color: var(--ot-fg-muted); margin: 0 0 28px; }
.ot-contact-form { display: flex; flex-direction: column; gap: 18px; }
.ot-field { display: flex; flex-direction: column; gap: 6px; }
.ot-field label {
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ot-fg-muted);
}
.ot-field.required label::after { content: " *"; color: var(--ot-fg); }
.ot-field input,
.ot-field textarea {
  border: 0;
  border-bottom: 1px solid var(--ot-line);
  padding: 12px 0;
  font-size: 14px;
  font-family: var(--ot-font-sans);
  background: transparent;
  color: var(--ot-fg);
  border-radius: 0;
}
.ot-field input:focus,
.ot-field textarea:focus { outline: 0; border-bottom-color: var(--ot-fg); }
.ot-field textarea { resize: vertical; min-height: 120px; }
.ot-field-error { color: #b34040; font-size: 12px; }
.ot-contact-form .btn { align-self: flex-start; margin-top: 8px; }

.ot-contact-locations { margin-top: 64px; }
.ot-contact-locations h3 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 16px;
}
.ot-contact-locations .accordion-item { border: 0; border-bottom: 1px solid var(--ot-line); border-radius: 0; }
.ot-contact-locations .accordion-button {
  background: transparent;
  font-size: 12px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  padding: 18px 0;
  border-radius: 0 !important;
  box-shadow: none;
}
.ot-contact-locations .accordion-button:not(.collapsed) { background: transparent; color: var(--ot-fg); }
.ot-contact-locations .accordion-body { padding: 0 0 24px; font-size: 14px; }

/* ===== Checkout ===== */
.ot-checkout-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}
.ot-checkout-stepper {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ot-line);
}
.ot-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  color: var(--ot-fg-muted);
  padding: 6px 14px 6px 6px;
}
.ot-step span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ot-warm-100);
  color: var(--ot-fg-muted);
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}
.ot-step.active { color: var(--ot-fg); font-weight: 600; }
.ot-step.active span { background: var(--ot-fg); color: #fff; }
.ot-step.done span { background: var(--ot-fg); color: #fff; }
.ot-step.done { color: var(--ot-fg); }
.ot-step.done span::after { content: ""; }

.ot-checkout-head { margin: 24px 0 32px; }
.ot-checkout-head h1 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 12px;
  letter-spacing: 0.005em;
}
.ot-checkout-head p { color: var(--ot-fg-muted); font-size: 14px; max-width: 580px; margin: 0; }

.ot-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .ot-checkout-grid { grid-template-columns: 1fr; gap: 32px; } }

.ot-checkout-block {
  border-top: 1px solid var(--ot-line);
  padding: 32px 0;
}
.ot-checkout-block:first-child { border-top: 0; padding-top: 0; }
.ot-block-title {
  font-family: var(--ot-font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  color: var(--ot-fg-muted);
  font-weight: 600;
  margin: 0 0 20px;
}

/* Re-skin Bootstrap form widgets inside checkout */
.ot-checkout-page .form-control,
.ot-checkout-page .form-select {
  border: 0;
  border-bottom: 1px solid var(--ot-line);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  font-size: 14px;
  height: auto;
  box-shadow: none;
}
.ot-checkout-page .form-control:focus,
.ot-checkout-page .form-select:focus {
  outline: 0;
  border-bottom-color: var(--ot-fg);
  box-shadow: none;
}
.ot-checkout-page label,
.ot-checkout-page .col-form-label {
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ot-fg-muted);
  margin-bottom: 4px;
}
.ot-checkout-page .form-check-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--ot-fg);
  font-weight: 400;
}
.ot-checkout-page .form-check-input:checked {
  background-color: var(--ot-fg);
  border-color: var(--ot-fg);
}
.ot-checkout-page .invalid-feedback { font-size: 12px; }
.ot-checkout-page legend {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--ot-fg);
}
.ot-checkout-page fieldset { border: 0; padding: 0; margin: 0 0 16px; }
.ot-checkout-page .card,
.ot-checkout-page .alert {
  border: 1px solid var(--ot-line);
  border-radius: 0;
  background: var(--ot-warm-50);
}
.ot-checkout-page .table {
  font-size: 13px;
  border-color: var(--ot-line);
}
.ot-checkout-page .table th,
.ot-checkout-page .table td {
  border-color: var(--ot-line);
  padding: 10px 8px;
  vertical-align: middle;
}

.ot-checkout-aside { position: sticky; top: 80px; }
.ot-checkout-summary {
  background: var(--ot-warm-50);
  border: 1px solid var(--ot-line);
  padding: 28px 24px;
}
.ot-checkout-summary h4 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
}
.ot-checkout-summary-help { font-size: 12px; color: var(--ot-fg-muted); margin: 0 0 20px; }
.ot-checkout-summary-help a { color: var(--ot-fg); text-decoration: underline; }
.ot-checkout-features { list-style: none; padding: 0; margin: 24px 0 0; border-top: 1px solid var(--ot-line); padding-top: 18px; }
.ot-checkout-features li {
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--ot-fg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ot-checkout-features li i { color: var(--ot-fg-muted); margin-top: 3px; width: 14px; flex-shrink: 0; }

/* Confirm block CTA */
#checkout-confirm .btn-primary,
#checkout-confirm button[type="submit"] {
  width: 100%;
  padding: 18px 24px;
  font-size: 12px;
}

/* ===== Buttons ===== */
.btn,
button.btn,
.btn-primary,
.btn-outline-secondary {
  border-radius: 0 !important;
  border: 1px solid var(--ot-fg);
  background: var(--ot-fg);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: var(--ot-tracking);
  font-size: 11px;
  font-weight: 500;
  padding: 14px 28px;
  transition: opacity .2s ease;
}
.btn:hover,
.btn-primary:hover { opacity: .8; background: var(--ot-fg); color:#fff !important; }

.btn-light, .btn-outline-light {
  background: transparent;
  color: var(--ot-fg) !important;
  border-color: var(--ot-fg);
}
.btn-light:hover { background: var(--ot-fg); color: #fff !important; }

/* ===== Search input ===== */
#search input.form-control,
.ot-search input.form-control {
  border: 1px solid var(--ot-line);
  border-radius: 0;
  background: var(--ot-warm-50);
  font-size: 12px;
  padding: 0 14px;
  height: 48px;
}
#search button,
.ot-search .btn { border-radius: 0; height: 48px; padding: 0 18px; }
.ot-search { margin-bottom: 0; }

/* Header cart button — match search height for visual alignment */
#cart .btn { height: 48px; padding: 0 22px; }
#cart .dropdown { width: auto; display: inline-grid; }

/* ===== Hero ===== */
.ot-hero {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  margin-bottom: 80px;
}
.ot-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.ot-hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 48px 64px;
  max-width: 720px;
}
.ot-hero h1 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.005em;
}
.ot-hero p {
  font-size: 14px;
  letter-spacing: var(--ot-tracking-tight);
  max-width: 480px;
  margin: 0 0 24px;
  opacity: .92;
}
.ot-hero .btn { background: #fff; color: var(--ot-fg) !important; border-color: #fff; }
.ot-hero .btn:hover { background: var(--ot-fg); color: #fff !important; }

/* ===== Section heading ===== */
.ot-section { padding: 64px 0; }
.ot-section-head { text-align: center; margin-bottom: 48px; }
.ot-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  color: var(--ot-fg-muted);
  margin-bottom: 12px;
}
.ot-section-head h2 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin: 0;
}

/* ===== Category tile grid ===== */
.ot-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.ot-cat-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--ot-warm-100);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;
  color: #fff;
}
.ot-cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
}
.ot-cat-tile span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 12px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
}
.ot-cat-tile:hover { opacity: 1; }
.ot-cat-tile:hover::after { background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.7) 100%); }

@media (max-width: 540px) { .ot-cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Collections grid (1 featured + 3 supporting) ===== */
.ot-collections .ot-section-head { text-align: center; margin-bottom: 32px; }
.ot-coll-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  height: 600px;
}
.ot-coll-tile.is-featured { grid-column: 1; grid-row: 1 / span 3; }
.ot-coll-tile {
  position: relative;
  background-color: var(--ot-warm-100);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  transition: transform .35s ease;
}
.ot-coll-tile:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.ot-coll-body {
  padding: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ot-coll-eyebrow { color: rgba(255, 255, 255, .82); }
.ot-coll-tile h3 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: 22px;
  margin: 8px 0 6px;
  color: #fff;
}
.ot-coll-tile.is-featured h3 { font-size: clamp(28px, 2.4vw, 38px); margin-bottom: 10px; }
.ot-coll-tile p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
  max-width: 520px;
}
.ot-coll-badge {
  display: inline-block;
  background: var(--ot-accent);
  color: var(--ot-fg);
  font-size: 10px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.ot-coll-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  padding-bottom: 4px;
  transition: border-color .2s ease;
}
.ot-coll-tile:hover .ot-coll-cta { border-color: #fff; }

@media (max-width: 900px) {
  .ot-coll-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px repeat(3, 200px);
    height: auto;
  }
  .ot-coll-tile.is-featured { grid-column: 1; grid-row: 1; }
}

/* ===== Collection archive page ===== */
.ot-coll-hero {
  background-color: var(--ot-warm-200);
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 64px 0 56px;
}
.ot-coll-hero-inner {
  max-width: var(--ot-container);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.ot-coll-hero h1 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 8px 0 18px;
  color: #fff;
}
.ot-coll-hero p {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .9);
  margin: 0;
}
.ot-coll-archive { padding-top: 64px; padding-bottom: 32px; }
.ot-coll-archive .ot-section-head { text-align: center; margin-bottom: 36px; }
.ot-coll-curating {
  margin: 8px 0 0;
  color: var(--ot-fg-muted);
  font-size: 13px;
  font-style: italic;
}
.ot-coll-others { padding-top: 32px; padding-bottom: 96px; }
.ot-coll-others .ot-section-head { text-align: center; margin-bottom: 28px; }
.ot-coll-others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ot-coll-other-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--ot-warm-100);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
}
.ot-coll-other-tile span {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
}
.ot-coll-other-tile:hover { opacity: 1; transform: translateY(-2px); transition: transform .25s ease; }
@media (max-width: 768px) {
  .ot-coll-others-grid { grid-template-columns: 1fr; }
}

/* ===== Lifestyle split ===== */
.ot-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.ot-split-img { aspect-ratio: 4 / 5; background-size: cover; background-position: center; }
.ot-split-body {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ot-warm-50);
}
.ot-split-body h3 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 18px;
}
.ot-split-body p {
  color: var(--ot-fg-muted);
  margin-bottom: 24px;
  max-width: 460px;
}
.ot-split.reverse .ot-split-img { order: 2; }

@media (max-width: 768px) {
  .ot-split { grid-template-columns: 1fr; }
  .ot-split-body { padding: 40px 24px; }
  .ot-split.reverse .ot-split-img { order: 0; }
}

/* ===== Product card ===== */
.ot-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.ot-card { background: transparent; }
.ot-card-img {
  aspect-ratio: 1 / 1;
  background: var(--ot-warm-100);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ot-card-img .ot-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ot-fg);
  color: #fff;
  font-size: 10px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  padding: 5px 8px;
}
.ot-card h4 {
  font-family: var(--ot-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  margin: 16px 0 6px;
}
.ot-card .ot-price { font-size: 13px; color: var(--ot-fg); }
.ot-card .ot-price del { color: var(--ot-fg-muted); margin-right: 8px; font-weight: 400; }
.ot-card .ot-swatches { display: flex; gap: 6px; margin-top: 10px; }
.ot-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--ot-line);
  display: inline-block;
}

@media (max-width: 992px) { .ot-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .ot-products { grid-template-columns: repeat(2, 1fr); } }

/* ===== Home Contacts & Showroom ===== */
.ot-home-contacts {
  background: var(--ot-warm-100);
  padding: 80px 32px;
}
.ot-home-contacts-inner {
  max-width: var(--ot-container);
  margin: 0 auto;
}
.ot-home-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ot-home-contacts-pitch h3 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  margin: 0 0 16px;
}
.ot-home-contacts-pitch p {
  color: var(--ot-fg-muted);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 480px;
}
.ot-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ot-contact-list li {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ot-fg);
}
.ot-contact-list strong {
  display: block;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ot-fg);
}
.ot-contact-list a { color: var(--ot-fg); text-decoration: none; }
.ot-contact-list a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .ot-home-contacts { padding: 56px 24px; }
  .ot-home-contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .ot-contact-list { gap: 24px; }
}

/* ===== Inspirações (Instagram feed via LightWidget) ===== */
.ot-inspire .ot-section-head { text-align: center; margin-bottom: 32px; }
.ot-inspire-handle { margin-top: 4px; font-size: 13px; letter-spacing: var(--ot-tracking-tight); }
.ot-inspire-handle a { color: var(--ot-fg-muted); display: inline-flex; align-items: center; gap: 8px; }
.ot-inspire-handle a:hover { color: var(--ot-fg); opacity: 1; }
.ot-inspire-feed { background: var(--ot-warm-50); }
.ot-inspire-feed .lightwidget-widget { display: block; min-height: 320px; }

/* ===== WhatsApp floating bubble ===== */
.ot-wa-bubble {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .22);
  z-index: 1080;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ot-wa-bubble:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  opacity: 1;
}
.ot-wa-bubble:focus-visible { outline: 3px solid rgba(37, 211, 102, .35); outline-offset: 3px; }
@media (max-width: 600px) {
  .ot-wa-bubble { width: 52px; height: 52px; font-size: 26px; right: 16px; bottom: 16px; }
}

/* ===== Footer ===== */
footer {
  background: var(--ot-dark) !important;
  color: #b9b9b9;
  padding: 72px 0 28px;
  font-size: 12px;
  margin-top: 0;
}
footer .container { max-width: var(--ot-container); padding: 0 32px; }
footer h5 {
  color: #fff;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { color: #b9b9b9; }
footer a:hover { color: #fff; opacity: 1; }
.ot-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}
.ot-footer-legal {
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: var(--ot-tracking-tight);
  color: #6b6b6b;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ot-footer-legal a { color: #9b9b9b; }
.ot-footer-legal a:hover { color: #fff; }
.ot-footer-legal span { opacity: .35; }

.ot-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 16px;
  font-size: 11px;
  color: #6b6b6b;
}
.ot-pay-row { display: flex; flex-wrap: wrap; gap: 8px; }
.ot-pay {
  background: #1a1a1a;
  color: #b9b9b9;
  font-size: 9px;
  padding: 6px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 900px) { .ot-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ot-footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Misc OpenCart polish */
.breadcrumb { background: transparent; padding: 32px 0 24px; padding-left: 0; font-size: 11px; letter-spacing: var(--ot-tracking-tight); text-transform: uppercase; list-style:none; display:flex; flex-wrap:wrap; gap:8px; margin:0; }
.breadcrumb a { color: var(--ot-fg-muted); }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; padding-right: 8px; color: var(--ot-fg-muted); opacity: .5; }

/* ===========================================================
 * CATEGORY LISTING
 * ======================================================== */
.ot-cat-page { padding-bottom: 80px; }
.ot-cat-head { margin-bottom: 40px; }
.ot-cat-head h1 {
  font-family: var(--ot-font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.ot-cat-intro { color: var(--ot-fg-muted); max-width: 720px; }

.ot-cat-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 900px) { .ot-cat-layout { grid-template-columns: 1fr; gap: 32px; } }

.ot-filters { position: sticky; top: 16px; }
.ot-filter-group { padding: 18px 0; border-top: 1px solid var(--ot-line); }
.ot-filter-group:first-child { border-top: 0; padding-top: 0; }
.ot-filter-group h5 {
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 12px;
}
.ot-filter-group ul { list-style: none; margin: 0; padding: 0; }
.ot-filter-group li { margin-bottom: 8px; font-size: 13px; }
.ot-filter-group a { color: var(--ot-fg); }
.ot-filter-group a:hover { opacity: .65; }
.ot-filter-group a.is-active { font-weight: 600; border-bottom: 1px solid var(--ot-fg); padding-bottom: 1px; }
.ot-select {
  width: 100%;
  border: 1px solid var(--ot-line);
  background: var(--ot-bg);
  border-radius: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
}
.ot-select:focus { outline: none; border-color: var(--ot-fg); }

.ot-cat-toolbar {
  display: flex;
  justify-content: flex-end;
  font-size: 11px;
  letter-spacing: var(--ot-tracking-tight);
  text-transform: uppercase;
  color: var(--ot-fg-muted);
  margin-bottom: 24px;
}

.ot-pagination { margin-top: 48px; display:flex; justify-content:center; }
.ot-pagination .pagination { gap: 4px; flex-wrap: wrap; }
.ot-pagination .page-link {
  border-radius: 0;
  border: 1px solid var(--ot-line);
  color: var(--ot-fg);
  font-size: 12px;
  letter-spacing: var(--ot-tracking-tight);
  padding: 8px 14px;
}
.ot-pagination .page-item.active .page-link {
  background: var(--ot-fg);
  border-color: var(--ot-fg);
  color: #fff;
}

.ot-empty { color: var(--ot-fg-muted); padding: 32px 0; }

.ot-rating { display:inline-flex; gap:2px; align-items:center; font-size:14px; }
.ot-star { color: var(--ot-line); }
.ot-star.filled { color: var(--ot-accent); }
.ot-rating a { margin-left: 8px; font-size: 11px; letter-spacing: var(--ot-tracking-tight); text-transform: uppercase; color: var(--ot-fg-muted); }

/* ===========================================================
 * PRODUCT DETAIL — Laskasas-inspired layout
 * ======================================================== */
.ot-prod-page { padding-bottom: 80px; }
.ot-breadcrumb { padding: 18px 0; margin: 0; font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase; color: var(--ot-fg-muted); }
.ot-breadcrumb a { color: var(--ot-fg-muted); }
.ot-breadcrumb .breadcrumb-item + .breadcrumb-item::before { content: "·"; padding: 0 10px; color: var(--ot-fg-muted); }

.ot-prod-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .ot-prod-layout { grid-template-columns: 1fr; gap: 32px; } }

/* Gallery — vertical strip + main */
.ot-gallery-v { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: flex-start; }
.ot-gallery-thumbs-v { display: flex; flex-direction: column; gap: 10px; }
.ot-gallery-thumbs-v a {
  display: block; aspect-ratio: 1 / 1; background: var(--ot-warm-100); overflow: hidden;
  opacity: .55; transition: opacity .18s ease;
}
.ot-gallery-thumbs-v a.is-active, .ot-gallery-thumbs-v a:hover { opacity: 1; }
.ot-gallery-thumbs-v img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ot-gallery-stage { position: relative; }
.ot-gallery-main {
  display: block; aspect-ratio: 4 / 5; background: var(--ot-warm-100); overflow: hidden;
}
.ot-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.ot-flag-promo {
  position: absolute; top: 14px; left: 14px; z-index: 5;
  background: #810000; color: #fff; padding: 4px 12px;
  font-size: 10px; letter-spacing: var(--ot-tracking); font-weight: 600; text-transform: uppercase;
}
.ot-flag-discount {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  background: #810000; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ot-font-serif); font-weight: 500; font-size: 18px;
}
@media (max-width: 600px) {
  .ot-gallery-v { grid-template-columns: 64px 1fr; gap: 12px; }
}

/* Info column */
.ot-prod-info { padding-top: 6px; }
.ot-eyebrow {
  display: inline-block; font-size: 10px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  color: var(--ot-fg-muted); margin-bottom: 6px;
}
.ot-prod-info h1 {
  font-family: var(--ot-font-sans);
  font-weight: 700; font-size: 22px; letter-spacing: 0.02em;
  line-height: 1.15; text-transform: uppercase;
  margin: 8px 0 14px;
}

/* Color swatches — preview-style: 54×48 with bottom indicator */
.ot-prod-color-block { margin: 0 0 22px; }
.ot-color-label {
  font-size: 13px; color: var(--ot-fg); margin: 0 0 10px;
  display: block; font-weight: 400;
}
.ot-color-current { font-weight: 400; color: var(--ot-fg); }
.ot-color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.ot-color-swatch {
  position: relative; width: 54px; height: 48px;
  border: 1px solid #d8d4cc; cursor: pointer; overflow: hidden;
  opacity: .4; transition: opacity .18s ease;
}
.ot-color-swatch input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.ot-color-swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ot-color-swatch:hover { opacity: 1; }
.ot-color-swatch:has(input:checked) { opacity: 1; }
.ot-color-swatch:has(input:checked)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: #810000;
}
.ot-color-fallback { display: block; width: 100%; height: 100%; background: var(--ot-warm-200); }

/* Color swatches required error */
.ot-color-swatches.is-invalid .ot-color-swatch { border-color: #c33; }
.ot-color-error {
  margin-top: 10px; padding: 8px 12px;
  background: #fdecec; border-left: 3px solid #c33;
  color: #6b1c1c; font-size: 12px; line-height: 1.45;
}
.ot-color-error[hidden] { display: none; }

/* Price block — preview-style sans-serif compact */
.ot-prod-price { display: flex; align-items: center; gap: 10px; margin: 18px 0 8px; flex-wrap: wrap; }
.ot-price-old {
  font-family: var(--ot-font-sans); color: var(--ot-fg-muted);
  text-decoration: line-through; font-size: 13px; font-weight: 400;
}
.ot-price-discount {
  background: #810000; color: #fff; padding: 3px 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
}
.ot-price-new {
  font-family: var(--ot-font-sans); font-size: 18px; font-weight: 400;
  color: var(--ot-fg); letter-spacing: 0;
}
.ot-price-tax { display:block; color: var(--ot-fg-muted); font-size: 11px; margin-bottom: 6px; }

/* Promotion date line — uppercase dark red */
.ot-promo-date {
  margin: 0 0 18px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: #6e2b39; text-transform: uppercase;
}
.ot-promo-date span { color: #6e2b39; font-weight: 600; }

/* Klarna badge — pink logo + payment line, on light gray panel */
.ot-klarna {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; background: #f7f7f7; border-radius: 6px; border: 0;
  margin: 4px 0 24px; font-size: 13px; line-height: 1.45;
}
.ot-klarna-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: #ffb3c7; border-radius: 8px;
  width: 64px; height: 42px; flex-shrink: 0;
  font-weight: 700; font-size: 15px; color: #0a0a0a; letter-spacing: 0.01em;
}
.ot-klarna-text a { text-decoration: underline; display: inline-block; margin-top: 2px; }

/* Form / options */
.ot-prod-options { margin: 4px 0 14px; }
.ot-form-group { margin-bottom: 16px; }
.ot-form-group label {
  display: block; font-size: 11px; letter-spacing: var(--ot-tracking);
  text-transform: uppercase; font-weight: 500; margin-bottom: 8px;
}
.ot-form-group.required label::after { content: " *"; color: #c33; }
.ot-input {
  width: 100%; border: 1px solid var(--ot-line); background: var(--ot-bg);
  padding: 12px 14px; border-radius: 0; font: inherit; font-size: 13px;
}
.ot-input:focus { outline: none; border-color: var(--ot-fg); }
.ot-input.is-invalid { border-color: #c33; }
.ot-select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ot-fg) 50%), linear-gradient(135deg, var(--ot-fg) 50%, transparent 50%); background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }

.ot-swatches-row { display: flex; flex-wrap: wrap; gap: 10px; }
.ot-swatch-opt {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border: 1px solid var(--ot-line); cursor: pointer; font-size: 12px;
  letter-spacing: var(--ot-tracking-tight);
}
.ot-swatch-opt input { display: none; }
.ot-swatch-opt:has(input:checked) { border-color: var(--ot-fg); background: var(--ot-warm-50); }
.ot-check { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 12px; letter-spacing: var(--ot-tracking-tight); }

/* Stock */
.ot-stock { display: block; font-size: 12px; color: var(--ot-fg-muted); margin: 12px 0 8px; }
.ot-stock strong { color: var(--ot-fg); font-weight: 500; }

/* Actions row — preview style: square qty box w/ vertical +/- on right */
.ot-prod-actions { display: flex; gap: 8px; align-items: stretch; margin: 14px 0 22px; }
.ot-qty-control {
  display: inline-flex; align-items: stretch;
  border: 1px solid #c9c9c9; width: 108px; height: 54px;
  box-sizing: border-box;
}
.ot-qty-control .ot-input {
  flex: 1; border: 0; outline: 0; background: transparent;
  text-align: center; font-size: 15px; font-weight: 500;
  width: 50px; padding: 0; font-family: inherit;
  box-sizing: border-box;
}
.ot-qty-btns {
  display: flex; flex-direction: column;
  border-left: 1px solid #c9c9c9;
  width: 36px; height: 100%; align-self: stretch;
}
.ot-qty-control .ot-icon-btn {
  flex: 1 1 0; width: 100%; min-height: 0;
  margin: 0; padding: 0; border: 0; background: transparent;
  cursor: pointer; font-family: inherit; font-size: 16px;
  line-height: 1; color: var(--ot-fg);
  letter-spacing: 0; text-transform: none;
  display: flex; align-items: center; justify-content: center;
}
.ot-qty-control .ot-icon-btn:first-child { border-bottom: 1px solid #c9c9c9; }
.ot-qty-control .ot-icon-btn:hover { background: #f7f7f7; opacity: 1; }
.ot-qty-control .ot-icon-btn:focus { outline: none; }
.ot-cta {
  flex: 1; height: 54px; padding: 0 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ot-fg); color: #fff; border: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600;
  transition: background .18s ease;
}
.ot-cta:hover { background: #000; color: #fff; }
.ot-cta:disabled { opacity: .55; cursor: not-allowed; }

.ot-quantity-discount { padding: 16px 0; border-top: 1px solid var(--ot-line); font-size: 12px; }
.ot-quantity-discount ul { list-style: none; margin: 8px 0 0; padding: 0; }
.ot-alert { background: var(--ot-warm-100); padding: 12px 14px; font-size: 12px; margin: 12px 0; border-left: 3px solid var(--ot-accent); }

/* ============== Accordion (DIMENSÕES / etc.) ============== */
.ot-prod-accordion { margin: 24px 0 56px; border-top: 1px solid var(--ot-line); }
.ot-prod-accordion details { border-bottom: 1px solid var(--ot-line); }
.ot-prod-accordion summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.ot-prod-accordion summary::-webkit-details-marker { display: none; }
.ot-prod-accordion summary::after {
  content: "+"; font-family: var(--ot-font-serif); font-size: 22px; font-weight: 300;
  transition: transform .25s ease;
}
.ot-prod-accordion details[open] summary::after { content: "−"; }
.ot-acc-body { padding: 4px 0 28px; font-size: 13px; line-height: 1.7; max-width: 820px; }
.ot-acc-body p { margin: 0 0 12px; }
.ot-acc-body ul { padding-left: 20px; margin: 0 0 12px; }
.ot-acc-body a { color: var(--ot-fg); text-decoration: underline; }
.ot-acc-subhead { font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase; font-weight: 500; margin: 16px 0 10px; }
.ot-spec-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 16px;
  padding: 10px 0; border-top: 1px solid var(--ot-line); font-size: 13px;
}
.ot-spec-row:first-child { border-top: 0; }
.ot-spec-row span:first-child { color: var(--ot-fg-muted); }

/* Share */
.ot-prod-share { display: flex; align-items: center; gap: 14px; padding: 18px 0 32px; border-top: 1px solid var(--ot-line); margin-top: -32px; }
.ot-prod-share span { font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase; color: var(--ot-fg-muted); }
.ot-prod-share a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 1px solid var(--ot-line); border-radius: 50%;
  font-size: 13px; font-weight: 500; color: var(--ot-fg);
}
.ot-prod-share a:hover { background: var(--ot-fg); color: #fff; opacity: 1; }

.ot-prod-reviews { padding: 40px 0; border-top: 1px solid var(--ot-line); }

/* ===========================================================
 * CART
 * ======================================================== */
.ot-cart-page { padding-bottom: 80px; }

.ot-checkout-locked { display: none; }

/* Inline shipping/payment method picker */
.ot-method-picker { margin: 0; }
.ot-method-picker-help {
  margin: 0 0 16px;
  color: var(--ot-fg-muted);
  font-size: 13px;
}
.ot-method-picker-loading {
  padding: 24px 0;
  font-size: 13px;
}
.ot-method-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.ot-method-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--ot-line);
  background: var(--ot-bg);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
  margin: 0;
}
.ot-method-option:hover { border-color: var(--ot-fg); }
.ot-method-option.is-selected {
  border-color: var(--ot-fg);
  background: var(--ot-warm-50, #faf8f5);
}
.ot-method-option input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--ot-fg);
}
.ot-method-option-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ot-method-option-name {
  font-family: var(--ot-font-sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: var(--ot-tracking);
  font-weight: 600;
  color: var(--ot-fg);
}
.ot-method-option-desc {
  font-size: 14px;
  color: var(--ot-fg-muted);
  line-height: 1.4;
}
.ot-method-option-price {
  font-family: var(--ot-font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ot-fg);
  white-space: nowrap;
}
.ot-checkout-comment { margin-top: 28px; }
.ot-stepper {
  display: flex; gap: 0; list-style: none;
  margin: 24px 0 48px; padding: 0;
  border-top: 1px solid var(--ot-line);
  border-bottom: 1px solid var(--ot-line);
}
.ot-stepper li {
  flex: 1; padding: 18px 12px; text-align: center;
  font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  color: var(--ot-fg-muted); position: relative;
}
.ot-stepper li.active { color: var(--ot-fg); font-weight: 500; }
.ot-stepper li.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--ot-fg);
}
.ot-stepper li span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; line-height: 1;
  border-radius: 50%; border: 1px solid currentColor;
  font-size: 12px; font-weight: 500; margin-right: 10px;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .ot-stepper li {
    padding: 14px 4px;
    font-size: 9px;
    letter-spacing: 0.06em;
    min-width: 0;
  }
  .ot-stepper li span {
    display: flex; margin: 0 auto 6px;
    width: 24px; height: 24px; font-size: 11px;
  }
}

.ot-cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 900px) { .ot-cart-layout { grid-template-columns: 1fr; gap: 32px; } }

.ot-cart-head h1 {
  font-family: var(--ot-font-serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); margin: 0 0 6px;
}
.ot-cart-head p { color: var(--ot-fg-muted); margin-bottom: 28px; font-size: 13px; }

.ot-cart-list { display: flex; flex-direction: column; }
.ot-cart-line {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--ot-line);
}
.ot-cart-line:last-child { border-bottom: 1px solid var(--ot-line); }
.ot-line-img { display: block; aspect-ratio: 1 / 1; background: var(--ot-warm-100); overflow:hidden; }
.ot-line-img img { width: 100%; height: 100%; object-fit: cover; }
.ot-line-name {
  display: inline-block; font-size: 12px; font-weight: 500;
  letter-spacing: var(--ot-tracking); text-transform: uppercase; margin-bottom: 6px;
}
.ot-stock-warn { color: #c33; }
.ot-line-meta { list-style:none; padding: 0; margin: 0 0 14px; font-size: 11px; color: var(--ot-fg-muted); }
.ot-line-meta li { padding: 2px 0; letter-spacing: var(--ot-tracking-tight); }
.ot-line-actions { display:flex; align-items:center; gap: 16px; flex-wrap:wrap; }
.ot-cart-line .ot-qty-control { display: inline-flex; align-items: stretch; gap: 0; border: 1px solid var(--ot-line); width: auto; height: auto; }
.ot-cart-line .ot-qty-control .ot-input { width: 56px; text-align: center; border: 0; padding: 8px; }
.ot-cart-line .ot-qty-control .ot-icon-btn {
  flex: 0 0 auto; width: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; border: 0; border-left: 1px solid var(--ot-line);
  background: transparent; color: var(--ot-fg); font-size: 14px; line-height: 1;
}
.ot-cart-line .ot-qty-control .ot-icon-btn:hover { background: #f7f7f7; opacity: 1; }
.ot-line-remove {
  font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  color: var(--ot-fg-muted); border-bottom: 1px solid var(--ot-line); padding-bottom: 2px;
}
.ot-line-remove:hover { color: #c33; border-color: #c33; opacity: 1; }
.ot-line-error { color: #c33; font-size: 11px; display:block; margin-top: 6px; width: 100%; }

.ot-line-prices { text-align: right; min-width: 110px; }
.ot-line-unit { color: var(--ot-fg-muted); font-size: 12px; margin-bottom: 4px; }
.ot-line-total { font-size: 16px; font-weight: 600; letter-spacing: 0.01em; }

.ot-summary {
  background: var(--ot-warm-50);
  padding: 32px;
  position: sticky; top: 16px;
}
.ot-summary h3 {
  font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  font-weight: 500; margin: 0 0 18px;
}
.ot-summary-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.ot-summary-table th { text-align: left; font-weight: 400; font-size: 13px; padding: 6px 0; color: var(--ot-fg-muted); }
.ot-summary-table td { text-align: right; padding: 6px 0; font-size: 13px; }
.ot-summary-grand th, .ot-summary-grand td {
  font-size: 16px; font-weight: 600; padding-top: 16px;
  border-top: 1px solid var(--ot-line); color: var(--ot-fg);
}
.ot-summary .ot-cta { width: 100%; text-align: center; }
.ot-link-back { display: block; text-align: center; padding: 16px 0 0; font-size: 12px; letter-spacing: var(--ot-tracking-tight); color: var(--ot-fg-muted); }
.ot-pay-list { list-style:none; padding:0; margin: 24px 0 0; display:flex; flex-wrap: wrap; gap: 6px; }
.ot-pay-list li { font-size: 9px; letter-spacing: 0.05em; text-transform: uppercase; background: #fff; border:1px solid var(--ot-line); padding: 5px 8px; }

.ot-cart-modules { padding: 40px 0; margin-top: 32px; border-top: 1px solid var(--ot-line); }
.ot-cart-modules h3 { font-family: var(--ot-font-serif); font-weight: 400; font-size: 24px; margin: 0 0 8px; }
.ot-muted { color: var(--ot-fg-muted); font-size: 13px; }

.ot-empty-cart { text-align: center; padding: 80px 24px; }
.ot-empty-cart h1 { font-family: var(--ot-font-serif); font-weight: 400; font-size: 36px; margin: 0 0 16px; }
.ot-empty-cart p { color: var(--ot-fg-muted); margin-bottom: 24px; }

.ot-alert-error { border-left: 3px solid #c33; }
.ot-alert-success { border-left: 3px solid #2a8a4e; }

/* ===== Order success page ===== */
.ot-success-page { padding-bottom: 64px; }

.ot-success-hero { text-align: center; padding: 32px 0 40px; }
.ot-success-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: #2a8a4e; color: #fff; font-size: 26px;
  margin-bottom: 18px;
}
.ot-success-hero h1 {
  font-family: var(--ot-font-serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); margin: 0 0 10px;
}
.ot-success-lead { font-size: 15px; color: var(--ot-fg); margin: 0 0 6px; }
.ot-success-meta { font-size: 13px; color: var(--ot-fg-muted); margin: 0; }

.ot-success-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 900px) { .ot-success-grid { grid-template-columns: 1fr; gap: 24px; } }

.ot-success-main { display: flex; flex-direction: column; gap: 24px; }
.ot-success-aside { position: sticky; top: 16px; }
@media (max-width: 900px) { .ot-success-aside { position: static; } }

.ot-success-card {
  background: #fff;
  border: 1px solid var(--ot-line);
  padding: 28px 32px;
}
.ot-success-card h2 {
  font-family: var(--ot-font-serif); font-weight: 400;
  font-size: 22px; margin: 0 0 18px;
}
.ot-success-card h3 {
  font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  font-weight: 500; color: var(--ot-fg-muted); margin: 0 0 6px;
}

.ot-success-card-head { margin-bottom: 18px; }
.ot-success-meta-list {
  display: grid; grid-template-columns: repeat(3, auto); gap: 18px 32px;
  margin: 0; padding: 14px 0 0; border-top: 1px solid var(--ot-line);
}
@media (max-width: 600px) { .ot-success-meta-list { grid-template-columns: 1fr 1fr; } }
.ot-success-meta-list dt {
  font-size: 10px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  color: var(--ot-fg-muted); font-weight: 400; margin: 0 0 2px;
}
.ot-success-meta-list dd { margin: 0; font-size: 14px; }

.ot-success-lines { display: flex; flex-direction: column; }
.ot-success-line {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; padding: 16px 0;
  border-top: 1px solid var(--ot-line);
  align-items: center;
}
.ot-success-line:last-child { border-bottom: 1px solid var(--ot-line); }
.ot-success-line-img {
  display: block; aspect-ratio: 1/1;
  background: var(--ot-warm-100); overflow: hidden;
}
.ot-success-line-img img { width: 100%; height: 100%; object-fit: cover; }
.ot-success-line-name {
  display: inline-block; font-size: 12px; font-weight: 500;
  letter-spacing: var(--ot-tracking); text-transform: uppercase;
  color: var(--ot-fg); margin-bottom: 6px;
}
.ot-success-line-meta { list-style: none; padding: 0; margin: 0; font-size: 12px; color: var(--ot-fg-muted); }
.ot-success-line-meta li { padding: 1px 0; }
.ot-success-line-total { font-size: 15px; font-weight: 600; text-align: right; }

.ot-success-totals { width: 100%; border-collapse: collapse; margin: 20px 0 0; }
.ot-success-totals th { text-align: left; font-weight: 400; font-size: 13px; padding: 5px 0; color: var(--ot-fg-muted); }
.ot-success-totals td { text-align: right; padding: 5px 0; font-size: 13px; }
.ot-success-totals-grand th, .ot-success-totals-grand td {
  font-size: 16px; font-weight: 600; padding-top: 14px;
  border-top: 1px solid var(--ot-line); color: var(--ot-fg);
}

.ot-success-comment {
  margin: 20px 0 0; padding: 14px 16px;
  background: var(--ot-warm-50); font-size: 13px;
}

.ot-success-addresses {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
}
@media (max-width: 600px) { .ot-success-addresses { grid-template-columns: 1fr; } }
.ot-success-addresses p { margin: 0; font-size: 14px; line-height: 1.6; }

.ot-success-pay { background: var(--ot-warm-50); }
.ot-success-pay-body { font-size: 14px; line-height: 1.65; }
.ot-success-pay-intro { margin: 0 0 12px; }
.ot-success-pay-details {
  background: #fff; border: 1px solid var(--ot-line); padding: 14px 16px;
  font-family: var(--ot-font-sans); font-size: 13px; line-height: 1.7;
  white-space: pre-wrap; margin: 0 0 12px;
}
.ot-success-pay-note { margin: 0; font-size: 12px; color: var(--ot-fg-muted); }
.ot-success-pay-dl { margin: 0 0 12px; }
.ot-success-pay-dl dt {
  font-size: 10px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  color: var(--ot-fg-muted); margin-top: 8px;
}
.ot-success-pay-dl dd { margin: 2px 0 0; font-size: 14px; }
.ot-success-pay-dl dd pre { background: #fff; border: 1px solid var(--ot-line); padding: 10px 12px; margin: 4px 0 0; font-family: inherit; font-size: 13px; }

.ot-success-help h2 {
  font-size: 11px; letter-spacing: var(--ot-tracking); text-transform: uppercase;
  font-weight: 500; font-family: var(--ot-font-sans); margin: 0 0 14px;
}
.ot-success-help p { font-size: 13px; color: var(--ot-fg-muted); margin: 0 0 18px; }
.ot-success-contacts { list-style: none; padding: 0; margin: 0 0 22px; }
.ot-success-contacts li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  padding: 10px 0; border-top: 1px solid var(--ot-line); align-items: center;
}
.ot-success-contacts li:last-child { border-bottom: 1px solid var(--ot-line); }
.ot-success-contacts i { color: var(--ot-fg-muted); font-size: 13px; }
.ot-success-contacts small {
  display: block; font-size: 10px; letter-spacing: var(--ot-tracking);
  text-transform: uppercase; color: var(--ot-fg-muted);
}
.ot-success-contacts a { color: var(--ot-fg); font-size: 14px; text-decoration: none; }
.ot-success-contacts a:hover { text-decoration: underline; }

.ot-success-actions { display: flex; flex-direction: column; gap: 10px; }
.ot-success-actions .btn { width: 100%; text-align: center; }

.ot-success-empty {
  text-align: center; padding: 60px 24px;
  background: var(--ot-warm-50); border: 1px solid var(--ot-line);
}
.ot-success-empty p { color: var(--ot-fg-muted); margin: 0 0 22px; font-size: 14px; }

/* Hide default top nav links labels on small screens cleanly handled by Bootstrap d-none */
