* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

:root {
  --primary-bg: #e5e5e5;
  --primary-text: #ca9f4e;
}

a {
  text-decoration: none;
  color: var(--primary-text);
}

.text-1 {
  color: var(--primary-text);
}

.custom-bg {
  background: var(--primary-bg);
}

.bg-1 {
  background: var(--primary-text);
}

/* common styles */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.sub-title {
  color: var(--primary-text);
  font-weight: bold;
}

.main-title {
  font-weight: bold;
}

@media (max-width: 768px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* end common styles */

/* navbar */
.nav-link {
  color: var(--primary-text);
}

#navbar .custom-btn {
  border: solid 1px var(--primary-text);
  color: var(--primary-text);
  font-size: 11px !important;
  font-weight: 500;
  transition: 0.5s;
}

#navbar .custom-btn:hover {
  color: white;
  background: var(--primary-text);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
/* end navbar */

/* hero */
#hero {
  background: url("../images/banner.webp");
  height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

#hero h1 {
  color: var(--primary-text);
}

#cta {
  margin-top: 40px;
}

.cta-btn-1 {
  background: transparent;
  color: var(--primary-text);
  border: solid 1px var(--primary-text);
  border-radius: 20px;
  padding: 10px 8px 10px 15px;
  font-weight: bold;
  transition: 0.5s;
}

.cta-btn-2 {
  background: white;
  border: solid 1px white;
  color: var(--primary-text);
  border-radius: 20px;
  padding: 10px 8px 10px 15px;
  font-weight: bold;
  transition: 0.5s;
}

.icon-box-1 {
  border: solid 1px var(--primary-text);
  border-radius: 100%;
  padding: 3px 8px 5px 8px;
  transition: 0.5s;
}

.icon-box-2 {
  background: var(--primary-text);
  border: solid 1px var(--primary-text);
  color: white;
  border-radius: 100%;
  padding: 3px 8px 5px 8px;
  transition: 0.5s;
}

.cta-btn-1:hover {
  background: white !important;
  color: var(--primary-text) !important;
}

.cta-btn-2:hover {
  background: transparent;
  color: var(--primary-text);
  border: solid 1px var(--primary-text);
}

@media (max-width: 768px) {
  #hero {
    height: 80vh;
    background: var(--primary-bg);
  }

  .cta-btn-1 {
    font-size: small;
  }
  .cta-btn-2 {
    font-size: small;
  }
}
/* end hero */

/* scroll */
.scroll-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.scroll-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
  align-items: stretch;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  flex: 0 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: stretch;
  transition: transform 0.3s ease-in-out;
}

.client-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .scroll-item {
    width: auto;
  }
}

@media (max-width: 767px) {
  .scroll-item {
    width: auto;
  }
}
/* end scroll */

/* products */
.product-card {
  border: var(--primary-text) 1px solid;
  border-radius: 15px;
}
.product-card .card-image > img {
  width: 100%;
  height: 200px;
  border-radius: 15px 15px 0px 0px;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-text);
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  z-index: 1;
}

.order-btn {
  background: white;
  color: var(--primary-text);
  border: solid 1px var(--primary-text);
  border-radius: 20px;
  padding: 10px 8px 10px 15px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.5s;
}

.order-icon {
  padding: 3px 8px 5px 8px;
}

.order-btn:hover {
  background: var(--primary-text);
  color: white;
}

.tab {
  display: none;
  transition: 0.5s;
}

.active-tab {
  display: flex;
  transition: 0.5s;
}

.tab-button.active-button {
  background: white;
  color: var(--primary-text);
}
/* end products */
