:root {
  --header-bg: #F5F4EF;
  --footer-bg: #1B1A18;
  --soft-border: #E2E1D8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,body {
  overflow-x: hidden;
}

body {
  background-color: #F5F4EF !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #2F2E2C;
}

img {
  max-width: 100%;
  height: auto;
}

.main-slider img {
  height: 500px;
  object-fit: fill;
}

@media (max-width:768px) {
  .main-slider img {
    height: 300px;
  }
}

.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 180px;
}

@media (min-width:992px) {
  .category-tile {
    height: 200px;
  }
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.category-tile .category-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
}

.product-card img {
  height: 250px;
  object-fit: fill;
  display: block;
}

.product-media {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--soft-border);
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 520px;
  object-fit: fill;
  display: block;
}

@media (max-width:992px) {
  .product-media img {
    height: 360px;
  }
}

.thumb {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--soft-border);
  background: #fff;
}

.thumb img {
  width: 100%;
  height: 90px;
  object-fit: fill;
  display: block;
}

.about-hero-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--soft-border);
  background: #fff;
}

.about-hero-media img {
  width: 100%;
  height: 380px;
  object-fit: fill;
  display: block;
}

@media (max-width:992px) {
  .about-hero-media img {
    height: 280px;
  }
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.page-hero,
.about-hero,
.filter-panel,
.buy-card {
  border: 1px solid var(--soft-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.nav-elevated {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.marquee-container {
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--soft-border);
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 0;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
  font-size: .85rem;
  font-weight: 500;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.footer-social-icon {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  text-decoration: none;
}

.site-footer {
  background: var(--footer-bg);
  color: #fff;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-title {
  font-weight: 700;
}

.site-footer .footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.site-footer .footer-list li {
  margin-bottom: 8px;
}

.site-footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
}