* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f1eb;
  --surface: #ffffff;
  --surface-soft: #f0e6db;
  --text: #241816;
  --muted: #725d57;
  --border: #e3d2c5;
  --dark: #241816;
  --accent: #a66745;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --shadow: 0 12px 35px rgba(36, 24, 22, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f7f1eb;
  color: var(--text);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 235, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(227, 210, 197, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 136px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.95rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  opacity: 0.65;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher button {
  min-width: 32px;
  border: 0;
  border-radius: 999px;
  padding: 5px 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.language-switcher button.active {
  background: var(--accent);
  color: #fff;
}

/* ── Products mega dropdown ── */
.nav-dropdown-wrap {
  position: static;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-trigger.active {
  opacity: 0.65;
}

.nav-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(247, 241, 235, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(36, 24, 22, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 100;
}

.nav-mega-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  padding: 28px 0 32px;
  align-items: stretch;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 130px;
}

.mega-category-card {
  background: #fbf7f2;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  position: relative;
}

.mega-col-title {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  margin: 0 0 10px 0;
}

.mega-col a,
.mega-subcategory-empty {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  transition: color 0.15s;
}

.mega-col a:hover {
  color: var(--accent);
  opacity: 1;
}

.mega-browse-link {
  font-weight: 700;
}

.mega-subcategory-chips {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(52, 35, 27, 0.14);
  display: none;
  flex-wrap: wrap;
  gap: 7px;
  left: 10px;
  margin-top: 0;
  max-height: min(320px, 52vh);
  min-width: min(280px, 80vw);
  overflow-y: auto;
  padding: 10px;
  position: absolute;
  right: 10px;
  top: calc(100% - 6px);
  z-index: 120;
}

.mega-category-card:hover .mega-subcategory-chips,
.mega-category-card:focus-within .mega-subcategory-chips {
  display: flex;
}

.mega-col .mega-subcategory-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
}

.mega-col .mega-subcategory-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.mega-subcategory-empty {
  margin: 8px 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
}

/* ── Valentine's promo card ── */
.mega-promo-col {
  min-width: 150px;
}

.mega-promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  background: linear-gradient(135deg, #fff0f3 0%, #ffe0e6 100%);
  border: 1.5px solid #f4b8c4;
  border-radius: 16px;
  padding: 20px 18px;
  color: #8b1a2e;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.mega-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(180, 40, 70, 0.15);
  opacity: 1;
  color: #8b1a2e;
}

.mega-promo-icon {
  font-size: 2rem;
  line-height: 1;
}

.mega-promo-label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.mega-promo-sub {
  font-size: 0.78rem;
  color: #b05070;
  line-height: 1.4;
}

.mega-promo-badge {
  margin-top: 4px;
  background: #c0304f;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  transition: background 0.18s, transform 0.15s;
  text-decoration: none;
}
.social-icon-btn:hover { background: #7a5230; transform: translateY(-1px); }

.powered-by {
  text-align: center;
  padding: 12px 16px;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.powered-by a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.powered-by a:hover { text-decoration: underline; }

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-light {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-white {
  background: #fff;
  color: var(--text);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.hero {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.card-image,
.category-card,
.craft-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-main {
  min-height: 580px;
}

.home-hero .hero-main {
  min-height: clamp(720px, 82vh, 920px);
  background: #090706;
  border-radius: 0;
}

.hero-main img,
.hero-main video,
.category-card img,
.craft-image img {
  height: 100%;
  object-fit: cover;
}

.hero-main img,
.hero-main video {
  position: absolute;
  inset: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9, 7, 6, 0.76), rgba(9, 7, 6, 0.46), rgba(9, 7, 6, 0.18));
}

.home-hero .overlay {
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.hero-content,
.category-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  padding: 44px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section h2,
.info-card h2,
.newsletter h2 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  max-width: 640px;
}

.hero-text {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-side {
  display: grid;
  gap: 20px;
}

.info-card,
.about-wrap {
  background: var(--surface);
  border: 1px solid rgba(227, 210, 197, 0.95);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card p,
.craft-copy p,
.newsletter p,
.footer-brand p,
.testimonial-card p {
  color: var(--muted);
}

.highlight-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.highlight-item {
  background: var(--surface-soft);
  border-radius: 20px;
  padding: 18px;
}

.highlight-item h3,
.product-top h3,
.category-content h3,
.testimonial-card footer,
.site-footer h4 {
  margin: 0;
}

.highlight-item p {
  margin: 6px 0 0;
}

.promo-card {
  background: linear-gradient(135deg, #2a1b18 0%, #5a3528 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.promo-card p {
  color: rgba(255, 255, 255, 0.78);
}

.promo-card .btn {
  margin-top: 18px;
}

.section {
  padding: 64px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section h2,
.info-card h2,
.newsletter h2,
.craft-copy h2,
.about-head h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.product-grid,
.category-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(227, 210, 197, 0.95);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.category-card-item {
  display: flex;
  flex-direction: column;
}

.category-card-item .product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-card-item .product-top {
  flex: 1;
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-image img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img,
.category-card:hover img,
.card-image:hover img,
.craft-image:hover img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.product-info {
  padding: 16px;
}

.product-top {
  display: block;
}

.product-top strong {
  display: inline-block;
  margin-top: 10px;
}

.product-top p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.full {
  width: auto;
  margin-top: 14px;
}

.category-link {
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: auto;
}

.offer-products-section[hidden] {
  display: none;
}

.offer-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-product-card {
  display: flex;
  flex-direction: column;
}

.offer-product-card .product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-product-card .product-top {
  flex: 1;
}

.offer-product-card .product-top h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.offer-product-image {
  display: block;
  overflow: hidden;
  background: var(--surface-soft);
}

.offer-product-image img,
.offer-product-image-empty {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offer-product-image-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.offer-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

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

.category-card {
  min-height: 380px;
}

.category-content p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 300px;
}

.craft-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.craft-image {
  min-height: 460px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid rgba(227, 210, 197, 0.95);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.about-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

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

.testimonial-card {
  margin: 0;
  background: var(--surface-soft);
  border-radius: 24px;
  padding: 22px;
}

.testimonial-card footer {
  margin-top: 18px;
  color: var(--text);
  font-weight: 600;
}

.newsletter {
  background: linear-gradient(135deg, #2a1b18 0%, #6a4230 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 700px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 18px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(227, 210, 197, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: 24px;
  padding: 36px 0 46px;
  align-items: start;
}

.footer-brand-name {
  color: var(--text);
  margin-bottom: 10px;
}

.footer-nipt {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer li + li {
  margin-top: 8px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--dark);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #277a46;
}

.toast.error {
  background: #a93f3f;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 24, 22, 0.58);
  backdrop-filter: blur(5px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  background: var(--surface);
  border: 1px solid rgba(227, 210, 197, 0.95);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(36, 24, 22, 0.24);
  padding: 28px;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.2s ease;
}

.contact-modal.is-open .contact-dialog {
  transform: translateY(0) scale(1);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.contact-dialog h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-intro {
  margin: 10px 0 20px;
  color: var(--muted);
}

.contact-dialog .request-form input:not([type="file"]),
.contact-dialog .request-form textarea {
  border-color: var(--border);
  background: var(--surface-soft);
  color: var(--text);
}

.contact-dialog .request-form input::placeholder,
.contact-dialog .request-form textarea::placeholder {
  color: var(--muted);
}

.contact-dialog .file-label,
.contact-dialog .file-label input[type="file"] {
  color: var(--muted);
}


.collection-page main {
  padding-bottom: 72px;
}

.collection-hero {
  padding: 28px 0 0;
}

.collection-banner {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collection-banner img {
  height: 100%;
  object-fit: cover;
}

.collection-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 32px;
  color: #fff;
}

.collection-content h1 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 700px;
}

.collection-content p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.collection-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 0 0;
}

.collection-summary p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.collection-summary strong {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(227, 210, 197, 0.95);
  box-shadow: var(--shadow);
}

.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: #241816;
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: min(420px, 100%);
  height: auto;
}

.product-list-section {
  padding-top: 32px;
}

.product-list-section .product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-tag {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
}

.tshirts-page .product-image {
  background: #fff;
}

.tshirts-page .product-image img {
  object-fit: contain;
  padding: 12px;
}

.tshirts-page {
  background: #efebe7;
}

.tshirts-page .site-header {
  background: #efebe7;
}

.tshirts-page .nav {
  padding: 20px 0;
}

.tshirts-page .site-header .nav-links,
.tshirts-page .site-header .nav-actions {
  display: none;
}

.tshirts-page .brand-logo {
  width: 168px;
}

.tshirts-catalog {
  padding-top: 36px;
}

.tshirts-title {
  margin: 0 0 24px;
  color: #a56747;
  letter-spacing: 0.04em;
  font-size: 2.2rem;
}

.tshirts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.subcategory-filters {
  margin: 0 0 28px;
  padding: 16px;
  border: 1px solid #ded8d2;
  border-radius: 14px;
  background: #f6f5f4;
}

.subcategory-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #6d5b53;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subcategory-filter-head button {
  border: 0;
  background: transparent;
  color: #a56747;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
}

.subcategory-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subcategory-filter-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ded8d2;
  border-radius: 999px;
  background: #fff;
  color: #34231b;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 8px 13px;
}

.subcategory-filter-option input {
  accent-color: #a56747;
}

.collection-groups {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.collection-subcategory-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collection-subcategory-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #ded8d2;
  padding-bottom: 10px;
}

.collection-subcategory-heading h2 {
  margin: 0;
  color: #34231b;
  font-size: 1.25rem;
}

.collection-subcategory-heading span,
.collection-empty {
  color: #7e6a5d;
  font-size: 0.9rem;
  font-weight: 700;
}

.collection-empty {
  padding: 60px 0;
  text-align: center;
}

.all-products-catalog {
  width: min(1680px, calc(100% - 32px));
  padding-top: 30px;
  padding-bottom: 56px;
}

.all-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  border: 1px solid #eadfd6;
  border-radius: 18px;
  background: #fbf7f3;
  box-shadow: 0 16px 44px rgba(72, 42, 25, 0.08);
  padding: 26px;
}

.all-products-head .eyebrow {
  margin-bottom: 6px;
}

.all-products-head .tshirts-title {
  margin-bottom: 0;
}

.all-products-head-action {
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(171, 111, 79, 0.18);
}

.all-products-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) 1fr;
  gap: 24px;
  align-items: start;
}

.all-products-page .all-products-results .tshirts-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.all-products-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 118px);
  overflow-y: auto;
  border: 1px solid #e3d5ca;
  border-radius: 18px;
  background: #fffdfb;
  box-shadow: 0 14px 32px rgba(72, 42, 25, 0.07);
  padding: 18px;
  scrollbar-width: thin;
}

.all-products-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #34231b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.all-products-filter-head button {
  border: 1px solid #eadfd6;
  border-radius: 999px;
  background: #fbf7f3;
  color: #a56747;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  padding: 7px 11px;
}

.all-products-filter-section {
  display: grid;
  gap: 10px;
  border-top: 1px solid #eee3da;
  padding-top: 16px;
}

.all-products-filter-section + .all-products-filter-section {
  margin-top: 16px;
}

.all-products-filter-section h2,
.all-products-filter-group h3 {
  margin: 0;
  color: #34231b;
  font-size: 0.86rem;
  line-height: 1.25;
}

.all-products-filter-group {
  display: grid;
  gap: 8px;
}

.all-products-filter-group + .all-products-filter-group {
  margin-top: 8px;
}

.all-products-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #34231b;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 8px 9px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.all-products-filter-option:hover,
.all-products-filter-option:has(input:checked) {
  border-color: #ead1c0;
  background: #fbf7f3;
}

.all-products-sub-option {
  color: #6d5b53;
  font-size: 0.84rem;
  padding-left: 9px;
}

.all-products-filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.all-products-check {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #ccb7aa;
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.all-products-filter-option input:checked + .all-products-check {
  border-color: #ab6f4f;
  background: #ab6f4f;
}

.all-products-filter-label {
  min-width: 0;
}

.all-products-filter-empty,
.all-products-count {
  color: #7e6a5d;
  font-size: 0.86rem;
  font-weight: 700;
}

.all-products-custom-design {
  margin: 0 0 16px;
}

.all-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  border: 1px solid #eadfd6;
  border-radius: 16px;
  background: #fffdfb;
  box-shadow: 0 10px 26px rgba(72, 42, 25, 0.05);
  padding: 12px 14px;
}

.all-products-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a5638;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.all-products-select-wrap {
  position: relative;
  display: inline-flex;
  min-width: 184px;
  border: 1px solid #ead1c0;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffdfb 0%, #fbf7f3 100%);
  box-shadow: 0 8px 18px rgba(72, 42, 25, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.all-products-select-wrap::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #a56747;
  border-bottom: 2px solid #a56747;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.all-products-select-wrap:hover {
  border-color: #d4aa8f;
  box-shadow: 0 10px 22px rgba(72, 42, 25, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.all-products-select-wrap:focus-within {
  border-color: #ab6f4f;
  box-shadow: 0 0 0 4px rgba(171, 111, 79, 0.14), 0 10px 22px rgba(72, 42, 25, 0.1);
}

.all-products-order select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: transparent;
  color: #34231b;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  outline: 0;
  padding: 10px 36px 10px 14px;
  text-transform: none;
}

.all-product-tile {
  border-color: #e6d7cc;
  border-radius: 18px;
  background: #fffdfb;
  box-shadow: 0 14px 34px rgba(72, 42, 25, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.all-product-tile:hover {
  border-color: #d4b5a1;
  box-shadow: 0 18px 40px rgba(72, 42, 25, 0.12);
  transform: translateY(-3px);
}

.all-product-tile .all-product-image {
  background: #f6f1ed;
  overflow: hidden;
}

.all-product-tile a img {
  height: 240px;
  object-fit: contain;
  padding: 12px;
}

.all-product-tile .tshirt-meta {
  align-items: stretch;
  gap: 7px;
  padding: 14px;
}

.all-product-tile .tshirt-meta h3 {
  color: #2f211b;
  font-size: 0.98rem;
  line-height: 1.25;
}

.all-product-tile .collection-price {
  justify-content: center;
  border-top: 1px solid #eee3da;
  padding-top: 8px;
}

.all-product-tile .price-pill {
  align-self: center;
  width: min(160px, 100%);
  min-height: 42px;
  line-height: 1;
  text-align: center;
}


.collection-custom-design {
  margin: -12px 0 24px;
  display: flex;
  justify-content: flex-start;
}

.collection-custom-design[hidden] {
  display: none;
}

.collection-custom-design-btn {
  border: 1px solid #d7bba8;
  background: #fbf7f3;
  color: #8a5638;
  border-radius: 999px;
  padding: 7px 13px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.collection-custom-design-btn:hover {
  background: #f4ebe3;
  border-color: #cda689;
}

.collection-custom-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(44, 26, 14, 0.46);
}

.collection-custom-modal.open {
  display: flex;
}

.collection-custom-dialog {
  width: min(520px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  position: relative;
  box-shadow: 0 16px 48px rgba(44, 26, 14, 0.2);
}

.collection-custom-dialog h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.collection-custom-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #7d6960;
  font-size: 1.5rem;
  cursor: pointer;
}

.collection-custom-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.collection-custom-field label {
  color: #7d6960;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.collection-custom-field input,
.collection-custom-field textarea {
  width: 100%;
  border: 1.5px solid #ded8d2;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.collection-custom-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: #ab6f4f;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.collection-image-empty {
  align-items: center;
  background: #eee7df;
  color: #7e6a5d;
  display: flex;
  height: 320px;
  justify-content: center;
  line-height: 1.2;
  width: 100%;
}

.tshirt-tile {
  background: #f6f5f4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ded8d2;
  display: flex;
  flex-direction: column;
}

.tshirt-tile a {
  display: block;
  line-height: 0;
}

.tshirt-tile a img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.2s;
}

.gallery-main {
  position: relative;
}

.gallery-thumbs {
  display: none !important;
}

.gallery-main.is-image-unavailable::after {
  content: "Image unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #eee8e1;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.tshirt-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 12px;
}

.tshirt-meta h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
}

.product-subcategory {
  margin: -2px 0 2px;
  color: #6d5b53;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.category-subcategories {
  margin-top: 8px;
  color: #6d5b53;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

/* .tshirts-page .price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ab6f4f;
  color: #fff;
  border-radius: 999px;
  min-width: 130px;
  padding: 10px 24px;
  font-size: 1.1rem;
  font-weight: 700;
} */

.tshirt-meta-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ab6f4f;
  color: #fff;
  border-radius: 999px;
  min-width: 102px;
  padding: 12px 24px;
  font-weight: 700;
}

.collection-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 24px;
  color: #ab6f4f;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
}

.price-old {
  color: #8f7668;
  text-decoration: line-through;
  font-weight: 700;
  white-space: nowrap;
}

.product-price .price-old {
  color: #9a8173;
}

.price-new {
  font-weight: 800;
  white-space: nowrap;
}

.discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eaf7ef;
  color: #27ae60;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.product-price.has-discount,
.product-price:has(.discount-pill) {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price .price-new {
  color: inherit;
}

.size-row {
  letter-spacing: 0.08em;
  color: #6d5b53;
  font-weight: 600;
}

.tshirt-detail {
  padding-top: 44px;
  padding-bottom: 56px;
}

.back-link {
  color: #a56747;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.detail-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
}

.detail-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center;
}

.detail-dots {
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.3em;
}

.detail-caption {
  margin-top: 12px;
  color: #a56747;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.detail-copy h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.detail-price {
  margin: 6px 0 18px;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.detail-label {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #a56747;
}

.swatch-beige {
  background: #f0d9b4;
}

.swatch-white {
  background: #f5f5f5;
}

.swatch-black {
  background: #000;
}

.size-chips {
  margin-top: 26px;
  display: flex;
  gap: 12px;
}

.size-chips span {
  width: 34px;
  height: 34px;
  border: 1px solid #a56747;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.detail-rule {
  margin: 22px 0 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #c99376;
  font-size: 1.75rem;
  font-weight: 700;
}

.detail-actions {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-actions .btn {
  border-radius: 0;
  min-height: 48px;
  font-size: 1.55rem;
  font-weight: 800;
}

.detail-actions .btn-light {
  background: transparent;
  border: 1px solid #b77f61;
}

.tshirt-footer {
  margin: 0;
  padding: 26px 0 18px;
  text-align: center;
  color: #745a4f;
  font-weight: 700;
}



@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .nav-links {
    gap: 20px;
  }

  .mega-dropdown-inner {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    max-height: min(70vh, 620px);
    overflow-y: auto;
    padding-right: 4px;
  }

  .hero,
  .craft-grid,
  .about-wrap,
  .newsletter {
    grid-template-columns: 1fr;
  }

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

  .home-hero .hero-main {
    min-height: clamp(640px, 80vh, 820px);
  }

  .offer-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-list-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid,
  .testimonial-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tshirts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .all-products-layout {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-copy h2 {
    font-size: 1.55rem;
  }

  .detail-price {
    font-size: 1.8rem;
  }

  .detail-label,
  .detail-rule,
  .detail-actions .btn,
  .detail-caption {
    font-size: 1.2rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100% - 20px));
  }

  .site-header {
    z-index: 150;
  }

  .nav {
    padding: 10px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 10px;
    right: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    z-index: 160;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-dropdown-wrap,
  .nav-dropdown-trigger {
    width: 100%;
  }

  .nav-links a {
    border-radius: 12px;
    min-height: 46px;
    padding: 12px 14px;
  }

  .nav-links a:hover,
  .nav-dropdown-trigger.active {
    background: var(--surface-soft);
    opacity: 1;
  }

  .nav-actions .social-icon-btn {
    display: none;
  }

  .nav-mega-dropdown {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 132px;
    max-height: calc(100svh - 150px);
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 155;
  }

  .mega-dropdown-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: none;
    overflow: visible;
    padding: 12px;
  }

  #megaCatCols,
  #megaOfferCols {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-col,
  .mega-promo-col {
    min-width: 0;
  }

  .mega-category-card,
  .mega-promo-card {
    border-radius: 14px;
    padding: 12px;
  }

  .mega-subcategory-chips {
    display: flex;
    position: static;
    min-width: 0;
    max-height: none;
    margin-top: 10px;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-main {
    min-height: 520px;
  }

  .home-hero .hero-main {
    min-height: clamp(620px, 88svh, 760px);
  }

  .home-hero .hero-main video,
  .home-hero .hero-main img {
    object-fit: contain;
  }

  .brand-logo {
    width: 126px;
  }

  .contact-modal {
    padding: 10px;
    align-items: start;
    overflow-y: auto;
  }

  .contact-dialog {
    width: 100%;
    max-height: calc(100svh - 20px);
    margin: 10px 0;
    border-radius: 16px;
    padding: 22px 18px;
  }

  .contact-close {
    top: 10px;
    right: 10px;
  }

  .contact-dialog h2 {
    padding-right: 42px;
    font-size: clamp(1.45rem, 8vw, 1.9rem);
    letter-spacing: -0.02em;
  }

  .hero-content,
  .category-content {
    padding: 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .offer-products-grid {
    grid-template-columns: 1fr;
  }

  .product-list-section .product-grid {
    grid-template-columns: 1fr;
  }

  .tshirts-grid {
    grid-template-columns: 1fr;
  }

  .all-products-layout {
    grid-template-columns: 1fr;
  }

  .all-products-head {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .all-products-head-action {
    width: 100%;
  }

  .all-products-sidebar {
    position: static;
    max-height: none;
  }

  .all-products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .all-products-order {
    align-items: stretch;
    flex-direction: column;
  }

  .all-products-select-wrap {
    width: 100%;
  }

  .all-products-order select {
    width: 100%;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  .collection-content {
    padding: 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section {
    padding-top: 56px;
  }
}


.request-form {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 700px;
}

.request-form input:not([type="file"]) {
  width: 100%;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 18px;
  outline: none;
}

.request-form textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 16px 18px;
  outline: none;
  font: inherit;
}

.request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.request-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.file-label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.file-label input[type="file"] {
  color: rgba(255, 255, 255, 0.9);
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: #241816;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 13px 18px;
  box-shadow: 0 14px 34px rgba(36, 24, 22, 0.22);
}

.chat-toggle-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8fcf92;
  box-shadow: 0 0 0 4px rgba(143, 207, 146, 0.18);
}

.chat-panel {
  width: min(360px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 112px));
  overflow: hidden;
  border: 1px solid #eadfd6;
  border-radius: 20px;
  background: #fffdfb;
  box-shadow: 0 22px 60px rgba(36, 24, 22, 0.2);
}

.chat-panel[hidden] {
  display: none;
}

.chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: #fbf7f3;
  border-bottom: 1px solid #eadfd6;
  padding: 16px;
}

.chat-head p {
  margin: 0;
  color: #241816;
  font-weight: 900;
}

.chat-head span {
  color: #7e6a5d;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 2px;
}

.chat-close {
  border: 0;
  background: transparent;
  color: #7e6a5d;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  padding: 16px;
}

.chat-message {
  max-width: 86%;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 10px 12px;
}

.chat-message.bot {
  align-self: flex-start;
  background: #f3ebe4;
  color: #34231b;
}

.chat-message.user {
  align-self: flex-end;
  background: #ab6f4f;
  color: #fff;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #f0e5dc;
  padding: 12px 16px;
}

.chat-actions button,
.chat-links button,
.chat-links a {
  border: 1px solid #ead1c0;
  border-radius: 999px;
  background: #fff;
  color: #8a5638;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  padding: 8px 11px;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 16px 14px;
}

.chat-form input {
  min-width: 0;
  border: 1px solid #ded8d2;
  border-radius: 999px;
  color: #34231b;
  padding: 11px 13px;
}

.chat-form button {
  border: 0;
  border-radius: 999px;
  background: #241816;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0 15px;
}

.chat-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid #f0e5dc;
  background: #fffaf6;
  padding: 14px 16px 16px;
}

.chat-links a {
  background: linear-gradient(180deg, #35b66b 0%, #249457 100%);
  border-color: #249457;
  color: #fff;
  box-shadow: 0 10px 22px rgba(36, 148, 87, 0.22);
}

.chat-links button {
  background: #fff;
  border-color: #e1c7b4;
  color: #7b4c32;
  box-shadow: 0 8px 18px rgba(72, 42, 25, 0.08);
}

.chat-links a,
.chat-links button {
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.chat-links a:hover,
.chat-links button:hover {
  transform: translateY(-1px);
}

.chat-links a:hover {
  box-shadow: 0 13px 28px rgba(36, 148, 87, 0.28);
}

.chat-links button:hover {
  border-color: #c99c7f;
  box-shadow: 0 11px 24px rgba(72, 42, 25, 0.12);
}

@media (max-width: 760px) {
  .chat-widget {
    left: 12px;
    right: 12px;
    bottom: 14px;
  }

  .chat-panel {
    width: 100%;
  }

  .chat-links {
    grid-template-columns: 1fr;
  }
}
