body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

button {
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.common-padding {
  padding: 10px 70px;
}



.logo-section {
  width: 140px;
  height: auto;
}

.navbar {
  background-color: black;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.4px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.chat {
  display: flex;
  align-items: center;
  gap: 1px;
}

.info {
  color: white;
  padding: 2px 4px;
  background-color: red;
  border-radius: 5px;
  font-size: 12px !important;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.icon-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #EC1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.avatar-bg {
  background: white;
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #fff;
  color: black;
  font-size: 12px;

  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner {
  position: relative;
  overflow: hidden;
  height: 1114px;
  max-height: 100vh;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Lazy loading optimization for banner images */
.lazy-banner {
  background-color: #f0f0f0;
  /* Placeholder background */
  min-height: 100%;
}

.lazy-banner[src] {
  background-color: transparent;
}

/* Optimize image rendering */
.banner-img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: opacity;
}

.slider-counter {
  position: absolute;
  left: 30px;
  bottom: 20px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: sans-serif;
  z-index: 10;
}

.slider-counter .counter-num {
  color: #aaa;
  transition: color 0.3s ease;
  cursor: pointer;
}

.slider-counter .counter-num.active {
  color: #fff;
}


.line {
  color: white;
}

.banner-img {
  height: 100%;
  object-fit: cover;
}

.second-common-padding {
  padding: 10px 60px;
}




/* Basic Navbar */
.second-nav {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-item {
  padding: 29px 15px;
  border-right: var(--height-1, 1px) solid var(--color-white-25, rgba(255, 255, 255, 0.25));

}


.menu-item:last-child {
  border-right: none;
}

.menu-item a {
  text-decoration: none;
  color: #333;
  display: block;
  display: flex;
  gap: 5px;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;

}


.corporate-mega-box {
  position: absolute;
  top: 100%;
  left: -23px;

  background: #fff;
  padding: 40px 61px 61px 61px;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  border-radius: 20px;
  width: auto;
  min-width: 300px;
  /* prevents too small */
  white-space: nowrap;
}

.corporate-mega-columns {
  display: flex;
  gap: 31px;

}

.corporate-mega-column {
  flex: 1;
  font-family: 'Poppins', sans-serif;
}

.corporate-mega-column h3 {
  color: #363636;

  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1px;
  /* 5% */
  text-transform: capitalize;
}

.corporate-mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 4rem;
}

.corporate-mega-column ul li {
  margin-bottom: 8px;
}

.corporate-mega-column ul li a {
  color: #888;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  text-transform: capitalize;
}


/* Basic Navbar */

.second-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  /* Add background for visibility */

  display: flex;
  align-items: center;
  padding: 20px;
  color: white;
  z-index: 1000;
  /* Increased z-index */
  border-bottom: #E9E9E9 1px solid;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;

}

.menu-item {
  position: relative;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Category Box */
.category-box {
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-right: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.category-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.menu-icon {
  font-size: 20px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.category-text {
  flex: 1;
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.category-box img {
  transition: transform 0.3s ease;
}

.category-box:hover img {
  transform: rotate(180deg);
}

.arrow {
  font-size: 16px;
}

/* Mega Menu (two-panel dropdown) */
.mega-menu {
  position: absolute;
  top: 70%;
  left: 299px;
  width: 78%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  /* Keep each panel at its natural height */
}

.category-box:hover+.mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* .mega-menu.active {
  display: flex;
  gap: 20px;

} */

/* Show mega menu when hovering on category OR mega-menu itself
.category-box:hover+.mega-menu,
.category-box:focus+.mega-menu,
.category-wrapper:hover .mega-menu,
.mega-menu:hover {
  display: flex;
  gap: 0.8rem;
  background: transparent;
  width: 78%;
} */

/* Left side: Categories */
.categories {
  width: 260px;
  background-color: white;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;

}

.categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.categories li {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  color: black;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-100%);
  animation: slideInLeft 0.6s ease forwards;
}

.categories li:nth-child(1) {
  animation-delay: 0.1s;
}

.categories li:nth-child(2) {
  animation-delay: 0.15s;
}

.categories li:nth-child(3) {
  animation-delay: 0.2s;
}

.categories li:nth-child(4) {
  animation-delay: 0.25s;
}

.categories li:nth-child(5) {
  animation-delay: 0.3s;
}

.categories li:nth-child(6) {
  animation-delay: 0.35s;
}

.categories li:nth-child(7) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
  }
}



.categories li:hover {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  transform: translateX(5px);

}

.categories li.active {
  background: #ECECEC;
  color: black;
  transform: translateX(10px);
}

.categories li img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.categories li:hover img {
  transform: scale(1.1);
}

/* Right side: Mega content */
.mega-content {
  flex: 0 0 auto;
  /* stops auto stretch */
  width: 60%;

  max-width: 90%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 432px;
  /* Match category panel height (9 items × ~48px) */
}

.category-box:hover+.mega-menu .mega-content,
.mega-menu:hover .mega-content {
  opacity: 1;
  transform: translateX(0);
}


/* .mega-content.active {
  display: block;

} */

.content-box {
  display: none;
  padding: 30px;
  animation: slideInRight 0.4s ease forwards;
}

.content-box.active {
  display: block;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feautere-row {
  display: flex;
  gap: 40px;
}

.feautere-row>div {
  flex: 1;
}

.feautere-row li {
  list-style: none;
  margin-bottom: 8px;
  transform: translateX(-10px);
  opacity: 0;
  animation: slideInFade 0.4s ease forwards;

}

.feautere-row ul {
  list-style: none;
  padding: 0;
}

.feautere-row h4 {

  margin-bottom: -10px;
  font-size: 20px;
  color: #363636;
  position: relative;
}

.feautere-row h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;

  transition: width 0.3s ease;
}

.feautere-row:hover h4::after {
  width: 50px;
}

.feautere-row li:nth-child(1) {
  animation-delay: 0.1s;
}

.feautere-row li:nth-child(2) {
  animation-delay: 0.2s;
}

.feautere-row li:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideInFade {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.feautere-row a {
  text-decoration: none;
  color: #888;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.feautere-row a:hover {
  color: #667eea;
  transform: translateX(5px);
}

.feautere-row a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #667eea;
  transition: width 0.3s ease;
}

.feautere-row a:hover::before {
  width: 100%;
}

.search {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.5rem;
  color: red;
  border-radius: 42px;
  background: rgba(235, 33, 39, 0.20);
  padding: .7rem 3rem 0.6rem 0.7rem;
}

.search img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.search input {
  border: none;
  background: transparent;
  font-size: 14px;
  color: red;
  outline: none;
  width: 170px;
}

.search input::placeholder {
  color: red;
}

.search-whole {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1rem;

}

.nav-last {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-right: 70px;
}

.banner-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;

}

.banner-header h1 {
  color: #FFF;

  font-size: 67.395px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;


}

.bulk {
  /* text-decoration: none;
    border-bottom: 4px solid #fff;
    padding-bottom: 0; */
  text-decoration: underline;
}


.banner-header p {
  color: #BFBFBF;
  text-align: center;
  font-size: 21.372px;
  font-style: normal;
  font-weight: 200;
}

.order-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: sans-serif !important;
  margin-top: 4rem;
  cursor: pointer;
  opacity: 0;
  /* start hidden */
  transform: translateY(40px);
  /* start lower */
  animation: slideUp 0.8s ease-out forwards;
  /* trigger */
  animation-delay: 0.2s;
}


@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-now {
  padding: 16.095px 29.302px 16.439px 29.302px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #212121;
  color: #FFF;
  text-align: center;
  font-size: 15.046px;
  font-style: normal;
  line-height: 22.856px;
  text-transform: capitalize;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-now:hover {
  background: #333;
  transform: scale(1.05);
}

.order-now:active {
  transform: scale(0.95);
}

.explore-button {
  background-color: transparent !important;
  color: #FFF !important;
  border: 2px solid white !important;
  border-radius: 7px !important;
}


.responsive-nav {
  display: none;
}

.sidebar-menu {
  display: none;
}

.side-menu {
  position: fixed;
  top: 0px;
  left: 0;
  width: 353px;
  background: #f9fafb;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: scroll;

}


.side-menu.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.close-btn svg {
  width: 20px;
  height: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
}

.overlay.active {
  display: block;
}

.side-close-btn {
  text-align: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  background: white;
  border: none;
  font-size: 13px;
  padding: 23px 14px 0px 0px;
  cursor: pointer;

}


.search-container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 27px 15px;
}

.search-input {
  width: 100%;
  padding: 8px 30px 8px 0;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #767676;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
  color: #999;
}


.tabs {
  display: flex;
}

.tab-btn {
  flex: 1;
  padding: 17px;
  background: #F5F5F5;
  border-bottom: 1px solid #DBDBDB;
  border: none;
  cursor: pointer;
  color: #B9B1B1;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
}

.tab-btn.active {
  background: #e7e7e7;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid black;
}

/* Tab content */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  margin: 8px 0;
}




.tab-sidebar {
  width: 100%;
  background: #fff;
  border-right: 1px solid #ddd;
  position: relative;

}

/* vertical line */
/* .tab-sidebar ul::before {
   content: "";
  position: absolute;
  left: 284px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ECECEC;
  height: 70%;
} */
.more-sidebar ul::before {
  height: 100% !important;
}

.tab-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab-sidebar li {
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.tab-sidebar li:hover {
  background: #f8f8f8;
}

.tab-sidebar li a {
  text-decoration: none;
}

.tab-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.tab-text {
  flex: 1;
  letter-spacing: 0.5px;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
}

.tab-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  font-size: 19px;
  transition: all 0.3s ease;
  background: #f8f8f8;
  border-left: 1px solid #ECECEC;
}

.has-submenu.open>li>.tab-arrow {
  transform: rotate(90deg);
  background: #000;
  color: #fff;
  border-left: none;
}


.no-toggle .tab-arrow {
  transform: none !important;
  background: #f8f8f8 !important;
  color: inherit !important;
  border-left: 1px solid #ececec !important;
}

.has-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.has-submenu>li {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #ddd;

  font-size: 14px;
}

.tab-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 19px 23px;
}

.tab-left a {
  text-decoration: none;
}

.submenu-nav {
  display: none;
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.has-submenu.open>.submenu-nav {
  display: block;
}

.submenu-nav li {
  font-size: 15px;
  cursor: pointer;
  color: #737373;
}

.submenu-nav.sub-nav-padding {
  padding-left: 40px;
  /* adjust as you need */
}


@media (max-width: 480px) {
  .tab-sidebar {
    width: 99.5%;
  }
}

.custom-swiper-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 50px 0;
  padding-bottom: 20px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 6rem;
  margin-left: 6rem;
}

.marquee-content a {
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.marquee-content a:hover {
  transform: scale(1.05);
  color: #d35735;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* pause on hover */
.custom-swiper-container:hover .marquee {
  animation-play-state: paused;
}

/* card styling remains same */
.swiper-slide {
  font-size: 18px;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  color: black;
  cursor: pointer;
  padding: 0px;
  border-radius: 8px;
  margin-right: 7px;
}

.swiper-slide img {
  object-fit: cover;
  border-radius: 7px;
}


.custom-swiper-container .swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.custom-swiper-container .swiper-slide {

  font-size: 18px;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  color: black;
  cursor: pointer;
  padding: 5px 57px 5px 10px;
  border-radius: 8px;
  margin-right: 7px !important;
}

.slider-gap {
  display: flex;
  gap: 2rem;
}

.custom-swiper-container .swiper-slide img {
  object-fit: cover;
  border-radius: 7px;
}

.swiper-pagination {
  margin-top: 5rem;
}

.myCustomSwiper .swiper-pagination-bullet {
  background: white;
  border: 2px solid #BBB;

}

.myCustomSwiper .swiper-pagination-bullet-active {
  background: #333;
  border: none;
  width: 11px;
  height: 11px;
}

.myCustomSwiper .swiper-slide a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease;
}

.myCustomSwiper .swiper-slide a:hover {
  transform: scale(1.05);
  color: #d35735;
}

.gift-banner {
  background: #fff;

}

.gift-container {

  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15rem;
}



.gift-padding {
  padding: 0 8rem;
}

.gift-image {
  flex: 1;
  padding: 0.9rem;
  border: 1px solid black;
  border-radius: 10px;
  box-sizing: border-box;

  /* fixed but responsive */
  width: 100%;
  max-width: 50%;
  height: 50%;
  /* Fixed height */
  overflow: hidden;
  /* Hide extra part of image */
}

.gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crop + fit perfectly */
  border-radius: 8px;
  display: block;
}



.gift-content {
  flex: 1;
}

.gift-content h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: start;
}

.gift-content .green {
  color: #168f41;
}

.gift-content .bold {
  font-weight: 800;
  color: #000;
}

.gift-content p {
  margin: 1rem 0 2rem;
  color: #333;
  font-size: 16px;
  width: 85%;
}

.gift-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.black {
  background: #000;
  color: #fff;
}

.btn.black:hover {
  background: #333;
}

.btn.outline {
  border: 1px solid #000;
  color: #000;
}

.btn.outline:hover {
  background: #000;
  color: #fff;
}


/* brand section */

.brand-slider-section {
  background: #000;
  padding: 5rem 0.4rem 1rem 0.4rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 4rem;
}

.brand-slider-section .brand-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.brand-img-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

.brand-img {
  border-radius: 14px;
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-img:hover {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.brand-slide-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;

}

.brand-slide-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-slide-wrapper:hover .brand-slide-img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.text-in-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.avail-button {
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  padding: 11px 16px;
  background-color: black;
  border: none;
  border-radius: 7px;
  color: #FFF;
  font-family: 'Poppins', sans-serif !important;
}

.brand-text {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5rem;
}

.brand-para {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  width: 85%;
  padding: 0 2rem;

}

.brand-slider-section .brand-img {
  border-radius: 10px;
  height: 450px;
  width: 460px;
}

.brand-slider-section .swiper {

  padding-bottom: 2.5rem;
  margin-top: -1.5rem;

}

.brand-head-1 h1 {
  margin-bottom: 15px;
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  width: 70%;

}

.brand-head-1 p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 200;


}

.brand-slider-section .swiper-slide {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 4px !important;
  height: 100% !important;
}

.brand-slider-section .swiper-slide img {
  height: 100%;
  object-fit: cover;
  width: 550px;
}


.brand-slider-section .swiper-pagination {
  bottom: 0;
  text-align: center;
}

.brand-slider-section .swiper-pagination-bullet {
  background: black;
  opacity: 0.6;
  border: 1px solid #BBB;
}

.brand-slider-section .swiper-pagination-bullet-active {
  background: #333;
  opacity: 1;
}

.brand-head {
  color: white;
}

.brand-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-now {
  padding: 10.2px 27px;
  border: 1px solid white;
  background-color: black;
  color: white;
  border-radius: 35px;
}

/* new gift section */

.new-gift-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 5rem 14rem 0.8rem 14rem;
  flex-wrap: wrap;
  background: #F4F4F4;
}


.new-gift-banner {
  min-width: 250px;
  max-width: 300px;
  position: relative;
  top: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.new-gift-banner img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
}

.banner-text {
  position: absolute;
  top: 5%;
  left: 22%;
  color: white;
  text-align: center;
}

.banner-text h4 {
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: -1rem;
}

.banner-text h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;

}


.new-gift-products {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.new-gift-heading {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: left;
}

.new-gift-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quantity-selector {
  width: fit-content;
}

.new-gift-card {
  background: white;
  border-radius: 10px;
  padding: 0rem 1rem 0.2rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  cursor: pointer;
}

.new-gift-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.product-image img {
  border-radius: 8px;
  width: 100%;
  display: block;
  transition: opacity 0.6s ease, transform 0.6s ease;
  height: 220px;
}


.product-image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.new-gift-card:hover .product-image .img-default {
  opacity: 0;
  transform: scale(1.05);
  /* slightly zoom out as it fades */
}

.new-gift-card:hover .product-image .img-hover {
  opacity: 1;
  transform: scale(1.02);
  /* small pop effect */
}

.new-gift-card h3,
.new-gift-card p,
.new-gift-card .colors,
.new-gift-card .sku {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.new-gift-card:hover h3,
.new-gift-card:hover p,
.new-gift-card:hover .colors,
.new-gift-card:hover .sku {
  transform: translateY(-5px);
}


.badges-container {
  position: absolute;
  top: 7px;
  left: 7px;
  /* Added some padding from left */
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  z-index: 10;
}

.tag {
  position: relative;
  /* top: 7px; REMOVED */
  /* left: 0px; REMOVED */
  background: #E5FFDB;
  color: black;
  padding: 0.2rem 0.8rem;
  border-radius: 14px;
  font-size: 0.7rem;
  font-weight: 400;


}


.colors {
  display: flex;
  gap: 0.3rem;
  margin: -0.5rem 0;
}

.color-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.new-gift-more {
  text-align: right;

}

.new-gift-more button {

  border: none;
  padding: 9.2px 25px 9.2px 20px;
  border-radius: 35px;
  background: #E1EBFF;
  cursor: pointer;
  color: #1C61E7;
  text-align: center;

  font-size: 13px;
  font-style: normal;
  font-weight: 600;

  text-transform: capitalize;
}

.more-head-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.banner-text button {
  padding: 12.2px 20px 13.8px 20px;
  background-color: black;
  border-radius: 5px;
  color: white;
  border: none;
}

.new-gift-card h3 {
  color: #333;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;

}

.stock {
  margin-top: -0.5rem;
  color: #333;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;

}

.see-price {
  margin-top: -0.7rem;
  color: #000;
  font-size: 15px;
  font-weight: 600;

}

.sku {
  color: #333;
  font-size: 13.5px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.sku-num {
  color: #A5A5A5 !important;
}

/* shop section */

.gift-hero {
  display: flex;

  justify-content: center;
  gap: 2rem;
  padding: 5rem 14rem;
  background: #f3f3e8;
}

.gift-hero-image {
  position: relative;
  flex: 1;

  border-radius: 12px;
  overflow: hidden;
}

.gift-hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 1rem 1.5rem 0.8rem 1.6rem;
  cursor: pointer;
  border: 1px solid white;
}



.play-button img {
  width: 37px;
  height: 43px;
}

.gift-hero-content {
  flex: 1;
}

.gift-hero-content h2 {
  color: #242424;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: -1rem;
}

.gift-hero-content p {
  color: rgba(15, 15, 15, 0.80);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;

}

.buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: black;
  color: white;
  border: none;
  padding: 12.2px 25px 13.8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px
}

.alpha-bag {
  color: #333;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration-thickness: 2px;
}


.gift-first {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
}

.all-gift-section {
  display: flex;
  flex-direction: column;
}

.new-hero-cards {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1rem !important;
}

.gift-hero {
  display: flex;

  justify-content: center;
  gap: 5rem;
  padding: 8rem 14rem 8rem 14rem;
  background: #f3f3e8;
}

.gift-hero-image {
  position: relative;
  flex: 1;

  border-radius: 12px;
  overflow: hidden;
}

.gift-hero-content {
  flex: 1;
}

.new-hero-cards {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1rem !important;
}



/* note section */

.note-toatal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 14rem;
  gap: 6rem;

}

.gift-first-vedio {
  position: relative;
  border: 1px solid black;
  padding: 0.8rem;
  border-radius: 12px;
  background: #fff;
}

.gift-first-vedio video {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.notes-section,
.gift-first {
  flex: 1;
}

.notes-section h1 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: -1rem;
  margin-top: 5px;
}

.notes-section p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;

}

.notes-section h2 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  margin-top: -1rem;
  margin-bottom: -1rem;
}

/* technology gift */
.gift-padd {
  padding: 0rem 14rem 8rem 14rem;
}

.gift-tech {
  background-color: #F4F4F4;
}


.full-width-section {}

.tech-gift {
  background-color: white;
  padding: 76px 75px 70px 25px;
  border-radius: 10px;
  display: flex;
  align-items: start;
  gap: 2rem;
}

.tech-gift h1 {
  color: #242424;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  margin: -11px 0;
}

.tech-gift p {
  color: #767676;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  width: 70%;

}

.tech-button button {
  padding: 10px 20px;
  background-color: #F1F1F1;
  border-radius: 5px;
  border: none;
  color: #3E3E3E;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.2s ease-in-out;


}

.tech-button {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-button button:hover {
  background-color: #e0e0e0;
  /* subtle hover */
}

.tech-gift-flex {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.my-card-section {
  display: flex;
  padding: 1rem 0;
  gap: 1rem;
}

.my-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  width: 33%;
}

/* permanent overlay */
.my-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  /* adjust 0.25 → darker or lighter overlay */
  border-radius: 12px;
  pointer-events: none;
  /* allows clicks through the overlay */
}

/* ensure text and button stay above overlay */
.my-card-content {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  text-align: left;
  z-index: 1;
  /* keep content above overlay */
}



.my-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}



.my-card-content h2 {
  font-size: 16px;
  margin: 0 0 0.3rem 0;
  font-weight: 500;
}

.my-card-content p {
  font-size: 15px;
  margin: 0 0 0.8rem 0;
  font-weight: 400;
}

.my-card-content button {
  padding: 9.8px 14px;
  background-color: #fff;
  border-radius: 6px;
  border: none;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.my-card-content button:hover {
  background-color: #f1f1f1;
}

.tech-gift img {
  width: 100%;
}

.featured-product {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 0;
  align-items: center;
  gap: 2rem;
}

.percentage-tag {
  position: absolute;
  top: 7px;
  left: 0px;
  background: #D33;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 400;
}



/* modal for user login */

.avatar {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.avatar:hover {
  transform: scale(1.05);
}

.avatar .avatar-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}

/* Modal Overlay */
.auth-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.auth-modal-overlay.modal-active {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 50px;
}

/* Modal Container */
.auth-modal-container {
  background: white;
  width: 33%;
  border-radius: 0px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
  position: relative;
  margin-right: 26px;
  margin-top: 2.8rem;
}

/* Modal Header */
.auth-modal-header {
  padding: 32px 32px 8px;
  text-align: start;
}

.auth-welcome-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.auth-welcome-subtitle {
  font-size: 15px;
  color: #767676;
  margin-bottom: 24px;
  margin-top: 1px;
}

/* Modal Body */
.auth-modal-body {
  padding: 0 32px 45px;
}

/* Form Styles */
.auth-login-form {
  width: 100%;
}

.auth-form-group {
  margin-bottom: 16px;
}

.auth-field-label {
  display: block;
  color: #333;
  margin-bottom: 6px;
  color: #242424;
  font-size: 15px;
  font-weight: 400;

}

.auth-input-field {
  width: 90%;
  padding: 12px 16px;
  border: 1.5px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fff;
}

.auth-input-field:focus {
  outline: none;
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.auth-input-field::placeholder {
  color: #999;
}

/* Checkbox & Remember Me */
.auth-remember-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 2rem;
}

.auth-remember-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-remember-checkbox {
  width: 16px;
  height: 16px;
  border: 1.75px solid #ACACAC;
  accent-color: #151616;
}

.auth-remember-label {
  cursor: pointer;
  color: #555252;
  font-size: 15.29px;
  font-weight: 500;
  opacity: 0.4;
}

.auth-forgot-link {
  font-size: 15.29px;
  color: #4482EF;
  text-decoration: none;
  font-weight: 400;
}

.auth-forgot-link:hover {
  text-decoration: underline;
}

/* Sign In Button */
.auth-signin-btn {
  width: 100%;
  background: #000;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.auth-signin-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.auth-signin-btn:active {
  transform: translateY(0);
}

/* Google Sign In */
.auth-google-btn {
  width: 100%;
  background: #fff;
  border: 1.5px solid #dadce0;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.auth-google-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.auth-google-btn.loading {
  opacity: 0.65;
  pointer-events: none;
}

.google-signin-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;

}

.google-signin-wrapper #g_id_onload {
  display: none;
}

.google-signin-wrapper #googleSignInContainer.loading {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.fallback-google-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-icon {
  width: 18px;
  height: 18px;
}

/* Sign Up Link */
.auth-signup-section {
  text-align: center;
  font-size: 17px;
  color: #ACACAC;
  margin-top: 2rem;
  font-weight: 400;

}

.auth-signup-link {
  color: #518EF8;
  text-decoration: none;
  font-weight: 400;
}

.auth-signup-link:hover {
  text-decoration: underline;
}

/* Close Button */
.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.auth-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.red-clr {
  color: red;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Demo styling for page */
.demo-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.demo-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.demo-instruction {
  color: #666;
  margin-bottom: 30px;
}



.sidebar-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: #333;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}





/* order modal */
.inquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inquiry-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.inquiry-modal-content {
  background: white;
  border-radius: 0px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.inquiry-modal-overlay.active .inquiry-modal-content {
  transform: scale(1);
}

.inquiry-close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.inquiry-close-button:hover {
  background: #f1f2f6;
  color: #333;
  transform: rotate(90deg);
}

.inquiry-form-title {
  font-size: 27px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-align: left;
}

.inquiry-form-group {
  margin-bottom: 25px;
}

.inquiry-form-input {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 0.919px solid #737070;
  font-size: 18px;
  font-weight: 300;
  color: #737070;
  background: transparent;
  transition: border-color 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.inquiry-form-input:focus {
  border-bottom-color: #181718;
}

.inquiry-form-input::placeholder {
  color: #999;
}

/* Phone input specific styles */
.phone-input-wrapper {
  margin-bottom: 25px;
}

.phone-label-style {
  color: #333;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.mobile-number-input {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 0.919px solid #737070;
  font-size: 18px;
  font-weight: 300;
  color: #737070;
  background: transparent;
  transition: border-color 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.mobile-number-input:focus {
  border-bottom-color: #181718;
}

/* Custom styling for intl-tel-input plugin */
.iti {
  width: 100%;
}

.iti__flag-container {
  padding-right: 10px;
}

.iti__selected-flag {
  background: transparent;
  border: none;
  outline: none;
}

.iti__country-list {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1001;
}

.iti__country:hover {
  background-color: #f5f5f5;
}

.iti__country.iti__highlight {
  background-color: #e3f2fd;
}

/* Error styling */
.phone-error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.mobile-number-input.error {
  border-bottom-color: #dc3545;
}

.inquiry-quantity-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 13px;
  border: 1px solid #737070;
  margin-top: 3rem;
}

.inquiry-quantity-label {
  color: #737070;
  font-size: 18px;
  border-right: 1px solid #AFAFAF;
  padding-right: 1rem;
  font-weight: 400;
}

.inquiry-quantity-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.inquiry-quantity-btn {
  width: 25px;
  height: 20px;
  border: none;
  background: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: #666;
  transition: all 0.3s ease;
}

.inquiry-quantity-btn:hover {
  background: #e0e0e0;
  color: #333;
}

.quandity-both-button {
  border-radius: 8px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  padding: 1px;
}

.inquiry-quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 18px;
  color: #737070;
  font-weight: 400;
}

.inquiry-message-input {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 0.919px solid #737070;
  font-size: 18px;
  color: #737070;
  background: transparent;
  transition: border-color 0.3s ease;
  outline: none;
  resize: none;
  font-family: inherit;
  box-sizing: border-box;
  font-weight: 400;
}

.inquiry-message-input:focus {
  border-bottom-color: #a0206b;
}

.inquiry-message-input::placeholder {
  color: #999;
}

.inquiry-file-upload-area {
  border: 2px dashed #BFBCBC;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  background: #f8f9fa;
  margin: 20px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.inquiry-file-upload-area:hover {
  border-color: #000;
  background: #9290902a;
}

.inquiry-upload-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.inquiry-upload-text {
  color: #666;
  font-size: 14px;
}

.inquiry-upload-link {
  color: #737070;
  text-decoration: underline;
  cursor: pointer;
}

.inquiry-submit-btn {
  background: #000 !important;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  width: auto;
  margin-top: 20px;
}

.inquiry-submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hidden-file-input {
  display: none;
}

/* Demo button to open modal */
.demo-open-btn {
  background: #a0206b;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin: 50px;
}


.prof-avtar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.botella-shopnow {
  background: transparent;
  color: white;
  text-decoration: underline;
  text-decoration-color: black;
  /* underline color */
  text-decoration-thickness: 2px;
  /* underline thickness */
  text-underline-offset: 4px;
  /* move underline lower */
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.search-border {
  border: 1px solid #b1aaaa;
  border-radius: 9px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 3px 10px 3px 10px;
}


.sign-buttonnn {
  background: white;
  border: 1px solid #ACACAC;
  border-radius: 7px;
}

/* REMOVE GOOGLE BUTTON BORDER */
#googleSignInContainer .nsm7Bb-HzV7m-LgbsSe {
  border: none !important;
  box-shadow: none !important;
}

/* Remove hover border also */
#googleSignInContainer .nsm7Bb-HzV7m-LgbsSe:hover {
  border: none !important;
  box-shadow: none !important;
}


@media(max-width:885px) {
  .gift-image {
    max-width: 100%;
  }
}

@media(max-width:1568px) {
  .menu {
    gap: 5px;
  }

  .menu-item {
    padding: 29px 10px;
  }
}



@media screen and (max-width: 1200px) {
  .banner {
    height: calc(100vw * 0.6);
    /* Maintain aspect ratio */
    min-height: 400px;
    max-height: 800px;
  }
}

@media screen and (max-width: 768px) {
  .banner {
    height: calc(100vw * 0.75);
    /* Slightly taller on mobile */
    min-height: 300px;
    max-height: 500px;
  }
}

@media screen and (max-width: 480px) {
  .banner {
    height: calc(100vw * 0.9);
    /* More square on small screens */
    min-height: 250px;
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  .inquiry-modal-content {
    padding: 20px;
    margin: 20px;
  }
}




@media(max-width:1710px) {
  .categories {
    width: 241px !important;
  }
}

@media (max-width: 1527px) {
  .categories {
    width: 235px !important;
  }
}

@media (max-width: 1476px) {
  .categories {
    width: 230px !important;
  }

  .mega-menu {
    top: 78%;
  }
}

@media (max-width: 1402px) {
  .categories {
    width: 207px !important;
  }

  .mega-menu {
    top: 73%;
  }
}


@media(max-width:1185px) {
  .gift-padding {
    padding: 0 3rem;
  }
}

@media(max-width:992px) {
  .gift-padding {
    padding: 0 3rem;
  }
}


@media(max-width:837px) {
  .auth-remember-section {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
  }
}



@media(max-width:1397px) {
  .new-gift-section {
    padding: 5rem 2rem 0.2rem 2rem;

  }
}


/* Mobile Styles */
@media (max-width: 768px) {
  .sidebar-toggle {
    display: block;
  }

  .whole-side {
    flex-direction: column;
    position: relative;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    transform: translateX(-100%);
    overflow-y: auto;
    width: 280px;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .sidebar-overlay.active {
    display: block;
  }
}

@media (max-width: 480px) {


  .sidebar {
    width: 260px;
  }


}






@media(max-width:1046px) {
  .auth-modal-container {
    width: 48% !important;
  }
}

@media(max-width:679px) {
  .auth-modal-container {
    width: 100% !important;
    margin-left: 26px;
  }
}


@media (max-width: 1447px) {
  .tech-gift {
    padding: 50px 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 1245px) {
  .gift-padd {
    padding: 0rem 4rem 6rem 4rem;
  }



  .tech-gift p {
    width: 100%;
  }

  .my-card-section {
    gap: 0.8rem;
  }

  .my-card {
    width: 48%;
  }
}


@media (max-width: 768px) {
  .gift-padd {
    padding: 0rem 2rem 4rem 2rem;
  }

  .tech-gift h1 {
    font-size: 32px;
  }

  .tech-gift p {
    font-size: 14px;
  }

  .notes-section h1,
  .notes-section h2 {
    font-size: 36px;
  }

  .my-card-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  .my-card {
    width: 100%;
  }

  .my-card-content button {
    padding: 9.8px 14px !important;
  }

  .my-card-content h2 {
    font-size: 18px !important;
  }

  .my-card-content p {
    font-size: 15px !important;
  }

}


@media (max-width: 480px) {
  .gift-padd {
    padding: 0rem 2rem 3rem 2rem;
  }

  .tech-gift {
    padding: 30px 20px;
  }

  .tech-button {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tech-button button {
    width: 100%;
  }

  .my-card-content h2 {
    font-size: 16px;
  }

  .my-card-content p {
    font-size: 13px;
  }

  .my-card-content button {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media(max-width:1342px) {
  .my-card-content {
    bottom: 0rem;
  }
}

@media(max-width:870px) {
  .tech-gift-flex {
    flex-direction: column;
  }

  .my-card-content button {
    padding: 2px 10px;
  }

  .my-card-content h2 {
    font-size: 14px;
  }

  .my-card-content p {
    font-size: 12px;
  }
}



@media(max-width:999px) {
  .note-toatal {
    flex-direction: column-reverse;
    padding: 4rem 2rem 4rem 2rem;
    padding-right: 2rem;
    gap: 0;
  }

  .notes-section {
    text-align: center;
    padding: 3rem 0 0rem;
  }
}


@media(max-width:457px) {
  .play-button {
    padding: 0.5rem .6rem 0.2rem .6rem;
  }

  .play-button img {
    width: 28px;
    height: 28px;
  }
}

@media(max-width:932px) {
  .gift-first {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}

@media (max-width: 1200px) {
  .gift-hero {
    padding: 4rem 6rem;
    gap: 1.5rem;
  }

  .gift-hero-content h2 {
    font-size: 40px;
  }

  .gift-hero-content p {
    font-size: 20px;
  }

  .new-hero-cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}


@media (max-width: 992px) {
  .gift-hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 3rem;
  }

  .gift-hero-image {
    max-width: 100%;
  }

  .gift-hero-content h2 {
    font-size: 34px;
  }

  .gift-hero-content p {
    font-size: 18px;
  }

  .buttons {
    justify-content: center;
  }

  .new-hero-cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}


@media(max-width:651px) {
  .new-hero-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .gift-hero {
    padding: 2rem 1rem;
  }

  .gift-hero-content h2 {
    font-size: 26px;
  }

  .gift-hero-content p {
    font-size: 16px;
  }

  .btn-primary {
    padding: 10px 18px;
    font-size: 12px;
  }

  .alpha-bag {
    font-size: 12px;
  }

  .new-hero-cards {
    grid-template-columns: 1fr !important;
  }
}

@media(max-width:607px) {
  .gift-section {
    padding: 2rem 2rem;
  }
}



@media (max-width: 1200px) {
  .new-gift-section {
    padding: 2rem 6rem;
    gap: 1.5rem;
  }

  .new-gift-list {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 992px) {
  .new-gift-section {
    flex-direction: column;
    padding: 2rem;
    align-items: center;
  }

  .new-gift-banner {
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }

  .new-gift-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 4rem;
  }
}

@media(max-width:769px) {

  .new-gift-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 4rem;
  }
}

@media(max-width:647px) {

  .new-gift-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
  }
}

@media (max-width: 600px) {
  .new-gift-section {
    padding: 1.5rem;
  }

  .new-gift-list {
    grid-template-columns: 1fr;
  }

  .new-gift-card {
    padding: 0.8rem;
  }

  .banner-text h2 {
    font-size: 18px;
  }

  .banner-text h4 {
    font-size: 11px;
  }
}


@media (max-width: 1000px) {
  .brand-slider-section {
    flex-direction: column;
  }

  .brand-slider-section .brand-header {
    flex: unset;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .brand-slider-section .swiper {
    margin-top: 2rem;
    width: 100%;
  }

  /* .brand-slider-section .swiper-slide img {
    width: 100%;
    height: auto;
  } */

  .brand-slider-section .brand-img {
    width: 100%;
    height: auto;
  }
}



@media(max-width:987px) {
  .gift-container {
    flex-direction: column;
    text-align: center;

  }

  .gift-container {
    gap: 2rem !important;
  }

  .gift-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


}

@media (max-width: 768px) {
  .gift-container {
    flex-direction: column;
    text-align: center;
  }

  .gift-content h2 {
    font-size: 2rem;
  }

  .gift-buttons {
    justify-content: center;
  }

  .gift-image {
    margin-top: 3rem;
  }
}

@media(max-width:1495px) {
  .gift-container {
    gap: 5rem;
  }
}

@media(max-width:1063px) {
  .gift-padding {
    padding: 0 2rem;
  }
}

@media(max-width:556px) {
  .gift-image img {

    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .custom-swiper-container {
    height: auto;
    margin: 30px auto;
  }





  .slider-gap {
    gap: 1rem;
    /* reduce gap for small screens */
  }

  .swiper-pagination {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .custom-swiper-container .swiper-slide {
    font-size: 14px;
    padding: 6px;
    width: 50% !important;
  }

  .slider-gap {
    gap: 0.5rem;
  }
}

@media (max-width: 789px) {
  .custom-swiper-container .swiper-slide {
    font-size: 16px;
    white-space: nowrap;
    width: 32% !important;
  }

}

@media(max-width:673px) {
  .custom-swiper-container .swiper-slide {
    width: 39% !important;
  }
}

@media(max-width:551px) {
  .custom-swiper-container .swiper-slide {
    width: 46% !important;
  }
}

@media(max-width:469px) {
  .custom-swiper-container .swiper-slide {
    width: 50% !important;
    white-space: normal;
  }
}

@media(max-width:439px) {
  .custom-swiper-container .swiper-slide {
    width: 70% !important;
    white-space: normal;
  }
}

@media(max-width:1231px) {
  .second-nav {
    padding: 0px;
  }

  .category-box {
    width: 204px;
  }

}

@media(max-width:1145px) {
  .category-text {
    font-size: 14px;
  }

  .menu-icon {
    font-size: 14px;
    margin-right: 8px;
  }

  .menu a {
    font-size: 12px;
  }

  .search input {
    font-size: 12px;
  }
}

@media(max-width:1308px) {
  .navbar {
    display: none;
  }

  .second-nav {
    display: none;
  }

  .responsive-nav {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    box-sizing: border-box;
  }

  /* Menu icon */
  .menu-icon-responsive {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
  }


}


@media(max-width:1415px) {
  .menu {
    gap: 0px;
  }

  .category-box {
    padding: 12px 10px;
  }
}

@media(max-width:357px) {
  .side-menu {
    width: 95%;
  }
}

@media(max-width:1104px) {
  .banner-header h1 {
    line-height: 54px;
    margin: 0px;
  }
}

@media(max-width:936px) {
  .banner-header h1 {
    line-height: 43px;
    font-size: 47.395px;
  }

  .banner-header p {
    font-size: 19.372px;
    margin: 13px;
  }

  .order-now {
    padding: 11.095px 16.302px;
    font-size: 13.046px;
  }
}

@media(max-width:788px) {
  .banner-header {
    top: 55%;
  }

  .banner-header h1 {
    line-height: 39px;
    font-size: 39.395px;
  }

  .banner-header p {
    font-size: 15.372px;
  }
}

@media(max-width:683px) {
  .order-buttons {
    margin-top: 2rem;
  }

  .order-now {
    padding: 5.095px 6.302px;
  }
}

@media(max-width:652px) {
  .banner-header h1 {
    font-size: 32.395px;
  }

  .banner-header p {
    font-size: 13.372px;
  }

}

@media(max-width:570px) {
  .banner-header h1 {
    font-size: 27.395px;
    line-height: 22px;
  }

  .banner-header p {
    font-size: 13.372px;
  }

  .logo-section {
    width: 95px;
  }

  .order-now {
    padding: 5.095px 17.302px;
    font-size: 9.046px;
  }

  .order-buttons {
    margin-top: 1rem;
    gap: 1rem;
  }
}

@media(max-width:499px) {
  .banner-header p {
    display: none;
  }

  .order-now {
    padding: 0.095px 6.302px;
    font-size: 7.046px;
    margin-top: 0.2rem;
  }
}

@media(max-width:456px) {
  .banner-header h1 {
    font-size: 21.395px;
  }

  .slider-counter {
    font-size: 8px;
  }
}

@media(max-width:388px) {
  .banner-header {
    top: 61%;
  }
}

@media(max-width:453px) {
  .auth-remember-section {
    flex-direction: column;
    gap: 1.3rem;
    align-items: start;
  }

  .auth-signup-section {
    font-size: 15px;
  }
}


@media(max-width:1477px) {
  .menu {
    gap: 0px;
  }

  .menu-item {
    padding: 16px 6px;
  }

  .search-whole {
    gap: 1rem;
  }

  .menu a {
    font-size: 13px;
  }

  .category-box {
    margin-right: 22px;
  }

  .second-common-padding {
    padding: 10px 38px 10px 60px;
  }
}

@media(max-width:1569px) {
  .my-card-content {
    bottom: -0.5rem;
  }
}

@media(max-width:1024px) {
  .my-card-content button {
    padding: 5.8px 11px;
    font-size: 11px;
  }
}

@media(max-width:1024px) {
  .marquee-content {
    gap: 1rem;
    margin-left: 1rem;
  }

  .custom-swiper-container .swiper-slide {
    padding: 5px 57px 5px 0px;
  }
}

@media(max-width:1528px) {
  .more-head-flex {
    margin-bottom: -3.5rem;
    margin-top: 2rem;
  }
}

@media(max-width:1201px) {
  .more-head-flex {
    margin-bottom: -0.5rem;
    margin-top: 4rem;
  }
}

@media(max-width:992px) {
  .more-head-flex {
    margin-bottom: -4rem;
    margin-top: 5rem;
  }
}

@media(max-width:494px) {
  .new-gift-more button {
    padding: 6.2px 10px 6.2px 10px;
  }
}

@media(max-width:459px) {
  .new-gift-heading {
    font-size: 22px;
    font-weight: 600;
  }
}

@media(max-width:340px) {
  .my-card-content p {
    margin: 0 0 0rem 0;
  }
}

@media(max-width:421px) {
  .new-gift-heading {
    font-size: 19px;
    font-weight: 600;
  }

  .new-gift-more button {
    font-size: 11px;
    white-space: nowrap;
  }
}

@media(max-width:2101px) {
  .auth-modal-container {
    width: 31%;
  }
}

@media (max-width: 1555px) {
  .auth-modal-container {
    width: 36%;
  }
}

@media(max-width:1529px) {
  .new-gift-heading {
    margin-bottom: 4.5rem;
  }
}

@media(max-width:965px) {
  .new-gift-heading {
    margin-bottom: 1.5rem;
  }
}