@font-face {
  font-family: "Dihjauti";
  src: url("/assets/fonts/DihjautiS-Regular.otf");
}
@font-face {
  font-family: "Gill Sans Nova";
  src: url("/assets/fonts/gillsansnova_book.ttf");
}

/* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Dihjauti', Arial, sans-serif;
      background-color: #fbfbfb;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      height: auto;
    }

/* Layout components */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-narrow {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

.section {
  padding: 48px 0;
}

/* Header styles */
.header {
  background-color: #fbfbfb;
  width: 100%;
}

.header-top {
  background-color: #fbfbfb;
  padding: 8px 0;
  border-bottom: 1px solid #eceaea;
}

.header-top .container {
  padding: 0 150px;
}

.header-contact {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #210201;
}

.header-main {
  background-color: #2d030b;
  padding: 32px 0;
}

.header-logo {
  width: 294px;
  height: 66px;
}

.header-actions {
  display: flex;
  gap: 60px;
  align-items: center;
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fbfbfb;
  text-decoration: none;
}

.header-action img {
  width: 24px;
  height: 24px;
}

.header-action-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.cart-badge {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #fbfbfb;
  color: #060606;
  font-size: 12px;
  font-weight: 600;
  line-height: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  min-width: 14px;
  text-align: center;
}

.header-nav {
  background-color: #fbfbfb;
  padding: 16px 0;
  border-bottom: 1px solid #eceaea;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.menu-button {
  background-color: #2d030b;
  color: #fbfbfb;
  padding: 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}

.dropdown-menu {
  display: none;
  background-color: #fbfbfb;
  border: 1px solid #eceaea;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  min-width: 200px;
  max-width: 900px;
  height: 220px;
}

.menu__list {
  display: flex;
  list-style: none;
  padding: 32px;
  margin: 0;
  gap: 24px;
}

.menu__title {
  font-weight: 700;
  font-size: 18px;
  color: #2D030B;
  margin-bottom: 16px;
}

.menu__link {
  text-decoration: none;
  color: #2D030B;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}


.search-container {
  position: relative;
  width: 46%;
}

.search-input {
  width: 100%;
  padding: 10px 36px 10px 16px;
  background-color: #eceaea;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #978080;
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.show-all-button {
  background-color: #2d030b;
  color: #fbfbfb;
  padding: 6px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
}

    /* Main content styles */
/* ===== TEXT PAGES (LEGAL) ===== */

.text-page {
  padding: 48px 0 48px;
}

.text-page-content {
  /* max-width: 820px;  */
  margin: 0 auto;
}

.text-page-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #2d030b;
}

.text-block {
  margin-bottom: 24px;
}

.text-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2d030b;
}

.text-block p {
  font-size: 18px;
  /* margin-bottom: 10px; */
  color: #210201;
}

.text-block ul {
  padding-left: 20px;
  margin-top: 8px;
}

.text-block li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #210201;
}


    /* Footer styles */
.footer {
  background-color: #2d030b;
  color: #fbfbfb;
  padding: 30px 0;
}

.footer-logo {
  width: 186px;
  height: 100px;
  margin: 0 auto 40px;
  display: block;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #cda27a;
  margin-bottom: 12px;
}

.footer-link {
  color: #fbfbfb;
  text-decoration: none;
  font-size: 18px;
  font-family: "Gill Sans Nova", sans-serif;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #cda27a;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-contact img {
  width: 22px;
  height: 22px;
}

.footer-contact-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #fbfbfb;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 20px;
}

.social-icon {
  width: 28px;
  height: 28px;
  padding: 6px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(236, 234, 234, 0.1);
  margin: 38px 0 6px;
}

.footer-copyright {
  font-size: 14px;
  font-family: "Gill Sans Nova", sans-serif;
  font-weight: 400;
  line-height: 13px;
  color: #896246;
  text-align: right;
}

    /* Responsive media queries */
    @media (max-width: 639px) {
      .text-block{
        margin-bottom: 12px;
      }

      .text-block h2{
        margin-bottom: 8px;
      }

      .text-page{
            padding: 32px 0 32px;
      }

      .header-top .content-wrapper,
      .header-main .content-wrapper,
      .header-nav .content-wrapper {
        padding: 0 16px;
        flex-direction: column;
        gap: 16px;
      }

      .text-page-title{
        font-size: 24px;
        margin-bottom: 24px;
      }

      .header-contact {
        font-size: 14px;
        text-align: center;
      }

      .logo {
        width: 200px;
        height: auto;
      }

      .header-actions {
        gap: 16px;
      }

      .search-container {
        width: 100%;
      }

      .hero-title {
        font-size: 32px;
        line-height: 48px;
        padding: 0 16px;
      }

      .content-grid {
        flex-direction: column;
        padding: 0 16px;
      }

      .sidebar {
        width: 100%;
        margin-bottom: 24px;
      }

      .main-content-area {
        padding: 16px;
      }

      .section-title {
        font-size: 20px;
      }

      .section-text, .section-text-single {
        font-size: 16px;
      }

      .stats-main {
        flex-direction: column;
      }

      .stat-card-small {
        width: 100%;
      }

      .stats-row {
        flex-direction: column;
      }

      .stats-row .stat-card {
        width: 100%;
      }

      .stat-number {
        font-size: 48px;
        line-height: 72px;
      }

      .footer .content-wrapper {
        padding: 0 16px;
      }

      .footer-main {
        flex-direction: column;
        gap: 32px;
      }

      .footer-about, .footer-content {
        width: 100%;
      }

      .footer-sections {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 32px;
      }

      .footer-addresses, .footer-contacts {
        width: 100%;
      }
    }

    @media (min-width: 640px) and (max-width: 767px) {
      .header-top .content-wrapper,
      .header-main .content-wrapper,
      .header-nav .content-wrapper {
        padding: 0 24px;
      }

      .hero-title {
        font-size: 40px;
        line-height: 60px;
      }

      .stats-main {
        flex-direction: column;
      }

      .stat-card-small {
        width: 100%;
      }

      .stats-row {
        flex-wrap: wrap;
      }

      .stats-row .stat-card {
        width: calc(50% - 10px);
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .header-top .content-wrapper,
      .header-main .content-wrapper,
      .header-nav .content-wrapper {
        padding: 0 32px;
      }

      .content-grid {
        padding: 0 32px;
      }

      .footer .content-wrapper {
        padding: 0 32px;
      }
    }

    @media (min-width: 1024px) {
      .stats-main {
        flex-direction: row;
      }

      .stats-row {
        flex-direction: row;
      }
    }