* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

@font-face {
  font-family: "AlacritySans";
  src: url(../fonts/Alacrity-Sans-Regular.ttf);
}

body {
  margin: 0;
  font-family: "AlacritySans", sans-serif !important;
}

body a {
  text-decoration: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "AlacritySans", sans-serif;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  margin: auto;
}

.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.header-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.logo-h-i img {
  max-width: 200px;
  height: auto;
}

.search-h-i {
  flex: 1;
  max-width: 600px;
}

.search-h-i form {
  position: relative;
}

.search-h-i input[type="text"] {
  width: 100%;
  height: 42px;
  padding: 0 45px 0 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  line-height: 42px;
}

.search-h-i .search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

.icons-h-i {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cart-h-i,
.user-h-i {
  font-size: 22px;
  cursor: pointer;
  color: #444;
}

.icons-h-i img {
  height: 25px;
}

.search-wrapper {
  position: relative;
}

.search-wrapper .placeholder {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  font-size: 16px;
}

.search-wrapper input:focus ~ .placeholder,
.search-wrapper input:not(:placeholder-shown) ~ .placeholder {
  display: none;
}

.scroll-wrapper {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  z-index: 0;
  padding: 20px 10px;
}

.link-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 12px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  scroll-behavior: smooth;
}

.link-row::-webkit-scrollbar {
  display: none;
}

.link-row a {
  flex: 0 0 auto;
  background: #117949;
  color: #fff;
  text-align: center;
  font-variant-caps: all-small-caps;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 10px;
  width: 115px;
  clear: both;
  border-radius: 20px;
  filter: drop-shadow(0 0 5px rgba(29, 30, 32, 0.16));
  font-family: "AlacritySans", sans-serif;
  letter-spacing: 1px;
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  pointer-events: none;
  z-index: 2;
}

.fade-left {
  left: 32px;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 50%);
}

.fade-right {
  right: 32px;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 50%);
}

.scroll-btn {
  border: none;
  background: #117949;
  color: white;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}

.link-row a:hover,
.scroll-btn:hover {
  background: #0c5635;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 5px;
  list-style: none;
}

.icon-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-variant: all-small-caps;
}

.icon-grid-circle {
  width: 100px;
  height: 100px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-grid-circle img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.icon-grid a:hover img {
  transform: translateY(-6px);
}

.icon-grid .label {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
}

.slider {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px auto;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
}

.slides img {
  width: 100%;
  max-height: 400px;
  height: auto;
  flex-shrink: 0;
  border-radius: 20px;
}

.indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.indicators span {
  display: block;
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: background 0.3s;
  cursor: pointer;
}

.indicators span.active {
  background: #fff;
}

@keyframes slideAnim {
  0% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(0%);
  }
  35% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(-100%);
  }
  70% {
    transform: translateX(-200%);
  }
  95% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}

.product-section {
  background: #fcfcfc;
  padding: 15px 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  position: relative;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  cursor: pointer;
}

.product-thumb {
  position: relative;
}

.product-thumb img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #f7f7f7;
}

.cart-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  line-height: 1;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  flex-grow: 0;
  line-height: 22px;
  min-height: 44px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  justify-content: flex-start;
}

.rating i {
  font-size: 14px;
  color: #f5a623;
}

.price {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 4px;
  margin-top: auto;
}

.product-card a {
  color: inherit;
  text-decoration: none;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #117949;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 3px 5px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
}

.qty {
  color: #565959;
  font-size: 16px;
  font-variant: all-small-caps;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 10px;
  background: #117949;
  color: white;
  padding: 14px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  font-variant: all-small-caps;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-btn {
  background: white;
  color: #117949;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
}

.toast-btn:hover {
  background: #f1f1f1;
}

.product-section h1 {
  margin: 5px 0px 20px 0px;
}

.container-cart {
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cart-left {
  flex: 1;
  min-width: 300px;
  border-radius: 0px;
}
.cart-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #d9dbe1;
  border-radius: 15px;
}
.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.item-details {
  flex: 1;
}
.item-details h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.item-details .size-price {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}
.item-details .item-total {
  font-weight: bold;
  margin-bottom: 6px;
}
.item-details .quantity {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 26px;
  font-weight: bold;
}
.remove-btn {
  cursor: pointer;
  color: #c00;
  margin-left: 10px;
  font-size: 18px;
}
.cart-right {
  flex: 1;
  min-width: 250px;
  border-radius: 0px;
  height: fit-content;
}
.cart-right h3 {
  margin-top: 0;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.summary-total {
  font-weight: bold;
  font-size: 18px;
  border-top: 1px solid #ccc;
  padding-top: 8px;
}
.checkout-btn:hover {
  background: #0b4f30 !important;
}

h1.header-cata {
  font-variant: all-small-caps !important;
  font-size: 35px;
}

h1.header-cata img {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .header-items {
    flex-wrap: wrap;
  }

  .logo-h-i {
    flex: 1;
  }

  .search-h-i {
    flex: 1 1 100%;
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-thumb img {
    height: 150px !important;
  }
  .container-cart {
    flex-direction: column;
  }
  .cart-right {
    order: 2;
    margin-top: 20px;
  }
  .desktop-links {
    display: none !important;
  }
}

.user-h-i.logged-in img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  outline: 1px solid green;
  outline-offset: 3px;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  border: 1px solid #555;
  border-radius: 0px;
  min-width: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  text-align: center;
  padding: 8px 0;
}

.user-dropdown .dropdown-arrow {
  position: absolute;
  top: -7px;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -1px 0 #000);
}

.user-dropdown button {
  display: block;
  width: 120px;
  margin-bottom: 8px;
  padding: 8px 0px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  border: 1px solid #555;
  color: #555;
  margin: 5px auto;
  border-radius: 4px;
  font-family: inherit;
  font-variant: all-small-caps;
}

#loginModalHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.checkout-container {
  max-width: 450px;
  margin: 0px auto;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  height: 100vh;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  margin-top: 10px;
}

.checkout-header .left {
  font-size: 22px;
  font-weight: 800;
  font-variant: all-small-caps;
}

.checkout-header .left i {
  margin-right: 6px;
  color: #000;
}

.form-row input {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 0;
  font-size: 14px;
  margin-bottom: 15px;
}

.form-row.two-col {
  display: flex;
  gap: 10px;
}

.form-row.two-col input {
  flex: 1;
}

.submit-btn {
  width: 100%;
  padding: 12px 0;
  background: #117949;
  border: 1px solid #117949;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  font-variant: all-small-caps;
}

.submit-btn:hover {
  background: #000;
  border: 1px solid #000;
}

#loginModalHeader .close-btn {
  position: absolute;
  top: 1px;
  right: 1px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  margin-top: 2px;
  margin-right: 2px;
}

#loginModalHeader .close-btn:hover {
  color: #117949;
}

#suggestionsBox {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none !important;
  border-radius: 0px 0px 20px 20px;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f9f9f9;
}

#suggestionsBox::-webkit-scrollbar {
  width: 6px;
}

#suggestionsBox::-webkit-scrollbar-track {
  background: #f9f9f9;
}

#suggestionsBox::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 6px;
}

#suggestionsBox::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.search-wrapper.active input {
  border-bottom: none;
  border-radius: 20px 20px 0px 0px;
}

.mobile-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .container {
    padding-bottom: 55px;
  }

  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    border-top: 1px solid #eee;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    z-index: 999;
    font-variant: all-small-caps;
  }
  .mobile-bottom-nav .nav-item {
    text-align: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    flex: 1;
  }
  .mobile-bottom-nav img {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto 3px;
  }
}

.cart-footer {
  position: relative;
}

.cart-footer .cart-count-footer {
  position: absolute;
  top: -2px;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 50%;
  max-width: 16px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  left: 20px;
  right: 0;
  margin: 0px auto;
}

.user-dropdown-f {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #555;
  min-width: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  text-align: center;
  padding: 8px 0;
}

.user-dropdown-f .dropdown-arrow-f {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  filter: drop-shadow(0 1px 0 #000);
}

.user-dropdown-f button {
  display: block;
  width: 120px;
  margin-bottom: 8px;
  padding: 8px 0px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  border: 1px solid #555;
  color: #555;
  margin: 5px auto;
  border-radius: 4px;
  font-family: inherit;
  font-variant: all-small-caps;
}

.icon-grid-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  max-width: 100%;
}

.icon-grid-footer a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 32px) / 3);
  text-decoration: none;
  color: #000;
  margin-bottom: 16px;
  font-size: 12px;
}

.icon-grid-footer img {
  width: 55px;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px;
  display: block;
  margin-bottom: 4px;
}

.icon-grid-footer span {
  text-align: center;
  display: block;
  line-height: 1.2;
  font-variant: all-small-caps;
}

.site-footer {
  background: #0e633d;
  color: #fff;
  padding: 40px 40px 20px 40px;
  font-variant: all-small-caps;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 15px;
  }
}

.footer-row {
  width: 100%;
}

.footer-logo {
  text-align: left;
  padding-top: 25px;
}

.footer-logo-img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-line {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin: 20px 0;
}

.footer-links {
  text-align: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.links-line {
  margin-bottom: 10px;
}

.footer-address {
  text-align: center;
}

.footer-address p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-btn {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #fff;
  font-size: 13px;
  width: 80px;
}

.social-btn:hover {
  background: #fff;
  color: #334e41;
}

@media (max-width: 600px) {
  .footer-links a {
    display: inline-block;
    margin: 6px 4px;
  }

  .footer-address p {
    white-space: normal;
  }
  .cart-set {
    padding-bottom: 55px;
  }
  .links-line {
    margin-bottom: 0px;
  }
}

#customAlert{
  width:100%;
  margin-top:8px;
  padding:14px 10px;
  font-size:15px;
  text-align:center;
  color:#fff;
  background:#dc3545;
  display:none;
  font-variant: all-small-caps;
}

#customAlert.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.prod-section {
  padding: 30px 15px;
}

.prod-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.prod-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.prod-slider::-webkit-scrollbar {
  display: none;
}

.prod-card {
  min-width: 170px;
  border: 1px solid #498950;
  border-radius: 25px;
  overflow: visible;
  background: transparent;
  position: relative;
  flex-shrink: 0;
}

.prod-top {
  background: #fff;
  height: 170px;
  border-radius: 25px 25px 0 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prod-top img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  position: absolute;
}

.prod-bottom {
  background: #498950;
  padding: 20px 12px;
  border-radius: 0 0 25px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  font-variant: all-small-caps;
}

.prod-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-scroll-btn {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
}

.prod-scroll-btn.left {
  left: -5px;
}

.prod-scroll-btn.right {
  right: -5px;
}

@media (min-width: 992px) {
  .prod-card {
    min-width: 170px;
  }
}

.floating-wrapper {
  position: fixed;
  right: 10px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s ease;
  pointer-events: auto;
}

.floating-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.floating-wrapper.active .floating-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-btn {
  background: #25d366;
  cursor: pointer;
}

.call-btn {
  background: #007bff;
}
.whatsapp-btn {
  background: #25d366;
}
.email-btn {
  background: #dc3545;
}

.rotate {
  transform: rotate(180deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.main-btn.pulse {
  animation: pulse 1.5s infinite;
}

.desktop-links {
  font-variant: all-small-caps;
  font-size: 18px;
}

.eight h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 16px 0;
  grid-gap: 20px;
  color: #333;
  padding-top: 10px;
}

.eight h1:after,
.eight h1:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #ccc;
}

.tandc {
  margin: 25px 15px;
}

.tandc p {
  text-align: justify;
  margin: 5px 0px;
  font-variant: all-small-caps;
  font-size: 16px;
}

.contact-section {
  padding: 20px 15px;
  font-variant: all-small-caps;
}

.contact-container {
  display: flex;
  gap: 30px;
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-box {
  height: 350px;
  display: flex;
  flex-direction: column;
}

.contact-form-box h2 {
  margin-bottom: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.row-contact {
  width: 100%;
}

.two-col {
  display: flex;
  gap: 15px;
}

.two-col input {
  width: 50%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  outline: none;
  height: 100%;
  font-variant: all-small-caps;
  font-family: inherit;
  font-size: 14px;
}

.contact-form textarea {
  flex: 1;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: #498950;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-variant: all-small-caps;
  font-size: 15px;
  font-family: inherit;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-box {
  height: 350px;
  display: flex;
  flex-direction: column;
}

.location-box h2 {
  margin-bottom: 10px;
}

.location-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .two-col {
    display: flex;
    gap: 10px;
  }

  .two-col input {
    width: 50%;
  }

  .contact-section {
    padding: 15px;
  }
}

.extra-box {
  height: 225px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card:nth-child(1) {
  background: #edffe5;
}

.info-card:nth-child(2) {
  background: #def6fe;
}

.info-card:nth-child(3) {
  background: #fffbde;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 24px;
  color: #000;
}

.info-icon {
  width: 35px;
  height: 35px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
}

.info-content {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
  margin-top: 6px;
  font-weight: bold;
}

.recent-activity-box {
  position: fixed;
  left: 10px;
  bottom: 60px;
  background: #093b22;
  padding: 15px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9999;
  font-variant: all-small-caps;
  color: #e1ff41;
}

.recent-activity-box.active {
  transform: translateX(0);
  opacity: 1;
}

.recent-activity-box.inactive {
  transform: translateX(-120%);
  opacity: 0;
}

.activity-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.activity-text {
  font-size: 15px;
  line-height: 1.4;
}

.activity-title {
  font-weight: 600;
}

.activity-time {
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.8;
}

.activity-close {
  width: 19px;
  cursor: pointer;
  margin-left: 8px;
  filter: brightness(0) invert(1);
}

.oc-bg {
  background: #def6fe;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  font-variant: all-small-caps;
  border-radius: 20px;
  padding: 20px;
  font-weight: bold;
}

.buy-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loader-spinner {
  width: 55px;
  height: 55px;
  border: 5px solid #e6f4ec;
  border-top: 5px solid #117949;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.buy-disabled {
  pointer-events: none;
  opacity: 0.7;
}

.icon-wcu-section {
  width: 100%;
  padding: 40px 15px;
  background: #fcfcfc;
  position: relative;
  overflow: hidden;
  font-variant: all-small-caps;
}

.icon-wcu-slider {
  display: flex;
  width: 100%;
}

.icon-wcu-item {
  text-align: center;
}

.icon-wcu-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.icon-wcu-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  min-height: 42px;
}

@media (min-width: 769px) {
  .icon-wcu-slider {
    justify-content: space-between;
  }

  .icon-wcu-item {
    flex: 1;
    max-width: 16.66%;
  }

  .prod-scroll-btn-wcu {
    display: none;
  }
}

@media (max-width: 768px) {
  .icon-wcu-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .icon-wcu-slider::-webkit-scrollbar {
    display: none;
  }

  .icon-wcu-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .prod-scroll-btn-wcu {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    background: #f1f1f1;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
  }

  .prod-scroll-btn-wcu.left {
    left: 15px;
  }

  .prod-scroll-btn-wcu.right {
    right: 15px;
  }
}

.wcu-title-area {
  text-align: center;
  font-variant: all-small-caps;
  padding-top: 20px;
  background: #fcfcfc;
  color: #8f5336;
  font-weight: bold;
}

.wcu-title-area h1 {
  margin-bottom: 10px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.wcu-line {
  width: 120px;
  height: 5px;
  background: #8f5336;
  margin: 10px auto 15px auto;
  border-radius: 20px;
}

.wcu-title-area h4 {
  max-width: 700px;
  margin: auto;
  font-weight: 500;
}

.w3-animate-zoom {
  animation: animatezoom 0.3s;
}

.fspinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: fspin 0.7s linear infinite;
  margin: auto;
}

@keyframes fspin {
  100% {
    transform: rotate(360deg);
  }
}
.fmsgbox {
  width: 100%;
  margin-top: 10px;
  padding: 15px 10px;
  text-align: left;
  font-size: 15px;
  font-variant: all-small-caps;
}
.fsuccess {
  background: #1ab56f !important;
  color: #fff;
}
.ferror {
  background: #fd6f84 !important;
  color: #fff;
}
