@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "Telugu MN";
  src: url("../fonts/telugu-mn.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #44ba7f;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #44ba7f;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 860px;
}

.container--wide {
  max-width: 1440px;
}

body {
  overflow-x: hidden;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-header {
  position: relative;
  width: 100%;
}
.site-header__top {
  background: linear-gradient(to bottom, #44ba7f, #50c209);
  padding: 1rem 0;
}
.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__branding {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}
.site-header__logo .custom-logo {
  display: block;
  max-height: 70px;
  width: auto;
}
.site-header__logo a {
  color: #525252;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}
.site-header__mobile-account {
  display: none;
}
@media (max-width: 1024px) {
  .site-header__mobile-account {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
}
.site-header__searchbar {
  position: relative;
  flex: 1;
  width: 100%;
  margin: 0 2rem;
}
@media (max-width: 1024px) {
  .site-header__searchbar {
    display: none;
  }
}
.site-header__mobile-search-button {
  display: none;
}
@media (max-width: 1024px) {
  .site-header__mobile-search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
}
.site-header__mobile-searchbar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: #effff7;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}
.site-header__mobile-searchbar.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .site-header__mobile-searchbar {
    display: none;
  }
}
.site-header__right {
  display: flex;
  gap: 12px;
}
.site-header__support {
  display: flex;
  align-items: center;
  background: #e9f7f0;
  border-radius: 9999px;
  padding: 0.75rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.site-header__support:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .site-header__support {
    display: none;
  }
}
.site-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  color: #525252;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
  background: #e9f7f0;
  padding: 0.5rem 1.5rem;
  border-radius: 18px;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .site-header__cart {
    padding: 0.25rem 0.75rem;
  }
}
.site-header__cart:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .site-header__cart-text {
    display: none;
  }
}
.site-header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: #e63946;
  color: #ffffff;
}
.site-header__bottom {
  background: #effff7;
}
.site-header__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__nav {
  width: 40%;
}
.site-header__account {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.site-header__account:hover {
  opacity: 0.8;
}
.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0;
  padding: 1.25rem 0;
  list-style: none;
}
.site-header__menu li {
  margin: 0;
  list-style: none;
}
.site-header__menu a {
  color: #525252;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.site-header__menu a:hover {
  opacity: 0.8;
}
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f2efe9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.site-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.site-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-header__mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #effff7;
  border-top: 1px solid rgba(82, 82, 82, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  z-index: 100;
}
.site-header__mobile-nav.is-open {
  max-height: 100vh;
  opacity: 1;
}
.site-header__mobile-nav .site-header__menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
}
.site-header__mobile-nav .site-header__menu li {
  border-bottom: 1px solid rgba(82, 82, 82, 0.08);
}
.site-header__mobile-nav .site-header__menu li:last-child {
  border-bottom: none;
}
.site-header__mobile-nav .site-header__menu a {
  display: block;
  padding: 16px 24px;
  color: #525252;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header__mobile-nav .site-header__menu a:hover {
  background: rgba(82, 82, 82, 0.05);
}
.site-header__mobile-nav-inner {
  padding: 10px 0;
}

@media (max-width: 1024px) {
  .site-header__top {
    padding: 0.75rem 0;
  }
  .site-header__top-inner {
    justify-content: space-between;
  }
  .site-header__branding {
    gap: 12px;
  }
  .site-header__hamburger {
    display: flex;
  }
  .site-header__bottom {
    display: none;
  }
  .site-header__mobile-nav {
    display: block;
  }
  .site-header__logo .custom-logo {
    max-height: 55px;
  }
  .site-header__cart a {
    font-size: 0.875rem;
  }
}
.search-form {
  width: 100%;
  margin: 0;
}
.search-form__label {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
}
.search-form .search-field {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 60px 0 20px;
  border: none;
  border-radius: 9999px;
  background: #ffffff;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  outline: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.search-form .search-field::placeholder {
  color: #7c7c7c;
  opacity: 0.8;
}
.search-form .search-field:focus {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .search-form .search-field {
    height: 44px;
    padding: 0 52px 0 16px;
    font-size: 0.875rem;
  }
}
.search-form .search-submit {
  position: absolute;
  top: 50%;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.search-form .search-submit img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.search-form .search-submit:active {
  transform: translateY(-50%) scale(0.96);
}
@media (max-width: 768px) {
  .search-form .search-submit {
    width: 36px;
    height: 36px;
  }
  .search-form .search-submit img {
    width: 18px;
    height: 18px;
  }
}

.product-search-results {
  position: absolute;
  top: 200;
  left: 0;
  width: 100%;
  margin-top: 10px;
  z-index: 100;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}
.product-search-results__item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  border-bottom: 1px solid #eeeeee;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.product-search-results__item:last-child {
  border-bottom: none;
}
.product-search-results__item:hover {
  background: #f7faf8;
}
.product-search-results__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}
.product-search-results__image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}
.product-search-results__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.product-search-results__name {
  overflow: hidden;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-search-results__price {
  color: #44ba7f;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.product-search-results__price .amount {
  color: inherit;
}
.product-search-results__price del {
  margin-right: 4px;
  color: #7c7c7c;
  font-size: 0.9em;
  font-weight: 400;
}
.product-search-results__price ins {
  text-decoration: none;
}
.product-search-results__loading, .product-search-results__empty {
  padding: 20px;
  color: #7c7c7c;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  text-align: center;
}
.product-search-results__loading {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .product-search-results {
    border-radius: 0 0 10px 10px;
  }
  .product-search-results__item {
    padding: 10px 12px;
    gap: 12px;
  }
  .product-search-results__image {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
  .product-search-results__name {
    font-size: 0.875rem;
  }
}

.site-footer__main {
  background: #daf4cf;
  padding: 5rem 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-footer__brand {
  min-width: 400px;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .site-footer__brand {
    min-width: 100%;
    margin-right: 0;
  }
}
.site-footer__brand-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.site-footer__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}
.site-footer__title {
  color: #44ba7f;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.site-footer__subtitle {
  display: block;
  color: #000000;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.site-footer__description {
  display: block;
  color: #525252;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}
.site-footer__heading {
  margin: 0 0 1.5rem;
  font-family: "Telugu MN", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
}
.site-footer__links, .site-footer__contact {
  color: #525252;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links li:not(:last-child), .site-footer__contact li:not(:last-child) {
  margin-bottom: 0.75rem;
}
.site-footer__links a, .site-footer__contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__links a:hover, .site-footer__contact a:hover {
  color: #166534;
}
@media (max-width: 768px) {
  .site-footer__column {
    max-width: 350px;
  }
}
.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}
.site-footer__bottom {
  background: #effff7;
  padding: 1rem 0;
  color: #000000;
}
.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2rem;
}
@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.site-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 1rem 0;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
}
.site-footer__legal a:hover {
  color: #44ba7f;
}
.site-footer__credit {
  background: #041504;
  padding: 0.5rem 0;
}
.site-footer__credit-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
}
.site-footer__credit-inner a {
  color: #44ba7f;
  text-decoration: none;
}

.homepage-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: calc(100% - 40px);
  max-width: 1366px;
  margin: 34px auto;
  border-radius: 32px;
}
.homepage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1e6042 0%, #3aba7f 100%);
  z-index: 0;
}
.homepage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--hero-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.89;
  z-index: 1;
}
.homepage-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px;
}
.homepage-hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.homepage-hero__content {
  flex: 0 0 42%;
  max-width: 520px;
}
.homepage-hero__subtitle {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
}
.homepage-hero__subtitle * {
  color: inherit !important;
}
.homepage-hero__subtitle p,
.homepage-hero__subtitle span,
.homepage-hero__subtitle div {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.homepage-hero__title {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
}
.homepage-hero__title span {
  display: block;
  color: #dff5b8 !important;
}
.homepage-hero__description {
  margin-bottom: 40px;
  max-width: 560px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16.5px;
  line-height: 1.2;
}
.homepage-hero__description * {
  color: inherit !important;
}
.homepage-hero__description p,
.homepage-hero__description span,
.homepage-hero__description div,
.homepage-hero__description li {
  margin: 0;
}
.homepage-hero__description a {
  color: #fff;
}
.homepage-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  min-width: 180px;
  height: 52px;
  margin-top: 18px;
  background: #fff;
  color: #111;
  font-size: 1.25rem;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.homepage-hero__button:hover {
  transform: translateY(-2px);
  background: #f3f3f3;
}
.homepage-hero__image {
  flex: 0 0 58%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.homepage-hero__image img {
  width: 100%;
  max-width: 800px;
  display: block;
}
@media (max-width: 1400px) {
  .homepage-hero .container {
    padding: 40px;
  }
  .homepage-hero__image img {
    max-width: 760px;
  }
}
@media (max-width: 1300px) {
  .homepage-hero .container {
    padding: 35px;
  }
  .homepage-hero__title {
    font-size: 30px;
  }
  .homepage-hero__image img {
    max-width: 680px;
  }
}
@media (max-width: 991px) {
  .homepage-hero {
    width: calc(100% - 32px);
    margin: 24px auto;
  }
  .homepage-hero .container {
    padding: 30px;
  }
  .homepage-hero__wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .homepage-hero__content, .homepage-hero__image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .homepage-hero__description {
    max-width: 100%;
  }
  .homepage-hero__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .homepage-hero {
    width: calc(100% - 20px);
    margin: 20px auto;
    border-radius: 20px;
  }
  .homepage-hero .container {
    padding: 20px;
  }
  .homepage-hero__subtitle p,
  .homepage-hero__subtitle span,
  .homepage-hero__subtitle div {
    font-size: 16px;
  }
  .homepage-hero__title {
    font-size: 30px;
  }
  .homepage-hero__description p,
  .homepage-hero__description span,
  .homepage-hero__description div {
    font-size: 16px;
  }
}

.about-section {
  background: #effff7;
  padding: 28px 0;
}
@media (min-width: 992px) {
  .about-section {
    padding: 112px 0;
  }
}
.about-section__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .about-section__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.about-section__image {
  width: 100%;
  height: 100%;
}
.about-section__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (min-width: 992px) {
  .about-section__image img {
    height: 505px;
  }
}
.about-section__content {
  padding: 0 5px;
}
@media (min-width: 992px) {
  .about-section__content {
    padding-right: 40px;
    padding-left: 0;
  }
}
.about-section__heading {
  color: #44ba7f;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.4;
}
.about-section__subheading {
  color: #000000;
  font-size: 35px;
  font-family: "Telugu MN", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 12px;
}
.about-section__description {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 12px;
}
.about-section__actions {
  margin-top: 16px;
}
.about-section__button {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(to top, #44ba7f 0%, #50c209 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin-top: 8px;
}
.about-section__button:hover {
  opacity: 0.9;
  color: #fff;
}
@media (max-width: 991px) {
  .about-section__subheading {
    font-size: 30px;
  }
  .about-section__description {
    font-size: 17px;
  }
  .about-section__button {
    font-size: 18px;
  }
}

.about-feature-section {
  padding: 80px 0;
}
.about-feature-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-feature-section__content {
  width: 100%;
}
.about-feature-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-feature-section__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.about-feature-section__item:not(:last-child) {
  margin-bottom: 48px;
}
.about-feature-section__item-icon {
  flex: 0 0 80px;
}
.about-feature-section__item-icon img {
  width: 80px;
  height: 80px;
  display: block;
  object-fit: contain;
}
.about-feature-section__item-content {
  flex: 1;
  min-width: 0;
}
.about-feature-section__item-title {
  margin: 0 0 8px;
  color: #000000;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
.about-feature-section__item-description {
  color: #000000;
  font-size: 1rem;
  line-height: 1.7;
}
.about-feature-section__item-description p:last-child {
  margin-bottom: 0;
}
.about-feature-section__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-feature-section__image img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .about-feature-section__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }
  .about-feature-section__content {
    flex: 1.1;
  }
  .about-feature-section__image {
    flex: 0.9;
  }
}
@media (max-width: 768px) {
  .about-feature-section {
    padding: 60px 0;
  }
  .about-feature-section__wrapper {
    gap: 2.5rem;
  }
  .about-feature-section__item {
    align-items: flex-start;
    gap: 1rem;
  }
  .about-feature-section__item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .about-feature-section__item-icon {
    flex-basis: 64px;
  }
  .about-feature-section__item-icon img {
    width: 52px;
    height: 52px;
  }
  .about-feature-section__item-title {
    font-size: 18px;
  }
  .about-feature-section__item-description {
    font-size: 15px;
  }
  .about-feature-section__image img {
    max-width: 450px;
  }
}

.faq-section {
  padding: 4rem 0 80px;
  background: #fff;
}
.faq-section__subheading {
  display: block;
  text-align: center;
  color: #44ba7f;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.faq-section__heading {
  text-align: center;
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  font-family: "Telugu MN", sans-serif;
  line-height: 1.2;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .faq-section__heading {
    font-size: 28px;
  }
}
.faq-section .faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-section .faq-item {
  margin-bottom: 16px;
}
.faq-section .faq-item__header {
  width: 100%;
  border: 0;
  background: #daf4cf;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-section .faq-item__question {
  color: #000;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  padding-right: 20px;
}
.faq-section .faq-item__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 6px;
}
.faq-section .faq-item__content {
  background: #effff7;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-section .faq-item__answer {
  padding: 20px 16px;
  color: #000;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  width: 75%;
}
.faq-section .faq-item__answer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .faq-section .faq-item__answer {
    width: 100%;
    font-size: 0.875rem;
  }
}
.faq-section .faq-item.active .faq-item__icon {
  transform: rotate(-135deg);
}
.faq-section .faq-item.active .faq-item__content {
  max-height: 500px;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0 60px;
  }
  .faq-section .faq-item__header {
    padding: 12px;
  }
  .faq-section .faq-item__question {
    font-size: 1rem;
  }
}

.contact-section {
  padding: 40px 0 80px;
  background: #fff;
}
.contact-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-section__subheading {
  display: block;
  margin-bottom: 12px;
  color: #44ba7f;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.contact-section__heading {
  margin-bottom: 12px;
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  font-family: "Telugu MN", sans-serif;
  line-height: 1.2;
}
.contact-section__description {
  max-width: 900px;
  margin: 0 auto;
  color: #000000;
  font-size: 19px;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}
.contact-section__card {
  padding: 6rem 4rem;
  background: #effff7;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-section__content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.contact-section__form {
  width: 66.666%;
}
.contact-section__form-header {
  margin-bottom: 24px;
}
.contact-section__form-header h3 {
  margin: 0;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  font-family: "Telugu MN", sans-serif;
  line-height: 1.2;
}
.contact-section__info {
  flex: 1;
  padding: 24px;
  background: #effff7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-section__info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d1d5db;
}
.contact-section__info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-section__info-icon img {
  width: 50px;
  height: auto;
  display: block;
}
.contact-section__info-content {
  width: 100%;
  color: #000000;
  font-family: "Poppins", sans-serif;
}
.contact-section__info-subtitle {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.contact-section__info-title {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
}
.contact-section__info-title a {
  color: inherit;
  text-decoration: none;
}
.contact-section__info-title a:hover {
  color: #44ba7f;
}
.contact-section__map {
  margin: 40px 0 0;
}
.contact-section__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.contact-section .forminator-ui {
  width: 100%;
}
.contact-section .forminator-ui .forminator-row {
  margin-bottom: 16px !important;
}
.contact-section .forminator-ui .forminator-field {
  margin-bottom: 16px !important;
}
.contact-section .forminator-ui .forminator-label {
  display: block !important;
  margin-bottom: 8px !important;
  color: #000 !important;
  font-size: 15px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
}
.contact-section .forminator-ui .forminator-input,
.contact-section .forminator-ui .forminator-textarea,
.contact-section .forminator-ui .forminator-select {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  color: #000 !important;
  box-shadow: none !important;
  min-height: unset !important;
}
.contact-section .forminator-ui .forminator-textarea {
  min-height: 140px !important;
  resize: vertical !important;
}
.contact-section .forminator-ui .forminator-input:focus,
.contact-section .forminator-ui .forminator-textarea:focus,
.contact-section .forminator-ui .forminator-select:focus {
  border-color: #44ba7f !important;
  box-shadow: none !important;
  outline: none !important;
}
.contact-section .forminator-ui .forminator-button-submit,
.contact-section .forminator-ui .forminator-button {
  background: linear-gradient(to bottom, #44ba7f, #50c209) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition: background 0.3s ease !important;
}
.contact-section .forminator-ui .forminator-button-submit:hover,
.contact-section .forminator-ui .forminator-button:hover {
  background: #059669 !important;
}
.contact-section .forminator-ui .forminator-response-message {
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .contact-section__content {
    flex-direction: column;
  }
  .contact-section__heading {
    font-size: 28px;
  }
  .contact-section__card {
    padding: 20px;
  }
  .contact-section__info {
    padding: 16px;
  }
  .contact-section__form {
    width: 100%;
  }
  .contact-section__heading {
    font-size: 30px;
  }
  .contact-section__description {
    font-size: 17px;
  }
  .contact-section__form-header h3 {
    font-size: 24px;
  }
  .contact-section__map iframe {
    height: 300px;
  }
}

.offers-section {
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .offers-section {
    padding: 80px 0;
  }
}
.offers-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .offers-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.offers-section__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .offers-section__card {
    padding: 20px;
    gap: 12px;
  }
}
.offers-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.offers-section__subtitle {
  margin: 0 0 8px;
  color: #e63946;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.offers-section__title {
  margin: 0 0 12px;
  color: #0a472e;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.3;
  max-width: 180px;
}
@media (max-width: 576px) {
  .offers-section__title {
    font-size: 22px;
  }
}
.offers-section__description {
  margin-bottom: 20px;
  color: #8b8b8b;
  font-size: 15px;
  line-height: 1.6;
}
.offers-section__description p:last-child {
  margin-bottom: 0;
}
.offers-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.3s ease;
}
.offers-section__button:hover {
  background: #16a34a;
  color: #fff;
}
.offers-section__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offers-section__discount {
  position: absolute;
  top: 10px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.offers-section__discount span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .offers-section__discount {
    left: -40px;
  }
}
.offers-section__image {
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 576px) {
  .offers-section__discount {
    width: 80px;
    height: 80px;
  }
  .offers-section__discount span {
    font-size: 15px;
  }
}

.rewards-section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .rewards-section {
    padding: 80px 0;
  }
}
.rewards-section__card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(to top, #d3efe2 0%, #e9f7f0 50%, #d3efe2 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .rewards-section__card {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }
}
.rewards-section__content {
  text-align: center;
  padding: 40px 20px;
}
.rewards-section__title {
  margin: 0 0 12px;
  color: #0a472e;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .rewards-section__title {
    font-size: 25px;
  }
}
.rewards-section__description {
  margin: 0 0 32px;
  color: #0a472e;
  font-size: 1.25rem;
  line-height: 1.5;
}
.rewards-section__description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .rewards-section__description {
    font-size: 20px;
  }
}
.rewards-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 7px;
  background: #3aba7f;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.rewards-section__button:hover {
  background: #2ea86f;
  color: #fff;
}
.rewards-section__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rewards-section__image img {
  width: 70%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 768px) {
  .rewards-section__image--left {
    justify-content: flex-start;
  }
}
.rewards-section__image--left img {
  background: #d3efe2;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .rewards-section__image--right {
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .rewards-section__card {
    gap: 20px;
  }
  .rewards-section__content {
    order: 2;
    padding: 20px 10px;
  }
  .rewards-section__image--left {
    order: 1;
  }
  .rewards-section__image--right {
    order: 3;
  }
}

.festival-offers {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .festival-offers {
    padding: 80px 0;
  }
}
.festival-offers__header {
  text-align: center;
  margin-bottom: 32px;
}
.festival-offers__subheading {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  color: #3aba7f;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
.festival-offers__heading {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #0a472e;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .festival-offers__heading {
    font-size: 2rem;
  }
}
.festival-offers__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.festival-offers__item {
  flex: 1 1 320px;
  max-width: 100%;
}
.festival-offers__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: contain;
}
@media (min-width: 576px) {
  .festival-offers__image {
    height: 400px;
  }
}
.festival-offers__actions {
  margin-top: 1.5rem;
  text-align: center;
}
.festival-offers__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  padding: 14px 32px;
  border-radius: 7px;
  background: #3aba7f;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.festival-offers__button:hover {
  background: #15803d;
  color: #fff;
}
@media (min-width: 768px) {
  .festival-offers__button {
    padding: 12px 32px;
  }
}

.grocery-delivery {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .grocery-delivery {
    padding: 60px 0;
  }
}
.grocery-delivery__wrapper {
  background-color: #e9f7f0;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 24px 130px 24px;
  min-height: 490px;
}
@media (min-width: 1024px) {
  .grocery-delivery__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 170px;
    padding: 0;
  }
}
.grocery-delivery__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .grocery-delivery__content {
    flex-direction: row;
    align-items: center;
    gap: 75px;
    max-width: 60%;
    padding: 0 58px;
  }
}
.grocery-delivery__van {
  flex-shrink: 0;
}
.grocery-delivery__van-image {
  max-height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .grocery-delivery__van-image {
    max-height: 100px;
  }
}
.grocery-delivery__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.grocery-delivery__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #0a472e;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  width: 80%;
}
@media (min-width: 1024px) {
  .grocery-delivery__title {
    font-size: 2rem;
    width: 100%;
  }
}
.grocery-delivery__description {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .grocery-delivery__description {
    font-size: 1.25rem;
  }
}
.grocery-delivery__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  padding: 10px 10px;
  border-radius: 21px;
  background: #5af0a3;
  color: #0a472e;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  width: 150px;
}
.grocery-delivery__button:hover {
  background: #3cde8a;
  color: #0a472e;
}
.grocery-delivery__button--mobile {
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .grocery-delivery__button--mobile {
    display: none;
  }
}
.grocery-delivery__button--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .grocery-delivery__button--desktop {
    display: inline-flex;
    position: relative;
    z-index: 3;
    width: 150px;
  }
}
.grocery-delivery__media {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1024px) {
  .grocery-delivery__media {
    position: relative;
    height: 100%;
    width: 50%;
    align-items: center;
    pointer-events: auto;
  }
}
.grocery-delivery__main-image {
  display: block;
  object-fit: contain;
  object-position: bottom right;
  max-height: 250px;
  width: auto;
}
.grocery-delivery__main-image--desktop.has-mobile-image {
  display: none;
}
@media (min-width: 1024px) {
  .grocery-delivery__main-image--desktop.has-mobile-image {
    display: block;
  }
}
.grocery-delivery__main-image--mobile {
  display: block;
}
@media (min-width: 1024px) {
  .grocery-delivery__main-image--mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .grocery-delivery__main-image {
    object-position: right center;
  }
}
.grocery-delivery__overlays {
  position: absolute;
  bottom: auto;
  right: 130px;
  transform: translateY(-40%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .grocery-delivery__overlays {
    top: 50%;
    gap: 120px;
    transform: translateY(-50%);
    right: 50px;
    padding: 0;
  }
}
.grocery-delivery__badge {
  width: 110px;
  height: auto;
  display: block;
}

.other-services {
  background: #effff7;
  padding: 60px 0;
}
.other-services__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.other-services__header {
  text-align: center;
}
.other-services__subheading {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  color: #3aba7f;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.other-services__heading {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #0a472e;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.other-services__slider {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.other-services__slider::-webkit-scrollbar {
  display: none;
}
.other-services__slider .other-services__card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .other-services__slider .other-services__card {
    flex-basis: calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .other-services__slider .other-services__card {
    flex-basis: 80%;
  }
}
.other-services__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  max-height: 400px;
  transition: all 0.2s ease;
}
.other-services__card-outer {
  background-color: #1f6243;
  border-radius: 14px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
.other-services__card-inner {
  background-color: #276f4e;
  margin: 0 16px;
  border-radius: 14px;
  padding: 20px 8px;
  text-align: center;
}
.other-services__card-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.other-services__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-top: auto;
}

.other-services-single {
  overflow: hidden;
}
.other-services-single__banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.other-services-single__banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.other-services-single__banner .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.other-services-single__banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: inherit;
}
.other-services-single__banner-title {
  margin: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 900px;
}
.other-services-single__description {
  background-color: #44ba7f;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .other-services-single__description {
    padding: 3rem 0;
  }
}
.other-services-single__description-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.other-services-single__description-title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.188rem);
  font-weight: 700;
  line-height: 1.2;
}
.other-services-single__description-text {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0;
}
.other-services-single__providers {
  padding: 4rem 0;
}
.other-services-single__provider {
  padding: 3rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.other-services-single__provider:last-child {
  border-bottom: 0;
}
.other-services-single__provider-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .other-services-single__provider-header {
    align-items: flex-start;
  }
}
.other-services-single__provider-logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  padding: 0.5rem;
  border-radius: 16px;
  background: #e0e0e0;
}
.other-services-single__provider-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
}
.other-services-single__provider-name {
  margin: 0 0 0.5rem;
  color: #000000;
  font-size: 2.188rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .other-services-single__provider-name {
    font-size: 1.563rem;
  }
}
.other-services-single__provider-specialties {
  margin: 0;
  color: #525252;
  font-size: 1.125rem;
  line-height: 1.6;
}
.other-services-single__provider-image {
  margin-bottom: 2.5rem;
}
.other-services-single__provider-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.other-services-single__provider-contact-section-title {
  margin: 0 0 1rem;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.other-services-single__provider-about {
  margin-bottom: 2.5rem;
}
.other-services-single__provider-content {
  color: #525252;
  font-size: 1.125rem;
  line-height: 1.4;
}
.other-services-single__provider-content h2,
.other-services-single__provider-content h3,
.other-services-single__provider-content h4,
.other-services-single__provider-content h5,
.other-services-single__provider-content h6 {
  color: #000000;
}
.other-services-single__provider-content h3 {
  margin: 0 0 1rem;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.other-services-single__provider-content p {
  margin-top: 0;
}
.other-services-single__provider-content p:last-child {
  margin-bottom: 0;
}
.other-services-single__provider-content ul,
.other-services-single__provider-content ol {
  padding-left: 1.5rem;
}
.other-services-single__provider-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.other-services-single__provider-contact-item {
  color: #525252;
  font-size: 1.125rem;
}
.other-services-single__provider-contact-label {
  font-weight: 600;
  color: #000000;
  margin-right: 0.5rem;
}
.other-services-single__provider-contact-link {
  color: #000000;
  text-decoration: none;
  transition: all 0.2s ease;
}
.other-services-single__provider-contact-link:hover {
  text-decoration: underline;
}

.page-banner {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-banner__title {
  margin: 0 0 0.5rem;
  color: #000000;
  font-family: "Telugu MN", sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.page-banner__breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-banner__breadcrumb-link, .page-banner__breadcrumb-current {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #000000;
}
.page-banner__breadcrumb-link {
  text-decoration: none;
  transition: all 0.2s ease;
}
.page-banner__breadcrumb-link:hover {
  opacity: 0.8;
}
.page-banner__separator {
  margin: 0 0.5rem;
  color: #000000;
}
.page-banner__breadcrumb-item {
  display: flex;
  align-items: center;
}

.categories {
  background: #d3efe2;
  padding: 3rem 0;
}

.categories-slider {
  position: relative;
}
.categories-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.categories-slider__viewport::-webkit-scrollbar {
  display: none;
}
.categories-slider__track {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
}
.categories-slider__slide {
  flex: 0 0 140px;
}
@media (min-width: 576px) {
  .categories-slider__slide {
    flex-basis: 150px;
  }
}
@media (min-width: 768px) {
  .categories-slider__slide {
    flex-basis: 170px;
  }
}
@media (min-width: 1024px) {
  .categories-slider__slide {
    flex-basis: 170px;
  }
}
.categories-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #707070;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.categories-slider__arrow:hover {
  background: #f5f5f5;
}
.categories-slider__arrow--prev {
  left: -22px;
}
.categories-slider__arrow--next {
  right: -22px;
}
@media (max-width: 768px) {
  .categories-slider__arrow {
    display: none;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.category-card__image {
  width: 130px;
  height: 130px;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.category-card__title {
  margin-top: 0.75rem;
  padding: 0 0.5rem;
  color: #525252;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.category-card:hover .category-card__image {
  border: 1px solid #44ba7f;
}
.category-card:hover .category-card__image img {
  transform: scale(1.05);
}

.shop-by-department {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .shop-by-department {
    padding: 4rem 0;
  }
}
.shop-by-department__header {
  text-align: center;
  margin-bottom: 1rem;
}
.shop-by-department__title {
  margin: 0;
  color: #0a472e;
  font-family: "Poppins", sans-serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .shop-by-department__title {
    font-size: 1.5rem;
  }
}
.shop-by-department__categories {
  width: 100%;
  margin-bottom: 1.5rem;
}
.shop-by-department__categories-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shop-by-department__categories-viewport::-webkit-scrollbar {
  display: none;
}
.shop-by-department__categories-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem 0;
}
.shop-by-department__category {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #374151;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-by-department__category:hover {
  background: #e9f2f4;
}
.shop-by-department__category.is-active {
  background: #44ba7f;
  color: #ffffff;
}
.shop-by-department__panel {
  display: none;
}
.shop-by-department__panel.is-active {
  display: block;
}
.shop-by-department__slider {
  position: relative;
  width: 100%;
}
.shop-by-department__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shop-by-department__viewport::-webkit-scrollbar {
  display: none;
}
.shop-by-department__track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  margin: 0;
  padding: 0;
}
.shop-by-department__slide {
  flex: 0 0 auto;
  width: 220px;
}
.shop-by-department__product {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.shop-by-department__product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7ea;
  border-radius: 30px;
  background: #ffffff;
}
.shop-by-department__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.shop-by-department__product-image:hover img {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .shop-by-department__product-image {
    height: 220px;
  }
}
.shop-by-department__badge {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: #44ba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.shop-by-department__product-category {
  width: 100%;
  margin: 0.5rem 0 0;
  overflow: hidden;
  color: #6c6c6c;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-by-department__product-title {
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: #0a472e;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-by-department__product-price {
  margin: 0.5rem 0 0;
  color: #525252;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.shop-by-department__product-price .amount {
  color: inherit;
}
.shop-by-department__product-price del {
  margin-right: 0.25rem;
  color: #7c7c7c;
  font-size: 0.875rem;
  font-weight: 400;
}
.shop-by-department__product-price ins {
  color: inherit;
  text-decoration: none;
}
.shop-by-department__arrow {
  position: absolute;
  top: 30%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #707070;
  font-size: 18px;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.shop-by-department__arrow:hover {
  background: #f5f5f5;
}
.shop-by-department__arrow--prev {
  left: -20px;
}
.shop-by-department__arrow--next {
  right: -20px;
}
@media (max-width: 768px) {
  .shop-by-department__arrow {
    display: none;
  }
}
.shop-by-department__empty {
  margin: 0;
  padding: 2rem 0;
  color: #525252;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-align: center;
}
.shop-by-department__footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.shop-by-department__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 7px;
  background: #44ba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.2s ease;
}
.shop-by-department__button:hover {
  background: #269b65;
  color: #ffffff;
}

.top-selling {
  width: 100%;
  padding: 40px 20px;
  background-color: #e9f7f0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1024px) {
  .top-selling {
    padding: 40px 0;
  }
}

.top-selling__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1024px) {
  .top-selling__inner {
    flex-direction: column;
    gap: 30px;
  }
}

.top-selling__callout {
  position: relative;
  width: 30%;
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: #3aba7f;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 25px;
  padding-top: 16px;
}
@media (max-width: 1024px) {
  .top-selling__callout {
    width: 100%;
    flex: 0 0 100%;
  }
}

.top-selling__callout-content {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.top-selling__callout-text {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .top-selling__callout-text {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .top-selling__callout-text {
    font-size: 34px;
  }
}

.top-selling__callout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 8px 20px;
  background-color: #ffffff;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.top-selling__callout-button:hover {
  background-color: #f5f5f5;
  color: #3aba7f;
}

.top-selling__callout-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.top-selling__callout-image img {
  display: block;
  width: 60%;
  height: auto;
  object-fit: contain;
}

.top-selling__products-section {
  width: 70%;
  flex: 0 0 70%;
}
@media (max-width: 1024px) {
  .top-selling__products-section {
    width: 100%;
    flex: 0 0 100%;
  }
}

.top-selling__title {
  margin: 0 0 26px;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}
@media (max-width: 768px) {
  .top-selling__title {
    text-align: center;
  }
}

.top-selling__products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .top-selling__products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.top-selling__product {
  position: relative;
  width: 100%;
  min-width: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.top-selling__product:hover {
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.top-selling__product-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 768px) {
  .top-selling__product-link {
    padding: 14px;
  }
}

.top-selling__product-badge {
  position: absolute;
  top: -2px;
  left: 0;
  width: 80px;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.top-selling__product-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-selling__product-content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .top-selling__product-content {
    gap: 14px;
  }
}

.top-selling__product-image {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
}
.top-selling__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .top-selling__product-image {
    width: 85px;
    height: 85px;
    flex-basis: 85px;
  }
}

.top-selling__product-info {
  flex: 1;
  min-width: 0;
}

.top-selling__product-name {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #171717;
  overflow-wrap: anywhere;
}
@media (max-width: 768px) {
  .top-selling__product-name {
    font-size: 16px;
  }
}

.top-selling__product-price {
  margin-top: 4px;
  font-family: "Telugu MN", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #171717;
}
.top-selling__product-price .amount {
  font-weight: 600;
}
.top-selling__product-price del {
  color: #7c7c7c;
  font-weight: 400;
  margin-right: 4px;
}
.top-selling__product-price ins {
  text-decoration: none;
}
@media (max-width: 768px) {
  .top-selling__product-price {
    font-size: 15px;
  }
}

.new-arrivals {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .new-arrivals {
    padding: 4rem 0;
  }
}
.new-arrivals__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.new-arrivals__title {
  margin: 0;
  color: #0a472e;
  font-family: "Poppins", sans-serif;
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .new-arrivals__title {
    font-size: 1.5rem;
  }
}
.new-arrivals__slider {
  position: relative;
  width: 100%;
}
.new-arrivals__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.new-arrivals__viewport::-webkit-scrollbar {
  display: none;
}
.new-arrivals__track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  margin: 0;
  padding: 0;
}
.new-arrivals__slide {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 220px;
}
.new-arrivals__product {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.new-arrivals__product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7ea;
  border-radius: 30px;
  background: #ffffff;
}
.new-arrivals__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.new-arrivals__product-image:hover img {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .new-arrivals__product-image {
    height: 220px;
  }
}
.new-arrivals__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  pointer-events: none;
}
.new-arrivals__badge--new {
  background: #44ba7f;
  color: #ffffff;
}
.new-arrivals__product-category {
  width: 100%;
  margin: 0.5rem 0 0;
  overflow: hidden;
  color: #6c6c6c;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-arrivals__product-title {
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: #0a472e;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-arrivals__product-price {
  margin: 0.5rem 0 0;
  color: #525252;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.new-arrivals__product-price .amount {
  color: inherit;
}
.new-arrivals__product-price del {
  margin-right: 0.25rem;
  color: #7c7c7c;
  font-size: 0.875rem;
  font-weight: 400;
}
.new-arrivals__product-price ins {
  color: inherit;
  text-decoration: none;
}
.new-arrivals__cart {
  width: 100%;
}
.new-arrivals__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0.75rem 0 0;
  width: 100%;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  background: #e9f2f4;
  color: #0a472e;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.new-arrivals__add-to-cart img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.new-arrivals__add-to-cart:hover {
  background: #f4f4f4;
}
.new-arrivals__add-to-cart:active {
  transform: translateY(1px);
}
.new-arrivals__add-to-cart--disabled {
  background: #eeeeee;
  border-color: #eeeeee;
  color: #888888;
  cursor: not-allowed;
}
.new-arrivals__add-to-cart--disabled:hover {
  background: #eeeeee;
  border-color: #eeeeee;
}
.new-arrivals__arrow {
  position: absolute;
  top: 30%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #707070;
  font-size: 18px;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.new-arrivals__arrow:hover {
  background: #f5f5f5;
}
.new-arrivals__arrow--prev {
  left: -20px;
}
.new-arrivals__arrow--next {
  right: -20px;
}
@media (max-width: 768px) {
  .new-arrivals__arrow {
    display: none;
  }
}
.new-arrivals__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.new-arrivals__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  padding: 12px 22px;
  border: 1px solid #44ba7f;
  border-radius: 7px;
  background: #44ba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.new-arrivals__button:hover {
  background: #269b65;
  border-color: #269b65;
  color: #ffffff;
  transform: translateY(-1px);
}
.new-arrivals__button:active {
  transform: translateY(0);
}
.new-arrivals__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.new-arrivals__button:hover .new-arrivals__button-arrow {
  transform: translateX(4px);
}
.new-arrivals__empty {
  margin: 0;
  padding: 2rem 0;
  color: #525252;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-align: center;
}

.thank-you {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 30px 0;
}
@media (min-width: 1024px) {
  .thank-you {
    padding: 70px 0;
  }
}
.thank-you::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}
.thank-you__card {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  background: #effff7;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 70px 50px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .thank-you__card {
    padding: 50px 24px;
    border-radius: 24px;
  }
}
.thank-you__icon {
  margin-bottom: 32px;
}
.thank-you__icon svg {
  display: block;
  margin: 0 auto;
}
.thank-you__tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #daf4cf;
  border: 1px solid rgba(198, 161, 110, 0.3);
  color: #000000;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 24px;
}
.thank-you__title {
  font-family: "Telugu MN", sans-serif;
  font-size: 50px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .thank-you__title {
    font-size: 30px;
  }
}
.thank-you__text {
  max-width: 560px;
  margin: 0 auto 42px auto;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: #525252;
}
@media (max-width: 768px) {
  .thank-you__text {
    font-size: 17.5px;
  }
}
.thank-you__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.thank-you__btn {
  min-width: 220px;
  height: 58px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}
.thank-you__btn--primary {
  background: #44ba7f;
  color: #fff;
}
.thank-you__btn--primary:hover {
  opacity: 0.8;
}
.thank-you__btn--secondary {
  color: #525252;
  background: transparent;
  border: 1px solid #44ba7f;
}
.thank-you__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 576px) {
  .thank-you__btn {
    width: 100%;
  }
}

.verify-email-page {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
  background: #fff;
  overflow: hidden;
}
.verify-email-page .container {
  width: 100%;
  position: relative;
  z-index: 2;
}
.verify-email-page__card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 70px 55px;
  text-align: center;
  background: #effff7;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .verify-email-page__card {
    padding: 50px 28px;
    border-radius: 22px;
  }
}
@media (max-width: 576px) {
  .verify-email-page__card {
    padding: 42px 20px;
  }
}
.verify-email-page__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #44ba7f;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(198, 161, 110, 0.25);
}
@media (max-width: 768px) {
  .verify-email-page__icon {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }
}
.verify-email-page__icon--email {
  font-size: 40px;
}
@media (max-width: 768px) {
  .verify-email-page__icon--email {
    font-size: 32px;
  }
}
.verify-email-page__icon--success {
  background: #44ba7f;
}
.verify-email-page__icon--error {
  background: #e63946;
  box-shadow: 0 10px 30px rgba(165, 43, 32, 0.25);
}
.verify-email-page__tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px;
  border: 1px solid rgba(198, 161, 110, 0.3);
  border-radius: 9999px;
  background: #daf4cf;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.verify-email-page__title {
  margin: 0 0 10px;
  color: #000000;
  font-family: "Telugu MN", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .verify-email-page__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .verify-email-page__title {
    font-size: 30px;
  }
}
.verify-email-page__text {
  max-width: 560px;
  margin: 0 auto 26px;
  color: #525252;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .verify-email-page__text {
    font-size: 16px;
  }
}
.verify-email-page__button {
  display: inline-flex;
  min-width: 210px;
  min-height: 54px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 8px;
  background: #44ba7f;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.verify-email-page__button:hover {
  opacity: 0.8;
}
.verify-email-page__button:active {
  transform: translateY(0);
  box-shadow: none;
}
@media (max-width: 576px) {
  .verify-email-page__button {
    width: 100%;
  }
}

.default-page {
  background: #ffffff;
  padding-bottom: 4rem;
}
.default-page__content {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #525252;
}
@media (max-width: 768px) {
  .default-page__content {
    padding: 2rem 0;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.default-page__content h1,
.default-page__content h2,
.default-page__content h3,
.default-page__content h4,
.default-page__content h5,
.default-page__content h6 {
  font-family: "Telugu MN", sans-serif;
  color: #000000;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.default-page__content h1:first-child,
.default-page__content h2:first-child,
.default-page__content h3:first-child,
.default-page__content h4:first-child,
.default-page__content h5:first-child,
.default-page__content h6:first-child {
  margin-top: 0;
}
.default-page__content h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .default-page__content h1 {
    font-size: 1.563rem;
  }
}
.default-page__content h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .default-page__content h2 {
    font-size: 1.5rem;
  }
}
.default-page__content h3 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .default-page__content h3 {
    font-size: 1.25rem;
  }
}
.default-page__content h4 {
  font-size: 1.25rem;
}
.default-page__content h5,
.default-page__content h6 {
  font-size: 1.125rem;
}
.default-page__content p {
  margin: 0 0 1.25rem;
}
.default-page__content p:last-child {
  margin-bottom: 0;
}
.default-page__content a {
  color: #44ba7f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}
.default-page__content a:hover {
  opacity: 0.7;
}
.default-page__content strong,
.default-page__content b {
  color: #000000;
  font-weight: 600;
}
.default-page__content em,
.default-page__content i {
  font-style: italic;
}
.default-page__content ul,
.default-page__content ol {
  margin: 1.25rem 0 1.5rem;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .default-page__content ul,
  .default-page__content ol {
    padding-left: 1.5rem;
  }
}
.default-page__content li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}
.default-page__content li::marker {
  color: #44ba7f;
}
.default-page__content ul {
  list-style-type: disc;
}
.default-page__content ol {
  list-style-type: decimal;
}
.default-page__content ul ul,
.default-page__content ol ol,
.default-page__content ul ol,
.default-page__content ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.default-page__content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: #effff7;
  border-left: 4px solid #44ba7f;
  border-radius: 0 8px 8px 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #525252;
  line-height: 1.6;
}
.default-page__content blockquote p {
  margin: 0;
}
@media (max-width: 768px) {
  .default-page__content blockquote {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
.default-page__content hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 2.5rem 0;
}
.default-page__content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .default-page__content table {
    font-size: 0.75rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.default-page__content table th,
.default-page__content table td {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}
.default-page__content table th {
  font-family: "Telugu MN", sans-serif;
  font-weight: 400;
  color: #000000;
  background: #effff7;
}
.default-page__content table td {
  color: #525252;
}
.default-page__content table tr:nth-child(even) td {
  background: #f8f8f8;
}
.default-page__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 8px;
}
.default-page__content .wp-caption {
  max-width: 100%;
  margin: 2rem auto;
}
.default-page__content .wp-caption img {
  margin: 0 auto;
}
.default-page__content .wp-caption-text {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #7c7c7c;
}
.default-page__content code {
  padding: 2px 6px;
  border-radius: 4px;
  background: #f8f8f8;
  color: #000000;
  font-size: 0.9em;
}
.default-page__content pre {
  overflow-x: auto;
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: 8px;
  background: #280804;
  color: #ffffff;
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
.default-page__content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}
.default-page__content dl {
  margin: 1.5rem 0;
}
.default-page__content dt {
  margin-bottom: 0.5rem;
  font-family: "Telugu MN", sans-serif;
  color: #000000;
  font-size: 1.25rem;
}
.default-page__content dd {
  margin: 0 0 1.25rem;
  color: #525252;
}
.default-page__content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.default-page__content .alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}
.default-page__content .alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}
@media (max-width: 768px) {
  .default-page__content .alignleft,
  .default-page__content .alignright {
    float: none;
    margin: 1.5rem auto;
  }
}
.default-page__content .wp-block-button {
  margin: 1.5rem 0;
}
.default-page__content .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  background: #44ba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.default-page__content .wp-block-button .wp-block-button__link:hover {
  opacity: 0.8;
}

/*# sourceMappingURL=main.css.map */
