:root {
  --font-lato: "lato", sans-serif;
}

body {
  font-family: var(--font-lato) !important;
}
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
#mobile-menu.open {
  max-height: 400px; /* Adjust for content height */
}
.setvices-icons {
  display: flex;
}
.setvices-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 55px;
  height: 55px;
  border: 3px solid #fef566;
  border-radius: 100%;
  margin-right: -15px;
}

footer {
  text-align: center;
}

.delivery-banner-section {
  position: relative;
}
.delivery-banner-content {
  position: absolute;
  bottom: 70px;
  text-align: center;
}

.delivery-countries-section {
  position: relative;
}

.delivery-countries-content {
  position: absolute;
  top: 0;
  text-align: center;
}

.feature-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  max-width: 220px;
  max-height: 220px;
}

.loop-container {
  display: flex;
  gap: 40px;
  overflow: hidden;
  height: 460px;
  border-radius: 10px;
}

.loop-column {
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: scrollUp 30s linear infinite;
}

.loop-column img {
  width: 468px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* keyframes for vertical scroll */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Reverse direction for right column */
.loop-column.reverse {
  animation: scrollDown 30s linear infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1480px !important;
  }
}

@media (max-width: 1366px) {
  .loop-container {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .loop-container {
    height: 250px;
    gap: 20px;
    border-radius: 10px;
  }
}

.gallery-img {
  will-change: transform;
  animation-timing-function: linear;
  animation-fill-mode: both;
  animation-timeline: scroll();
}

/* Left-moving images */
.gallery-left {
  animation-name: move-left;
}

/* Right-moving images */
.gallery-right {
  animation-name: move-right;
}

@keyframes move-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100px);
  }
}

@keyframes move-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100px);
  }
}

/* Button Styles */

:root {
  --black: black;
  --paragraph-gray: dimgrey;
  --primary: #fdf567;
  --medium: 20px;
  --white: white;
  --small: 12px;
  --gray: #e5e5e5;
  --large: 60px;
  --primary-dark: #0e0e0e;
  --dark-gray-50: #0000001a;
  --primary-light: #fdf5674d;
  --dark-gray: #d6d6d6;
  --white-50: #ffffff80;
  --light-gray: #f9f9fa;
}

.btn {
  display: flex;
  text-align: center;
  text-transform: none;
  justify-content: space-between;
  grid-column-gap: 10px;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
  border: 0;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--black);
  opacity: 1;
  color: var(--primary);
}

/* text wrapper with two lines stacked */
.btn .text {
  position: relative;
  display: block;
  height: auto; /* line height for sliding */
  overflow: hidden;
}

.btn .text span {
  display: block;
  transition: transform 0.3s ease;
}

/* top span = visible by default */
.btn .text span:first-child {
  transform: translateY(0);
}

/* bottom span = hidden below */
.btn .text span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(0);
}

.clip {
  position: relative;
  overflow: hidden;
}

.button-icon-wrap {
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.button-icon-wrap.right-icon {
  position: absolute;
  top: 0;
  right: -100%;
}

.btn:hover .text span:first-child {
  transform: translateY(-100%);
}

.btn:hover .text span:last-child {
  transform: translateY(-100%);
}

.btn:hover .clip .button-icon-wrap {
  transform: translateX(-100%);
}

.btn:hover .clip .button-icon-wrap.right-icon {
  transform: translateX(-100%);
}

.primary-button {
  border-radius: var(--large);
  background-color: var(--primary);
  color: var(--black);
}

.primary-button:hover {
  background-color: var(--black);
  opacity: 1;
  color: var(--primary);
}

.secondary-button {
  background-color: var(--dark-gray);
  color: var(--black);
}

.secondary-button:hover {
  background-color: var(--black);
  color: var(--white);
}

.primary-button-dark {
  background-color: var(--primary);
  color: var(--black);
}

.primary-button-dark:hover {
  background-color: var(--white);
  color: var(--black);
}

.primary-button-black {
  background-color: var(--black);
  color: var(--white);
}

.primary-button-black:hover {
  background-color: var(--white);
  color: var(--black);
}

.primary-button-glass-finish {
  background-color: var(--white);
  color: var(--black);
}

.primary-button-glass-finish:hover {

  background-color: var(--white-50);
  color: var(--primary);
  /* background-color: var(--white);
  color: var(--black); */
}

