﻿/* EDIT COLORS HERE */
:root {
  --primary-green: #044d43;
  --dark-green: #033e36;
  --gold: #c68c3c;
  --background: #f8f7f2;
  --text-color: #243b32;
  --line: #dedfd5;
  --muted: #737b71;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.wrap {
  width: min(1220px, 90%);
  margin: auto;
}
.topline {
  background: var(--dark-green);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2px;
  padding: 7px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffefbf5;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand strong {
  display: block;
  font-size: 24px;
  line-height: 1.4;
}
.brand small {
  display: block;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 2.8px;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}
.nav a {
  padding: 34px 0;
  position: relative;
}
.nav a.active {
  color: var(--primary-green);
  font-weight: bold;
}
.nav a.active:after {
  content: "";
  height: 2px;
  background: var(--gold);
  position: absolute;
  bottom: 23px;
  right: 0;
  left: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 25px;
  background: var(--primary-green);
  color: white;
  border: 1px solid var(--primary-green);
  border-radius: 2px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  transition: background 0.15s;
}
.btn:hover {
  background: var(--dark-green);
}
.btn.outline {
  background: transparent;
  color: var(--primary-green);
  border-color: #aab8aa;
}
.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-green);
}
.btn.white {
  background: white;
  color: var(--primary-green);
  border-color: white;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 7px 12px;
  font-size: 22px;
}
.count {
  display: inline-flex;
  background: var(--gold);
  color: var(--dark-green);
  font-size: 11px;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 3px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 555px;
  direction: rtl;
}
.hero-copy {
  padding: 65px max(6vw, 24px) 55px 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.eyebrow {
  color: #93723d;
  font-size: 13px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(32px, 3.5vw, 51px);
  line-height: 1.55;
  letter-spacing: -1.3px;
  margin: 18px 0 20px;
}
h1 em {
  font-style: normal;
  color: var(--primary-green);
}
.hero-copy p {
  max-width: 440px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
  background: #c5b790;
  min-height: 450px;
}
.hero-media > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.image-caption {
  position: absolute;
  bottom: 27px;
  left: 25px;
  right: 25px;
  color: white;
  background: #163a2bdb;
  padding: 19px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.image-caption small {
  display: block;
  color: #dbd6bb;
  font-size: 12px;
}
.hero-note {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 12px;
  color: var(--muted);
  width: 100%;
}
.strip {
  background: #eeeee5;
  border-block: 1px solid var(--line);
}
.strip-inner {
  display: flex;
  justify-content: space-around;
  padding: 18px 0;
  font-size: 14px;
}
.strip span {
  padding-inline: 15px;
  border-left: 1px solid #cbd1c3;
}
.strip span:last-child {
  border: 0;
}
.section {
  padding: 70px 0;
}
.section.white {
  background: #fff;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.section-head h2 {
  font-size: 30px;
  margin: 6px 0 0;
  line-height: 1.6;
}
.text-link {
  font-size: 14px;
  color: var(--primary-green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category .photo {
  height: 145px;
  background: #eae9df;
  overflow: hidden;
}
.category img {
  height: 100%;
  width: 100%;
  transition: transform 0.3s;
}
.category:hover img {
  transform: scale(1.04);
}
.category h3 {
  font-size: 16px;
  margin: 14px 0 0;
}
.category small {
  font-size: 12px;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: white;
  border: 1px solid var(--line);
  position: relative;
}
.product-photo {
  display: block;
  height: 225px;
  background: #eeeae0;
  overflow: hidden;
}
.product-photo img {
  height: 100%;
  width: 100%;
  transition: transform 0.3s;
}
.product-card:hover img {
  transform: scale(1.03);
}
.product-body {
  padding: 20px;
}
.product-body small {
  color: var(--muted);
  font-size: 12px;
}
.product-body h3 {
  font-size: 18px;
  margin: 3px 0 5px;
}
.product-body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 15px;
}
.card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.card-actions .btn {
  font-size: 13px;
  padding: 9px 14px;
}
.card-actions a {
  font-size: 12px;
}
.sample-label {
  font-size: 11px;
  background: #f8f6e9;
  color: #6c6142;
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 9px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
}
.why-grid h2 {
  font-size: 34px;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.benefit {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.benefit b {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 22px;
}
.benefit h3 {
  font-size: 18px;
  margin: 9px 0;
}
.benefit p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.offer-band {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: #e9eadf;
}
.offer-copy {
  padding: 50px;
}
.offer-copy h2 {
  font-size: 32px;
  margin: 10px 0;
}
.offer-band img {
  height: 100%;
  min-height: 310px;
  width: 100%;
  max-height: 350px;
}
.request-cta {
  background: var(--primary-green);
  color: white;
  text-align: center;
  padding: 60px 25px;
}
.request-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.request-cta p {
  color: #d5ddd3;
  max-width: 650px;
  margin: 0 auto 25px;
}
.steps {
  display: flex;
  gap: 35px;
  justify-content: center;
  margin: 25px 0 30px;
  font-size: 14px;
}
.steps span b {
  font-family: Georgia, serif;
  color: var(--gold);
  padding-left: 10px;
  font-size: 22px;
}
.footer {
  background: var(--dark-green);
  color: #e5e9df;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 65px;
}
.footer p {
  font-size: 14px;
  color: #b6c4b8;
  max-width: 320px;
  margin-top: 20px;
}
.footer h3 {
  font-size: 16px;
  color: white;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
}
.footer .placeholder {
  font-size: 12px;
  color: #bcc7b7;
}
.footer-bottom {
  margin-top: 38px;
  padding: 17px 0;
  border-top: 1px solid #3e594b;
  font-size: 12px;
  color: #b6c4b8;
  display: flex;
  justify-content: space-between;
}
.page-heading {
  padding: 42px 0 32px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}
.page-heading h1 {
  font-size: 38px;
  margin: 0 0 8px;
}
.page-heading p {
  margin: 0;
  color: var(--muted);
}
.notice {
  background: #efede1;
  border-right: 3px solid var(--gold);
  padding: 12px 18px;
  font-size: 13px;
  color: #6c644e;
  margin: 24px 0;
}
.catalog {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  padding: 35px 0 60px;
}
.filter-panel {
  background: white;
  border: 1px solid var(--line);
  padding: 22px;
  align-self: start;
}
.filter-panel h2 {
  font-size: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.field label {
  font-size: 14px;
}
.field input,
.field select,
.field textarea,
.search {
  background: #fff;
  border: 1px solid #cbd1c6;
  padding: 11px 13px;
  width: 100%;
  border-radius: 2px;
  color: var(--text-color);
  min-width: 0;
}
.field textarea {
  resize: vertical;
  min-height: 115px;
}
.search-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.search {
  flex: 1;
}
.search-row small {
  white-space: nowrap;
  color: var(--muted);
}
.catalog .grid {
  grid-template-columns: repeat(3, 1fr);
}
.catalog .product-photo {
  height: 200px;
}
.empty {
  padding: 50px 20px;
  text-align: center;
  border: 1px dashed #bac4b3;
  background: white;
  grid-column: 1/-1;
}
.empty h2 {
  font-size: 22px;
}
.empty p {
  color: var(--muted);
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 45px 0;
}
.detail-image img {
  height: 510px;
  width: 100%;
  background: #e9e6dc;
}
.detail-info h1 {
  font-size: 36px;
}
.specs {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}
.specs th,
.specs td {
  text-align: right;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 14px;
}
.specs th {
  width: 38%;
  font-weight: normal;
  color: var(--muted);
}
.quantity {
  display: inline-flex;
  border: 1px solid #cbd1c6;
  background: white;
  direction: ltr;
  height: 43px;
}
.quantity button {
  border: 0;
  background: none;
  width: 35px;
  color: var(--primary-green);
  font-size: 20px;
}
.quantity input {
  width: 55px;
  text-align: center;
  border: 0;
  background: none;
  -moz-appearance: textfield;
}
.quantity input::-webkit-inner-spin-button {
  appearance: none;
}
.order-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding: 35px 0 70px;
  align-items: start;
}
.panel {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
}
.panel h2 {
  font-size: 22px;
}
.order-table {
  width: 100%;
  border-collapse: collapse;
}
.order-table th {
  font-size: 12px;
  color: var(--muted);
  font-weight: normal;
  padding: 10px 4px;
  text-align: right;
  border-bottom: 1px solid var(--line);
}
.order-table td {
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.order-name {
  display: flex;
  gap: 12px;
  align-items: center;
}
.order-name img {
  width: 55px;
  height: 60px;
}
.remove {
  border: 0;
  background: none;
  color: #935442;
  font-size: 18px;
  padding: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.full {
  grid-column: 1/-1;
}
.order-summary {
  font-size: 13px;
  margin: 20px 0;
  color: var(--muted);
}
.form-actions {
  display: grid;
  gap: 12px;
}
.status {
  padding: 16px;
  background: #f3f1e7;
  border: 1px solid #dbd8c6;
  margin-top: 16px;
  font-size: 14px;
  white-space: pre-line;
}
.status:empty {
  display: none;
}
.message-preview {
  width: 100%;
  min-height: 230px;
  padding: 15px;
  font: inherit;
  font-size: 13px;
}
.story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.story h2 {
  font-size: 32px;
}
.story img {
  height: 380px;
  width: 100%;
}
.story p {
  color: var(--muted);
  line-height: 2.2;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.value {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}
.value h3 {
  font-size: 20px;
}
.value p {
  font-size: 14px;
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  padding: 40px 0 70px;
}
.contact-aside {
  background: var(--primary-green);
  color: white;
  padding: 35px;
  align-self: start;
}
.contact-aside p {
  font-size: 14px;
  color: #d1dacb;
}
.contact-aside hr {
  border: 0;
  border-top: 1px solid #59705c;
  margin: 25px 0;
}
.toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--dark-green);
  color: white;
  padding: 14px 23px;
  box-shadow: 0 8px 35px #0002;
  z-index: 60;
  max-width: calc(100% - 50px);
  display: none;
  font-size: 14px;
}
.toast.show {
  display: block;
}
.skip {
  position: absolute;
  top: -100px;
  right: 10px;
  z-index: 100;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 5px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1500px) {
  .hero-copy {
    padding-right: calc((100vw - 1220px) / 2);
  }
}
@media (max-width: 1100px) {
  .nav {
    gap: 15px;
    font-size: 12px;
  }
  .header-inner > .btn {
    display: none;
  }
  .hero-copy {
    padding: 40px 5vw 35px 25px;
  }
  h1 {
    font-size: 37px;
  }
  .categories {
    gap: 12px;
  }
  .category .photo {
    height: 120px;
  }
  .grid {
    gap: 14px;
  }
  .product-body {
    padding: 14px;
  }
  .catalog {
    grid-template-columns: 190px 1fr;
    gap: 20px;
  }
  .catalog .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .panel {
    padding: 20px;
  }
  .order-name img {
    display: none;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .topline {
    font-size: 11px;
  }
  .header-inner {
    min-height: 78px;
  }
  .brand strong {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    background: #fff;
    padding: 15px 5%;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px #0001;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav a {
    padding: 12px;
    font-size: 15px;
  }
  .nav a.active:after {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 35px 6%;
  }
  .hero-copy h1 {
    font-size: 35px;
  }
  .hero-copy p {
    font-size: 15px;
  }
  .hero-media {
    min-height: 320px;
  }
  .hero-note {
    margin-top: 22px;
  }
  .strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 12px;
    text-align: center;
  }
  .strip span {
    border: 0;
  }
  .section {
    padding: 42px 0;
  }
  .section-head h2 {
    font-size: 25px;
  }
  .section-head .text-link {
    font-size: 12px;
  }
  .categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
  }
  .category .photo {
    height: 115px;
  }
  .category h3 {
    font-size: 14px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-photo {
    height: 170px;
  }
  .product-body {
    padding: 13px;
  }
  .product-body h3 {
    font-size: 16px;
  }
  .card-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }
  .card-actions a {
    text-align: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefits {
    gap: 22px;
  }
  .offer-band {
    grid-template-columns: 1fr;
  }
  .offer-copy {
    padding: 30px;
  }
  .offer-band img {
    height: 230px;
    min-height: 230px;
  }
  .request-cta h2 {
    font-size: 26px;
  }
  .steps {
    gap: 14px;
    font-size: 12px;
  }
  .steps span b {
    padding-left: 5px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer p {
    max-width: none;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
  }
  .page-heading {
    padding-top: 25px;
  }
  .page-heading h1 {
    font-size: 30px;
  }
  .page-heading p {
    font-size: 14px;
  }
  .catalog {
    display: block;
    padding-top: 20px;
  }
  .filter-panel {
    margin-bottom: 20px;
  }
  .filter-panel h2 {
    margin-bottom: 10px;
  }
  .filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .filter-panel .field {
    margin-bottom: 10px;
  }
  .catalog .product-photo {
    height: 165px;
  }
  .search-row {
    gap: 10px;
  }
  .search-row small {
    font-size: 11px;
  }
  .details {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .detail-image img {
    height: 330px;
  }
  .detail-info h1 {
    font-size: 29px;
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .order-table th,
  .order-table td {
    font-size: 12px;
  }
  .quantity input {
    width: 35px;
  }
  .quantity button {
    width: 28px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .story img {
    height: 260px;
  }
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .section-head {
    align-items: center;
  }
  .form-grid .full {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* EDIT FONT FILES HERE: add the named local WOFF2 files, then enable these @font-face rules.
@font-face {font-family:'Noto Kufi Arabic';src:url('../assets/fonts/NotoKufiArabic.woff2') format('woff2');font-weight:100 900;font-display:swap;}
@font-face {font-family:'Noto Sans Arabic';src:url('../assets/fonts/NotoSansArabic.woff2') format('woff2');font-weight:100 900;font-display:swap;}
@font-face {font-family:'Sora';src:url('../assets/fonts/Sora.woff2') format('woff2');font-weight:100 800;font-display:swap;}
No font files were supplied, so the specified families use the safe local fallbacks below. */
:root {
  --font-headings: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  --font-body: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  --font-latin: "Sora", Arial, sans-serif;
  --logo-width: 235px;
  --logo-height: 60px;
}
h1,
h2,
h3 {
  font-family: var(--font-headings);
}
[lang="en"],
[dir="ltr"],
.quantity input {
  font-family: var(--font-latin);
}
#site-header {
  position: sticky;
  top: -36px;
  z-index: 30;
}
.logo-window {
  display: block;
  position: relative;
  width: var(--logo-width);
  height: var(--logo-height);
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.brand-logo {
  position: absolute;
  width: 100%;
  max-width: none;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  object-fit: contain;
}
.brand {
  flex-shrink: 0;
}
.header-inner {
  gap: 18px;
}
.nav {
  gap: 18px;
}
.footer .logo-window {
  width: 255px;
  height: 75px;
}
.company-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.company-contact a:hover {
  text-decoration: underline;
}
.contact-aside .company-contact {
  margin-bottom: 22px;
}
.product-photo,
.category .photo {
  background: #fff;
}
.product-photo img,
.category .photo img {
  object-fit: contain;
  padding: 12px;
}
.detail-image > img {
  object-fit: contain;
  background: #fff;
  padding: 18px;
}
.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.product-gallery button {
  width: 75px;
  height: 85px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 5px;
}
.product-gallery button[aria-pressed="true"] {
  border: 2px solid var(--gold);
}
.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.order-name img {
  object-fit: contain;
}
.categories {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}
.multiline {
  white-space: pre-line;
}
.product-note {
  font-size: 13px;
  color: var(--muted);
}
.bulk-link {
  margin-top: 20px;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
#offers-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.hero-copy,
.detail-info {
  min-width: 0;
}
.btn {
  overflow-wrap: anywhere;
}
.header-inner > .btn {
  white-space: nowrap;
}
@media (max-width: 1100px) {
  :root {
    --logo-width: 210px;
  }
  .nav {
    gap: 14px;
  }
  .header-inner {
    gap: 15px;
  }
}
@media (max-width: 760px) {
  :root {
    --logo-width: 200px;
    --logo-height: 55px;
  }
  .categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category .photo img {
    padding: 8px;
  }
  .product-photo img {
    padding: 8px;
  }
  .order-table {
    table-layout: fixed;
  }
  .order-table th:first-child {
    width: 34%;
  }
  .order-table th:nth-child(2) {
    width: 21%;
  }
  .order-table th:nth-child(3) {
    width: 33%;
  }
  .order-table th:last-child {
    width: 12%;
  }
  .order-name {
    overflow-wrap: anywhere;
  }
  .detail-image > img {
    height: 350px;
  }
}
