@charset "UTF-8";
@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;
}
.shop-page {
  padding: 2.5rem 0 4rem;
}
@media (min-width: 768px) {
  .shop-page {
    padding: 3rem 0 4rem;
  }
}
.shop-page__filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .shop-page__filter-toggle {
    display: none;
  }
}
.shop-page__filter-toggle-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.shop-page__layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .shop-page__layout {
    gap: 3rem;
    padding: 2.5rem 0 4rem;
  }
}
.shop-page__sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 80%;
  height: 100vh;
  padding: 1.5rem;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.shop-page__sidebar.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .shop-page__sidebar {
    position: sticky;
    top: 7.5rem;
    z-index: 0;
    flex: 0 0 240px;
    width: 240px;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
}
.shop-page__sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .shop-page__sidebar-header {
    margin-bottom: 1.5rem;
  }
}
.shop-page__sidebar-title {
  margin: 0;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.shop-page__filter-close {
  display: block;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: #000000;
  font-size: 1.25rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .shop-page__filter-close {
    display: none;
  }
}
.shop-page__category-filter {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shop-page__category {
  display: block;
  padding: 0.25rem 0;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-page__category:hover {
  color: #44ba7f;
}
.shop-page__category.is-active {
  color: #44ba7f;
  font-weight: 600;
}
.shop-page__content {
  width: 100%;
  min-width: 0;
}
.shop-page__sorting {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.shop-page__sorting::-webkit-scrollbar {
  display: none;
}
.shop-page__sorting-label {
  flex: 0 0 auto;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}
.shop-page__sorting-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
}
.shop-page__sort {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: #f4f4f4;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.shop-page__sort:hover {
  background: #e9f2f4;
  color: #000000;
}
.shop-page__sort.is-active {
  background: #44ba7f;
  color: #ffffff;
}
.shop-page__search-result {
  display: flex;
  margin-bottom: 1.5rem;
  background-color: #effff7;
  width: fit-content;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  line-height: 1.4;
  gap: 12px;
}
.shop-page__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .shop-page__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.shop-page__product {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.shop-page__product-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.shop-page__product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #ffffff;
}
.shop-page__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.shop-page__product:hover .shop-page__product-image img {
  transform: scale(1.05);
}
.shop-page__product-category {
  margin: 0 0 0.25rem;
  overflow: hidden;
  color: #6c6c6c;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-page__product-title {
  margin: 0;
  overflow: hidden;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-page__product-price {
  margin-top: 0.5rem;
  color: #525252;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.shop-page__product-price .amount {
  color: inherit;
}
.shop-page__product-price del {
  color: #7c7c7c;
  font-size: 0.875rem;
  font-weight: 400;
}
.shop-page__product-price ins {
  color: inherit;
  text-decoration: none;
}
.shop-page__cart-form {
  width: 100%;
  margin-top: 0.75rem;
}
.shop-page__add-to-cart {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  background: #e9f2f4;
  color: #0a472e;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-page__add-to-cart:hover {
  background: #f4f4f4;
}
.shop-page__pagination {
  margin-top: 2.5rem;
}
.shop-page__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-page__pagination .page-numbers a,
.shop-page__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: 8px;
  text-decoration: none;
}
.shop-page__pagination .page-numbers a {
  border: 1px solid #e0e0e0;
  color: #000000;
}
.shop-page__pagination .page-numbers .current {
  background: #44ba7f;
  color: #ffffff;
}
.shop-page__empty {
  padding: 4rem 0;
  text-align: center;
}
.shop-page__empty h2 {
  margin: 0 0 0.5rem;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}
.shop-page__empty p {
  margin: 0;
  color: #525252;
  font-family: "Poppins", sans-serif;
}

.product-single-main {
  background: #fafafa;
  padding: 40px 20px 80px;
}
@media (min-width: 1024px) {
  .product-single-main {
    padding: 70px 0 100px;
  }
}

.product-single {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .product-single {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.product-single__image-column {
  width: 100%;
}
.product-single__image-wrap {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-single__image-wrap {
    padding: 20px;
  }
}
.product-single__image {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
}
.product-single__details {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .product-single__details {
    padding: 0;
  }
}
.product-single__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  color: #000000;
  margin: 0 0 22px;
}
@media (max-width: 768px) {
  .product-single__title {
    font-size: 25px;
    margin-bottom: 12px;
  }
}
.product-single__category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #7c7c7c;
  margin-bottom: 26px;
}
.product-single__category span {
  color: #7c7c7c;
}
.product-single__category a {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}
.product-single__category a:hover {
  opacity: 0.75;
}
@media (max-width: 768px) {
  .product-single__category {
    font-size: 0.875rem;
    margin-bottom: 14px;
  }
}
.product-single__price {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: #3aba7f;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .product-single__price {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.product-single__price .amount {
  font-weight: 700;
}
.product-single__price del {
  color: #7c7c7c;
  font-size: 0.8em;
  font-weight: 400;
  margin-right: 5px;
}
.product-single__price ins {
  text-decoration: none;
}
.product-single__cart {
  width: 100%;
  margin: 0;
}
.product-single__cart-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .product-single__cart-row {
    gap: 10px;
  }
}
.product-single__qty-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  height: 52px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(124, 124, 124, 0.3);
  border-radius: 9999px;
  box-shadow: 0 10px 10px rgba(124, 124, 124, 0.05);
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-single__qty-wrap {
    width: 125px;
    height: 48px;
  }
}
.product-single__qty-wrap .qty-btn {
  width: 42px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-family: "Telugu MN", sans-serif;
  font-size: 22px;
  line-height: 1;
  color: #7c7c7c;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.product-single__qty-wrap .qty-btn:hover {
  color: #3aba7f;
  background: rgba(68, 186, 127, 0.04);
}
@media (max-width: 768px) {
  .product-single__qty-wrap .qty-btn {
    width: 36px;
    font-size: 20px;
  }
}
.product-single__qty-wrap input.qty {
  width: 50px;
  height: 100%;
  flex: 1;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-family: "Telugu MN", sans-serif;
  font-size: 1.125rem;
  color: #000000;
}
.product-single__qty-wrap input.qty::-webkit-inner-spin-button, .product-single__qty-wrap input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-single__qty-wrap input.qty {
  -moz-appearance: textfield;
}
.product-single__qty-wrap input.qty:focus {
  outline: none;
  box-shadow: none;
}
.product-single__add-to-cart {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: none;
  border-radius: 10px;
  background: #3aba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.product-single__add-to-cart:hover {
  background: #2fa96e;
}
.product-single__add-to-cart:active {
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .product-single__add-to-cart {
    height: 48px;
    font-size: 0.875rem;
  }
}
.product-single__out-of-stock {
  width: 100%;
  font-family: "Telugu MN", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #9a2222;
}
.product-single__divider {
  width: 100%;
  height: 1px;
  border: none;
  margin: 24px 0 8px;
  background-color: #d9d9d9;
}
.product-single__view-cart {
  width: 100%;
  margin-top: 16px;
}
.product-single__view-cart a {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  background: transparent;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.product-single__view-cart a:hover {
  background: #f0faf5;
  border-color: #3aba7f;
}
@media (max-width: 768px) {
  .product-single__view-cart a {
    height: 48px;
    font-size: 0.875rem;
  }
}
.product-single__description {
  margin-top: 48px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-single__description {
    margin-top: 28px;
  }
}
.product-single__description-header {
  padding: 0 24px;
  border-bottom: 1px solid #e5e5e5;
}
.product-single__description-header h2 {
  display: inline-block;
  margin: 0;
  padding: 18px 0;
  border-bottom: 2px solid #3aba7f;
  font-family: "Telugu MN", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: #3aba7f;
}
@media (max-width: 768px) {
  .product-single__description-header h2 {
    font-size: 18px;
    padding: 15px 0;
  }
}
.product-single__description-content {
  padding: 28px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #7c7c7c;
}
@media (max-width: 768px) {
  .product-single__description-content {
    padding: 20px;
    font-size: 0.875rem;
  }
}
.product-single__description-content p {
  margin: 0 0 16px;
}
.product-single__description-content p:last-child {
  margin-bottom: 0;
}
.product-single__description-content h1,
.product-single__description-content h2,
.product-single__description-content h3,
.product-single__description-content h4,
.product-single__description-content h5,
.product-single__description-content h6 {
  color: #44ba7f;
  margin: 24px 0 10px;
  line-height: 1.3;
}
.product-single__description-content ul,
.product-single__description-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.product-single__description-content ul {
  list-style: disc;
}
.product-single__description-content ol {
  list-style: decimal;
}
.product-single__description-content li {
  margin-bottom: 8px;
}
.product-single__description-content a {
  color: #3aba7f;
  text-decoration: underline;
}
.product-single__description-content img {
  max-width: 100%;
  height: auto;
}
.product-single__description-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.product-single__description-content table th,
.product-single__description-content table td {
  padding: 10px;
  border: 1px solid #e5e5e5;
  text-align: left;
}
.product-single__description-content table th {
  font-weight: 600;
  color: #44ba7f;
}
.product-single__no-description {
  margin: 0;
  opacity: 0.7;
}

.breadcrumb {
  font-size: 1rem;
  color: #000000;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1.5rem 0 4rem;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.cart-page {
  background-color: #fff;
}
.cart-page__title h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.188rem;
  font-weight: 600;
  color: #000000;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .cart-page__title h1 {
    font-size: 1.563rem;
  }
}
.cart-page__content {
  padding: 3rem 0 4rem;
}
.cart-page__wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 90px;
  align-items: start;
}
@media (max-width: 1024px) {
  .cart-page__wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .cart-page__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.cart-page__items {
  background: transparent;
}
.cart-page__actions {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  gap: 1rem;
}
.cart-page__actions button {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.cart-page__actions button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cart-page__actions button:hover {
  opacity: 0.7;
}
.cart-page__remove-selected {
  background: linear-gradient(to bottom, #44ba7f, #50c209);
  color: #ffffff;
}
.cart-page__remove-all {
  background: #e63946;
  color: #ffffff;
}
.cart-page__sidebar {
  background: #fcfcfc;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  position: sticky;
  top: 5rem;
}
@media (max-width: 768px) {
  .cart-page__sidebar {
    width: 100%;
    position: static;
  }
}

.cart-items__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 0.1px solid #7c7c7c;
}
.cart-items__header span {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.25rem;
  color: #000000;
}
@media (max-width: 768px) {
  .cart-items__header span {
    font-size: 1rem;
  }
}
.cart-items__header span:first-child {
  font-weight: 600;
}
.cart-items__header span:last-child {
  font-weight: 500;
}
@media (max-width: 768px) {
  .cart-items__header span:last-child {
    display: none;
  }
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 1.25rem 0;
  border-bottom: 0.1px solid #7c7c7c;
}
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    gap: 0;
    padding: 1.25rem 0;
  }
}
.cart-item__select {
  flex-shrink: 0;
  padding-top: 4px;
}
.cart-item__select input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #44ba7f;
}
.cart-item__image {
  width: 80px;
  height: 100px;
  flex-shrink: 0;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cart-item__image {
    width: 100%;
    height: 180px;
  }
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 768px) {
  .cart-item__details {
    width: 100%;
    padding-top: 0.75rem;
  }
}
.cart-item__name {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .cart-item__name {
    font-size: 1.094rem;
  }
}
.cart-item__name a {
  color: inherit;
  text-decoration: none;
}
.cart-item__price-column {
  margin: 0 0 1rem;
  text-align: right;
}
@media (max-width: 768px) {
  .cart-item__price-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: normal;
  }
}
.cart-item__price {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.563rem;
  color: #000000;
}
.cart-item__remove {
  font-size: 1.25rem;
  color: #ffffff;
  cursor: pointer;
  background: #e63946;
  border-radius: 4px;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .cart-item__remove {
    order: 0;
  }
}
.cart-item__remove:hover {
  opacity: 0.7;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #7c7c7c;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 10px;
}
.qty-stepper__btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 1.15rem;
  color: #7c7c7c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s;
}
@media (min-width: 1024px) {
  .qty-stepper__btn {
    width: 40px;
    height: 40px;
  }
}
.qty-stepper__btn:hover {
  background: #e8e0d0;
}
.qty-stepper__input {
  width: 40px;
  height: 30px;
  border: none;
  text-align: center;
  font-size: 1rem;
  background: transparent;
  color: #7c7c7c;
  appearance: textfield;
  -moz-appearance: textfield;
}
@media (min-width: 1024px) {
  .qty-stepper__input {
    width: 40px;
    height: 40px;
  }
}
.qty-stepper__input::-webkit-inner-spin-button, .qty-stepper__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.qty-stepper__input:focus {
  outline: none;
}

.order-summary {
  padding: 1.25rem;
  top: 2rem;
}
@media (min-width: 1024px) {
  .order-summary {
    padding: 1.75rem 1.75rem 2rem;
  }
}
.order-summary__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  margin: 0 0 1rem;
}
.order-summary__divider {
  border: none;
  border-top: 0.1px solid #c9c9c9;
  margin: 0.85rem 0;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  font-family: "Poppins", sans-serif;
  padding: 0.45rem 0;
}
.order-summary__row span:last-child {
  font-weight: 400;
}
.order-summary__row--total {
  font-size: 1.05rem;
  color: #000000;
  font-family: "Poppins", sans-serif;
}
.order-summary__row--total span:last-child {
  font-weight: 500;
}
.order-summary__checkout-btn {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  background: linear-gradient(to bottom, #44ba7f, #50c209);
  text-align: center;
  padding: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
  box-sizing: border-box;
  font-size: 1.25rem;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
.order-summary__checkout-btn:hover {
  opacity: 0.8;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 10px;
}
.cart-empty h2 {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.563rem;
  color: #000000;
  font-weight: 600;
}
.cart-empty p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  max-width: 500px;
  color: #525252;
  font-family: "Poppins", sans-serif;
}
.cart-empty .btn--dark {
  display: inline-block;
  background: #44ba7f;
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.cart-empty .btn--dark:hover {
  opacity: 0.8;
}

.checkout-auth-modal {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.checkout-auth-modal[hidden] {
  display: none;
}
.checkout-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.checkout-auth-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 2.5rem 2rem 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: checkout-modal-in 0.25s ease;
}
.checkout-auth-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f4f4f4;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.checkout-auth-modal__close:hover {
  background: #e9e9e9;
  transform: rotate(90deg);
}
.checkout-auth-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(68, 186, 127, 0.1);
  font-size: 1.75rem;
}
.checkout-auth-modal__icon span {
  display: block;
}
.checkout-auth-modal__header {
  max-width: 390px;
  margin: 0 auto 1.75rem;
}
.checkout-auth-modal__eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: #44ba7f;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.checkout-auth-modal__title {
  margin: 0 0 0.75rem;
  color: #000000;
  font-family: "Telugu MN", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.checkout-auth-modal__message {
  margin: 0;
  color: #7c7c7c;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}
.checkout-auth-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.checkout-auth-modal__guest {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  background: #44ba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.checkout-auth-modal__guest:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(68, 186, 127, 0.25);
}
.checkout-auth-modal__arrow {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.checkout-auth-modal__guest:hover .checkout-auth-modal__arrow {
  transform: translateX(4px);
}
.checkout-auth-modal__login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 58px;
  padding: 0.75rem 1rem;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.checkout-auth-modal__login:hover {
  border-color: #44ba7f;
  background: rgba(68, 186, 127, 0.04);
}
.checkout-auth-modal__login strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
}
.checkout-auth-modal__login small {
  display: block;
  margin-top: 2px;
  color: #7c7c7c;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: left;
}
.checkout-auth-modal__login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 1rem;
}

@keyframes checkout-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .checkout-auth-modal {
    padding: 1rem;
  }
  .checkout-auth-modal__content {
    padding: 2.25rem 1.25rem 1.5rem;
    border-radius: 16px;
  }
  .checkout-auth-modal__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  .checkout-auth-modal__title {
    font-size: 1.25rem;
  }
  .checkout-auth-modal__message {
    font-size: 0.75rem;
  }
  .checkout-auth-modal__benefits {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
    padding-left: 0.5rem;
  }
}
body.checkout-modal-open {
  overflow: hidden;
}

.account-main {
  background: #ffffff;
  min-height: 80vh;
  padding: 48px 0 100px;
}
@media (max-width: 768px) {
  .account-main {
    padding: 24px 0 60px;
  }
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .account-layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.account-sidebar {
  position: sticky;
  top: 28px;
}
@media (max-width: 768px) {
  .account-sidebar {
    position: static;
  }
}

.account-nav {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.account-nav__user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  background: linear-gradient(to bottom, #44ba7f, #50c209);
}
.account-nav__avatar {
  flex-shrink: 0;
  position: relative;
}
.account-nav__avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.account-nav__avatar::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid #44ba7f;
}
.account-nav__user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.account-nav__user-name {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.account-nav__user-email {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-nav__list {
  list-style: none;
  margin: 0;
  padding: 10px 0 6px;
}
.account-nav__item {
  margin: 0;
}
.account-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}
.account-nav__link:hover {
  color: #44ba7f;
  background: rgba(88, 10, 0, 0.04);
}
.account-nav__item.is-active .account-nav__link, .account-nav__item.woocommerce-MyAccount-navigation-link--is-active .account-nav__link {
  color: #44ba7f;
  font-weight: 600;
  background: rgba(88, 10, 0, 0.06);
}
.account-nav__item.is-active .account-nav__link::before, .account-nav__item.woocommerce-MyAccount-navigation-link--is-active .account-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: #44ba7f;
  border-radius: 0 3px 3px 0;
}
.account-nav__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.account-nav__item.is-active .account-nav__icon, .account-nav__item.woocommerce-MyAccount-navigation-link--is-active .account-nav__icon {
  opacity: 1;
}
.account-nav__link:hover .account-nav__icon {
  opacity: 0.8;
}
.account-nav__item.woocommerce-MyAccount-navigation-link--customer-logout .account-nav__link {
  color: #c0392b;
  margin-top: 4px;
  border-top: 1px solid #e0e0e0;
  padding-top: 14px;
  margin-top: 4px;
}
.account-nav__item.woocommerce-MyAccount-navigation-link--customer-logout .account-nav__link:hover {
  background: rgba(230, 57, 70, 0.05);
}
.account-nav__item.woocommerce-MyAccount-navigation-link--customer-logout .account-nav__icon {
  opacity: 0.7;
}

.account-content {
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .account-content {
    padding: 24px 20px;
    border-radius: 12px;
  }
}
.account-content .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
}
.account-content h2 {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #44ba7f;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.account-content h3 {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #44ba7f;
  margin: 0 0 16px;
}
.account-content p {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  color: #daf4cf;
  line-height: 1.7;
}
.account-content a {
  color: #44ba7f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.account-content .woocommerce-form-row,
.account-content .form-row {
  margin: 0 0 18px;
}
.account-content .woocommerce-form-row label,
.account-content .form-row label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.account-content .woocommerce-form-row input.input-text,
.account-content .woocommerce-form-row input[type=text],
.account-content .woocommerce-form-row input[type=email],
.account-content .woocommerce-form-row input[type=password],
.account-content .woocommerce-form-row select,
.account-content .woocommerce-form-row textarea,
.account-content .form-row input.input-text,
.account-content .form-row input[type=text],
.account-content .form-row input[type=email],
.account-content .form-row input[type=password],
.account-content .form-row select,
.account-content .form-row textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif !important;
  font-size: 1rem;
  color: #525252;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.account-content .woocommerce-form-row input.input-text:focus,
.account-content .woocommerce-form-row input[type=text]:focus,
.account-content .woocommerce-form-row input[type=email]:focus,
.account-content .woocommerce-form-row input[type=password]:focus,
.account-content .woocommerce-form-row select:focus,
.account-content .woocommerce-form-row textarea:focus,
.account-content .form-row input.input-text:focus,
.account-content .form-row input[type=text]:focus,
.account-content .form-row input[type=email]:focus,
.account-content .form-row input[type=password]:focus,
.account-content .form-row select:focus,
.account-content .form-row textarea:focus {
  outline: none;
  border-color: #44ba7f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(88, 10, 0, 0.08);
}
.account-content .woocommerce-form-row input.input-text::placeholder,
.account-content .woocommerce-form-row input[type=text]::placeholder,
.account-content .woocommerce-form-row input[type=email]::placeholder,
.account-content .woocommerce-form-row input[type=password]::placeholder,
.account-content .woocommerce-form-row select::placeholder,
.account-content .woocommerce-form-row textarea::placeholder,
.account-content .form-row input.input-text::placeholder,
.account-content .form-row input[type=text]::placeholder,
.account-content .form-row input[type=email]::placeholder,
.account-content .form-row input[type=password]::placeholder,
.account-content .form-row select::placeholder,
.account-content .form-row textarea::placeholder {
  color: #aaa;
  opacity: 1;
}
.account-content .woocommerce-input-wrapper * {
  font-family: "Poppins", sans-serif !important;
}
.account-content .woocommerce-Button,
.account-content button[type=submit],
.account-content input[type=submit],
.account-content .button {
  display: inline-block;
  padding: 12px 28px;
  background: #44ba7f;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.02em;
}
.account-content .woocommerce-Button:hover,
.account-content button[type=submit]:hover,
.account-content input[type=submit]:hover,
.account-content .button:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.account-content .woocommerce-Button:active,
.account-content button[type=submit]:active,
.account-content input[type=submit]:active,
.account-content .button:active {
  transform: translateY(0);
}
.account-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.account-content .woocommerce-orders-table th {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #daf4cf;
  text-align: left;
  padding: 12px 16px;
  background: #f8f8f8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.account-content .woocommerce-orders-table td {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #daf4cf;
  padding: 14px 16px;
  border-top: 1px solid #e0e0e0;
  vertical-align: middle;
}
.account-content .woocommerce-orders-table tr:hover td {
  background: rgba(88, 10, 0, 0.02);
}
.account-content mark.order-status {
  background: transparent;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Telugu MN", sans-serif;
}
.account-content mark.order-status.processing {
  background: rgba(42, 157, 143, 0.1);
  color: #1a6b62;
}
.account-content mark.order-status.completed {
  background: rgba(88, 10, 0, 0.08);
  color: #44ba7f;
}
.account-content mark.order-status.on-hold {
  background: rgba(233, 196, 106, 0.2);
  color: #7d6a1e;
}
.account-content mark.order-status.cancelled, .account-content mark.order-status.failed {
  background: rgba(230, 57, 70, 0.08);
  color: #e63946;
}
.account-content .woocommerce-message,
.account-content .woocommerce-error,
.account-content .woocommerce-info {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  list-style: none;
}
.account-content .woocommerce-message {
  background: rgba(42, 157, 143, 0.08);
  color: #1a6b62;
  border-left: 3px solid #2a9d8f;
}
.account-content .woocommerce-error {
  background: rgba(230, 57, 70, 0.06);
  color: #e63946;
  border-left: 3px solid #e63946;
}
.account-content .woocommerce-info {
  background: rgba(88, 10, 0, 0.05);
  color: #44ba7f;
  border-left: 3px solid #44ba7f;
}

.account-dashboard__title {
  font-family: "Telugu MN", sans-serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px;
}
@media (max-width: 768px) {
  .account-dashboard__title {
    font-size: 1.563rem;
  }
}
.account-dashboard__sub {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #525252 !important;
  margin: 0 0 36px;
}
.account-dashboard__section {
  margin-bottom: 36px;
}
.account-dashboard__section-title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000 !important;
  margin: 0 0 14px;
}
.account-dashboard__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #000000 !important;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.8;
}
.account-dashboard__link:hover {
  opacity: 1;
}
.account-dashboard__quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .account-dashboard__quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.account-dashboard__quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px 22px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #000000 !important;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
}
.account-dashboard__quick-link svg {
  stroke: #000000 !important;
  transition: stroke 0.2s ease, transform 0.2s ease;
}
.account-dashboard__quick-link:hover {
  background: #44ba7f;
  border-color: #44ba7f;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 10, 0, 0.18);
}
.account-dashboard__quick-link:hover svg {
  stroke: #ffffff;
  transform: scale(1.1);
  stroke: #ffffff !important;
}

.account-orders-list {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.account-orders-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  gap: 16px;
  transition: background 0.15s ease;
}
.account-orders-list__item:last-child {
  border-bottom: none;
}
.account-orders-list__item:hover {
  background: rgba(88, 10, 0, 0.02);
}
@media (max-width: 768px) {
  .account-orders-list__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.account-orders-list__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account-orders-list__number {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
.account-orders-list__date {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #7c7c7c;
}
.account-orders-list__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .account-orders-list__right {
    width: 100%;
    justify-content: space-between;
  }
}
.account-orders-list__total {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}
.account-orders-list__status {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}
.account-orders-list__status--processing {
  background: rgba(42, 157, 143, 0.1);
  color: #44ba7f;
}
.account-orders-list__status--completed {
  background: #44ba7f;
  color: #ffffff;
}
.account-orders-list__status--on-hold {
  background: rgba(0, 0, 0, 0.05);
  color: #525252;
}
.account-orders-list__status--cancelled, .account-orders-list__status--failed {
  background: #e63946;
  color: #ffffff;
}
.account-orders-list__status--pending {
  background: rgba(0, 0, 0, 0.05);
  color: #44ba7f;
}
.account-orders-list__status--refunded {
  background: #daf4cf;
  color: #525252;
}
.account-orders-list__view {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid #44ba7f;
  border-radius: 6px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #44ba7f;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.account-orders-list__view:hover {
  background: #44ba7f;
  color: #ffffff;
}

.account-auth {
  max-width: 750px;
  margin: 0 auto;
  border: #44ba7f 3px solid;
  border-radius: 16px;
  background-color: #effff7;
}
.account-auth--tabs {
  background: #effff7;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.06);
}
.account-auth--split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  background: #effff7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .account-auth--split {
    grid-template-columns: 1fr;
  }
}
.account-auth--single {
  max-width: 480px;
  background: #effff7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.06);
}
.account-auth__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid #e0e0e0;
  background: #effff7;
}
.account-auth__tab {
  border: 0;
  background: transparent;
  padding: 18px 20px;
  font-family: "Telugu MN", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #525252;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.account-auth__tab:focus {
  outline: none;
}
.account-auth__tab.is-active {
  color: #44ba7f;
}
.account-auth__tab::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}
.account-auth__tab.is-active::after {
  background: #44ba7f;
}
.account-auth__panel {
  display: none;
  padding: 44px;
}
.account-auth__panel.is-active {
  display: block;
}
@media (max-width: 768px) {
  .account-auth__panel {
    padding: 36px 24px;
  }
}
@media (max-width: 768px) {
  .account-auth__panel--register {
    border-top: 1px solid #e0e0e0;
  }
}
.account-auth__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  background: #e0e0e0;
  position: relative;
}
@media (max-width: 768px) {
  .account-auth__divider {
    width: 100%;
    height: 1px;
  }
}
.account-auth__divider span {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  color: #7c7c7c;
  background: #ffffff;
  padding: 8px 0;
  position: absolute;
}
@media (max-width: 768px) {
  .account-auth__divider span {
    background: #effff7;
    padding: 0 12px;
  }
}
.account-auth__sub {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  color: #000000;
  margin: 0 0 28px;
  line-height: 1.4;
}
.account-auth__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.account-auth__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .account-auth__row {
    grid-template-columns: 1fr;
  }
}
.account-auth__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.account-auth__field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.account-auth__input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif !important;
  font-size: 1rem;
  color: #525252 !important;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.account-auth__input:focus {
  outline: none;
  border-color: #44ba7f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(88, 10, 0, 0.08);
}
.account-auth__input::placeholder {
  color: #b0b0b0;
  opacity: 1;
}
.account-auth__panel--register .account-auth__input {
  background: #ffffff;
}
.account-auth__forgot {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #7c7c7c;
  text-decoration: none;
  font-weight: 500;
}
.account-auth__forgot:hover {
  color: #44ba7f;
  text-decoration: underline;
}
.account-auth__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.account-auth__remember {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #525252;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  line-height: 1;
}
.account-auth__remember input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: #44ba7f;
  cursor: pointer;
  border-radius: 4px;
  margin: 0;
  flex-shrink: 0;
}
.account-auth__remember span {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}
.account-auth__submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  letter-spacing: 0.02em;
  background: #44ba7f;
  color: #ffffff;
}
.account-auth__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 10, 0, 0.25);
}
.account-auth__submit:active {
  transform: translateY(0);
  box-shadow: none;
}
.account-auth__note {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252;
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 12px 14px;
  background: #daf4cf;
  border-radius: 8px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #44ba7f;
  margin-bottom: 16px;
  padding: 0;
}

.woocommerce-privacy-policy-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #7c7c7c;
  line-height: 1.6;
  margin: 12px 0 8px;
}
.woocommerce-privacy-policy-text a {
  color: #44ba7f;
}

.portersgrocery-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #44ba7f;
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}
.portersgrocery-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 10, 0, 0.2);
  opacity: 0.8;
}
.portersgrocery-btn--full {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.portersgrocery-back-link {
  display: inline-block;
  margin-top: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252 !important;
  text-decoration: none;
}
.portersgrocery-back-link:hover {
  color: #44ba7f;
}
.portersgrocery-back-link--center {
  display: block;
  text-align: center;
}

.portersgrocery-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
  color: #7c7c7c;
}
.portersgrocery-empty svg {
  stroke: #7c7c7c;
  opacity: 0.5;
}
.portersgrocery-empty p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #525252;
  font-weight: 600;
  margin: 0;
}

.portersgrocery-orders__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.15s ease;
}
.portersgrocery-orders__row:first-child {
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .portersgrocery-orders__row {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.portersgrocery-orders__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.portersgrocery-orders__number {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
.portersgrocery-orders__date {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #525252;
}
.portersgrocery-orders__mid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}
@media (max-width: 768px) {
  .portersgrocery-orders__mid {
    text-align: left;
  }
}
.portersgrocery-orders__items {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #525252;
}
.portersgrocery-orders__total {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}
.portersgrocery-orders__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.portersgrocery-orders__status {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.portersgrocery-orders__status--processing {
  background: rgba(42, 157, 143, 0.1);
  color: #44ba7f;
}
.portersgrocery-orders__status--completed {
  background: #44ba7f;
  color: #ffffff;
}
.portersgrocery-orders__status--on-hold {
  background: rgba(0, 0, 0, 0.05);
  color: #525252;
}
.portersgrocery-orders__status--cancelled, .portersgrocery-orders__status--failed {
  background: #e63946;
  color: #ffffff;
}
.portersgrocery-orders__status--pending {
  background: rgba(0, 0, 0, 0.05);
  color: #44ba7f;
}
.portersgrocery-orders__status--refunded {
  background: #daf4cf;
  color: #525252;
}
.portersgrocery-orders__view {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1.5px solid #44ba7f;
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #44ba7f;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.portersgrocery-orders__view:hover {
  background: #44ba7f;
  color: #ffffff;
}
.portersgrocery-orders__pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.portersgrocery-orders__page-btn {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.portersgrocery-orders__page-btn:hover {
  opacity: 0.7;
}

.portersgrocery-view-order__banner {
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
  background: #effff7;
  border-left: 4px solid #44ba7f;
}
.portersgrocery-view-order__banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.portersgrocery-view-order__banner-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252 !important;
  margin: 0;
}
.portersgrocery-view-order__section {
  margin-bottom: 32px;
}
.portersgrocery-view-order__section-title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000 !important;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.portersgrocery-view-order__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.portersgrocery-view-order__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
}
.portersgrocery-view-order__item:last-child {
  border-bottom: none;
}
.portersgrocery-view-order__item-img {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}
.portersgrocery-view-order__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portersgrocery-view-order__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.portersgrocery-view-order__item-name {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
.portersgrocery-view-order__item-qty {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  color: #525252;
}
.portersgrocery-view-order__item-total {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}
.portersgrocery-view-order__meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .portersgrocery-view-order__meta-grid {
    grid-template-columns: 1fr;
  }
}
.portersgrocery-view-order__totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portersgrocery-view-order__total-row {
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252;
}
.portersgrocery-view-order__total-row--grand {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid #e0e0e0;
}
.portersgrocery-view-order__address {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.8;
  font-style: normal;
}
.portersgrocery-view-order__notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.portersgrocery-view-order__note {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 14px 18px;
}
.portersgrocery-view-order__note-date {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #525252;
  margin-bottom: 6px;
}
.portersgrocery-view-order__back {
  margin-top: 8px;
}

.portersgrocery-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .portersgrocery-addresses {
    grid-template-columns: 1fr;
  }
}
.portersgrocery-addresses__card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  background: #ffffff;
}
.portersgrocery-addresses__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.portersgrocery-addresses__card-title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000000 !important;
  margin: 0;
}
.portersgrocery-addresses__edit {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000 !important;
  text-decoration: none;
  padding: 5px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.portersgrocery-addresses__edit:hover {
  background: #44ba7f;
  color: #ffffff !important;
}
.portersgrocery-addresses__address {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.8;
  font-style: normal;
}
.portersgrocery-addresses__empty {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #7c7c7c;
  font-style: italic;
}

.portersgrocery-edit-address__title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000 !important;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.portersgrocery-edit-address__fields {
  margin-bottom: 28px;
}
.portersgrocery-edit-address__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.portersgrocery-edit-account__section {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.portersgrocery-edit-account__section:last-of-type {
  border-bottom: none;
}
.portersgrocery-edit-account__section-title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000 !important;
}
.portersgrocery-edit-account__section-sub {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.875rem;
  color: #525252 !important;
  margin: 0 0 20px;
}
.portersgrocery-edit-account__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .portersgrocery-edit-account__row {
    grid-template-columns: 1fr;
  }
}
.portersgrocery-edit-account__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.portersgrocery-edit-account__field label {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.portersgrocery-edit-account__field label span {
  color: #e63946;
  margin-left: 2px;
}
.portersgrocery-edit-account__input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #525252;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.portersgrocery-edit-account__input:focus {
  outline: none;
  border-color: #44ba7f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(88, 10, 0, 0.08);
}
.portersgrocery-edit-account__input::placeholder {
  color: #aaa;
  opacity: 1;
}
.portersgrocery-edit-account__hint {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  color: #7c7c7c;
  margin-top: 5px;
}
.portersgrocery-edit-account__actions {
  padding-top: 8px;
}

.portersgrocery-lost-password {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.portersgrocery-lost-password__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: #44ba7f;
  opacity: 0.6;
}
.portersgrocery-lost-password__title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #44ba7f;
  margin: 0 0 8px;
}
.portersgrocery-lost-password__sub {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #daf4cf;
  line-height: 1.6;
  margin: 0 0 32px;
}
.portersgrocery-lost-password__form {
  text-align: left;
}
.portersgrocery-lost-password__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.portersgrocery-lost-password__field label {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #44ba7f;
  margin-bottom: 7px;
}
.portersgrocery-lost-password__input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  color: #44ba7f;
  background: #f8f8f8;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.portersgrocery-lost-password__input:focus {
  outline: none;
  border-color: #44ba7f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(88, 10, 0, 0.08);
}
.portersgrocery-lost-password__input::placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.portersgrocery-order-details__section {
  margin-bottom: 32px;
}
.portersgrocery-order-details__section-title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #44ba7f;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.portersgrocery-order-details__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.portersgrocery-order-details__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.portersgrocery-order-details__item:last-child {
  border-bottom: none;
}
.portersgrocery-order-details__item-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}
.portersgrocery-order-details__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portersgrocery-order-details__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portersgrocery-order-details__item-name {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #44ba7f;
}
.portersgrocery-order-details__item-name a {
  color: #44ba7f;
  text-decoration: none;
}
.portersgrocery-order-details__item-name a:hover {
  text-decoration: underline;
}
.portersgrocery-order-details__item-qty {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  color: #7c7c7c;
}
.portersgrocery-order-details__purchase-note {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  color: #daf4cf;
  margin-top: 4px;
}
.portersgrocery-order-details__item-total {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #44ba7f;
  white-space: nowrap;
  flex-shrink: 0;
}
.portersgrocery-order-details__totals {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.portersgrocery-order-details__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #daf4cf;
}
.portersgrocery-order-details__total-row--grand {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #44ba7f;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid #e0e0e0;
}
.portersgrocery-order-details__note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #daf4cf;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
}
.portersgrocery-order-details__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.portersgrocery-btn--sm {
  padding: 9px 20px;
  font-size: 0.75rem;
}

.portersgrocery-order-addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
.portersgrocery-order-addresses--split {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .portersgrocery-order-addresses--split {
    grid-template-columns: 1fr;
  }
}
.portersgrocery-order-addresses__card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 22px 24px;
  background: #f8f8f8;
}
.portersgrocery-order-addresses__title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #44ba7f;
  margin: 0 0 12px;
}
.portersgrocery-order-addresses__address {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #daf4cf;
  line-height: 1.8;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.portersgrocery-order-addresses__phone, .portersgrocery-order-addresses__email {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  color: #7c7c7c;
  margin-top: 4px;
}

.portersgrocery-rewards {
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #000000;
}
.portersgrocery-rewards__header {
  margin-bottom: 2.5rem;
}
.portersgrocery-rewards__title {
  margin: 0 0 0.75rem;
  font-family: "Telugu MN", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  color: #000000;
}
.portersgrocery-rewards__description {
  max-width: 600px;
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  color: #525252 !important;
  font-size: 1rem;
  line-height: 1.4;
}
.portersgrocery-rewards__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.portersgrocery-rewards__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  transition: all 0.2s ease;
}
.portersgrocery-rewards__stat:hover {
  border-color: rgba(68, 186, 127, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.portersgrocery-rewards__stat-label {
  margin-bottom: 0.75rem;
  color: #525252;
  font-size: 0.875rem;
  font-weight: 500;
}
.portersgrocery-rewards__stat-value {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #44ba7f;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.portersgrocery-rewards__selector {
  margin-bottom: 2rem;
}
.portersgrocery-rewards__selector-label {
  display: block;
  margin-bottom: 0.75rem;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
}
.portersgrocery-rewards__selector-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.portersgrocery-rewards__selector-option {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #000000;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.portersgrocery-rewards__selector-option strong {
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.portersgrocery-rewards__selector-option span {
  color: #525252;
  font-size: 0.875rem;
  line-height: 1.4;
}
.portersgrocery-rewards__selector-option:hover {
  border-color: rgba(68, 186, 127, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.portersgrocery-rewards__selector-option:focus-visible {
  outline: 2px solid #44ba7f;
  outline-offset: 3px;
}
.portersgrocery-rewards__selector-option.is-active {
  background: #44ba7f;
  border-color: #44ba7f;
  box-shadow: 0 0 0 1px rgba(68, 186, 127, 0.1);
}
.portersgrocery-rewards__selector-option.is-active strong,
.portersgrocery-rewards__selector-option.is-active span {
  color: #ffffff;
}
.portersgrocery-rewards__card {
  position: relative;
  padding: 2rem;
  background: #effff7;
  border: 1px solid rgba(68, 186, 127, 0.18);
  border-radius: 16px;
  overflow: hidden;
}
.portersgrocery-rewards__card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.portersgrocery-rewards__card-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #525252;
  font-size: 0.875rem;
  font-weight: 500;
}
.portersgrocery-rewards__card-title {
  margin: 0;
  font-family: "Telugu MN", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}
.portersgrocery-rewards__progress {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.portersgrocery-rewards__progress-track {
  width: 100%;
  height: 12px;
  background: #ffffff;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(68, 186, 127, 0.1);
}
.portersgrocery-rewards__progress-bar {
  height: 100%;
  background: #44ba7f;
  border-radius: inherit;
  transition: width all 0.4s ease;
}
.portersgrocery-rewards__progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  color: #525252;
  font-size: 0.875rem;
  line-height: 1.4;
}
.portersgrocery-rewards__progress-info span:last-child {
  color: #44ba7f;
  font-weight: 600;
}
.portersgrocery-rewards__reward {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(68, 186, 127, 0.15);
}
.portersgrocery-rewards__reward-label {
  display: block;
  margin-bottom: 1rem;
  color: #525252;
  font-size: 0.875rem;
  font-weight: 600;
}
.portersgrocery-rewards__reward-options {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.portersgrocery-rewards__reward-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
}
.portersgrocery-rewards__reward-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #daf4cf;
  border-radius: 9999px;
  font-size: 1.125rem;
}
.portersgrocery-rewards__or {
  color: #525252;
  font-size: 0.875rem;
  font-weight: 500;
}
.portersgrocery-rewards__remaining {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border-left: 3px solid #44ba7f;
  border-radius: 4px;
  font-family: "Poppins", sans-serif !important;
  color: #525252 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}
.portersgrocery-rewards__remaining strong {
  color: #44ba7f;
  font-weight: 700;
}
.portersgrocery-rewards__remaining--complete {
  background: #daf4cf;
  border-left-color: #2a9d8f;
  color: #000000;
}
.portersgrocery-rewards__remaining--complete strong {
  color: #2a9d8f;
}
.portersgrocery-rewards__redeem-form {
  margin-top: 1.5rem;
}
.portersgrocery-rewards__redeem-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 8px;
  background: #44ba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.portersgrocery-rewards__redeem-button:hover {
  opacity: 0.8;
}
.portersgrocery-rewards__redeem-button:focus-visible {
  outline: 2px solid #44ba7f;
  outline-offset: 3px;
}
@media (max-width: 768px) {
  .portersgrocery-rewards__title {
    font-size: 2.188rem;
  }
  .portersgrocery-rewards__card {
    padding: 1.5rem;
  }
  .portersgrocery-rewards__card-header {
    margin-bottom: 1.5rem;
  }
  .portersgrocery-rewards__selector-option {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .portersgrocery-rewards__header {
    margin-bottom: 2rem;
  }
  .portersgrocery-rewards__title {
    font-size: 1.563rem;
  }
  .portersgrocery-rewards__description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .portersgrocery-rewards__stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .portersgrocery-rewards__stat {
    min-height: auto;
    padding: 1.25rem;
  }
  .portersgrocery-rewards__stat-value {
    font-size: 1.5rem;
  }
  .portersgrocery-rewards__selector {
    margin-bottom: 1.5rem;
  }
  .portersgrocery-rewards__selector-options {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .portersgrocery-rewards__selector-option {
    padding: 1rem;
  }
  .portersgrocery-rewards__card {
    padding: 1.25rem;
  }
  .portersgrocery-rewards__card-header {
    flex-direction: column;
    gap: 1rem;
  }
  .portersgrocery-rewards__card-title {
    font-size: 1.5rem;
  }
  .portersgrocery-rewards__progress-track {
    height: 10px;
  }
  .portersgrocery-rewards__progress-info {
    font-size: 0.75rem;
  }
  .portersgrocery-rewards__reward-options {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .portersgrocery-rewards__reward-option {
    width: 100%;
  }
  .portersgrocery-rewards__or {
    align-self: center;
  }
  .portersgrocery-rewards__remaining {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
  .portersgrocery-rewards__redeem-button {
    width: 100%;
  }
}

.woocommerce-MyAccount-navigation-link--rewards .account-nav__link .account-nav__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 7v15'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 0-5C10 2 12 7 12 7Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0 0-5C14 2 12 7 12 7Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8'/%3E%3Cpath d='M2 7h20v5H2z'/%3E%3Cpath d='M12 7v15'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 1 1 0-5C10 2 12 7 12 7Z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 1 0 0-5C14 2 12 7 12 7Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.woocommerce-MyAccount-navigation-link--rewards .account-nav__link .account-nav__icon svg {
  display: none;
}

.checkout-main {
  background: #ffffff;
  min-height: 80vh;
  padding: 50px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  grid-template-areas: "notice notice" "left right";
  gap: 60px;
  align-items: start;
}
.checkout-grid > .woocommerce-NoticeGroup-checkout {
  grid-area: notice;
  width: 100%;
  min-width: 0;
  color: #e63946;
}
.checkout-grid > .checkout-left {
  grid-area: left;
  min-width: 0;
}
.checkout-grid > .checkout-right {
  grid-area: right;
  min-width: 0;
}
@media (max-width: 960px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "notice" "left" "right";
    gap: 32px;
    padding: 20px;
  }
}

.checkout-section__heading {
  font-family: "Telugu MN", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 18px;
}
@media (max-width: 768px) {
  .checkout-section__heading {
    font-size: 1.563rem;
  }
}

.checkout-section__block {
  margin-bottom: 32px;
}

.checkout-section__note {
  font-family: "Poppins", sans-serif;
  font-size: 1.094rem;
  color: #2a2a2a;
  margin: 6px 0 0;
}
.checkout-section__note a {
  color: #2a2a2a;
  text-decoration: underline;
}

.checkout-fields__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.checkout-fields__row > .form-row > .checkout-inline-error-message {
  color: #e63946;
}
@media (max-width: 768px) {
  .checkout-fields__row {
    grid-template-columns: 1fr;
  }
}

.form-row > .checkout-inline-error-message {
  color: #e63946;
}

.woocommerce-checkout .form-row {
  padding: 0;
  margin: 20px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .woocommerce-checkout .form-row {
    margin: 10px 0;
  }
}
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  float: none;
  width: 100%;
  clear: none;
  margin: 0;
}
.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_last_name_field,
.woocommerce-checkout #billing_city_field,
.woocommerce-checkout #billing_state_field,
.woocommerce-checkout #billing_postcode_field,
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #delivery_location_field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .woocommerce-checkout #billing_first_name_field,
  .woocommerce-checkout #billing_last_name_field,
  .woocommerce-checkout #billing_city_field,
  .woocommerce-checkout #billing_state_field,
  .woocommerce-checkout #billing_postcode_field,
  .woocommerce-checkout #billing_phone_field,
  .woocommerce-checkout #billing_email_field,
  .woocommerce-checkout #delivery_location_field {
    margin: 10px 0;
  }
}
.woocommerce-checkout label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 8px;
}
.woocommerce-checkout label[for=billing_country],
.woocommerce-checkout label[for=billing_state] {
  margin-bottom: 8px;
}
.woocommerce-checkout label.checkbox,
.woocommerce-checkout label[for*=terms],
.woocommerce-checkout label[for*=ship] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  color: #000000;
  cursor: pointer;
  margin-bottom: 8px;
}
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: "Poppins", sans-serif !important;
  font-size: 1.125rem;
  color: #000000 !important;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  outline: none;
  border-color: #44ba7f;
  background: #fff;
}
.woocommerce-checkout input.input-text::placeholder,
.woocommerce-checkout select::placeholder,
.woocommerce-checkout textarea::placeholder {
  color: #999;
  opacity: 1;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
}
.woocommerce-checkout select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a4a4a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.woocommerce-checkout .select2-container {
  width: 100% !important;
}
.woocommerce-checkout .select2-container .select2-selection--single {
  height: auto;
  padding: 12px 40px 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a4a4a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s ease;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #000000;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  display: none;
}
.woocommerce-checkout .select2-container.select2-container--open .select2-selection--single, .woocommerce-checkout .select2-container.select2-container--focus .select2-selection--single {
  border-color: #000000;
  background-color: #fff;
  outline: none;
}
.woocommerce-checkout textarea {
  resize: vertical;
  min-height: 100px;
}
.woocommerce-checkout .checkout-payment-block .woocommerce-checkout-review-order-table {
  display: none;
}
.woocommerce-checkout #payment {
  background: transparent;
  border: none;
  padding: 0;
}
.woocommerce-checkout #payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.woocommerce-checkout #payment .wc_payment_method {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.woocommerce-checkout #payment .wc_payment_method:last-child {
  border-bottom: none;
}
.woocommerce-checkout #payment .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 0;
}
.woocommerce-checkout #payment .wc_payment_method > label img {
  height: 22px;
  width: auto;
  margin-left: auto;
  margin-right: 4px;
  object-fit: contain;
}
.woocommerce-checkout #payment .wc_payment_method.payment_method_stripe:has(input[type=radio]:checked) > label, .woocommerce-checkout #payment .wc_payment_method.payment_method_stripe_cc:has(input[type=radio]:checked) > label {
  background: #effff7;
}
.woocommerce-checkout #payment .wc_payment_method input[type=radio] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  accent-color: #44ba7f;
  cursor: pointer;
}
.woocommerce-checkout #payment .payment_box {
  padding: 12px 16px 16px;
  background: #effff7;
}
.woocommerce-checkout #payment .payment_box p {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: #525252;
  margin: 0 0 10px;
}
.woocommerce-checkout #payment .payment_box .wc-stripe-upe-element {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  padding: 4px;
  margin-bottom: 0;
}
.woocommerce-checkout #payment .payment_box .wc-stripe-link-authenticated-panel,
.woocommerce-checkout #payment .payment_box #wc-stripe-payment-request-wrapper {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 10px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #000000;
}
.woocommerce-checkout #payment .place-order {
  margin-top: 20px;
  padding: 0;
}
.woocommerce-checkout #payment .place-order #place_order {
  display: block;
  width: 100%;
  padding: 16px;
  background: #44ba7f;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background all 0.2s ease;
}
.woocommerce-checkout #payment .place-order #place_order:hover {
  opacity: 0.8;
}
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.75rem;
  color: #daf4cf;
  margin-bottom: 14px;
}
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper a {
  color: #44ba7f;
  text-decoration: underline;
}
.woocommerce-checkout .return-to-shop,
.woocommerce-checkout a.return-to-cart,
.woocommerce-checkout p.return-to-cart {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #44ba7f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce-checkout .return-to-shop:hover,
.woocommerce-checkout a.return-to-cart:hover,
.woocommerce-checkout p.return-to-cart:hover {
  opacity: 0.7;
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #e63946;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
  list-style: none;
}
.woocommerce-checkout a.return-to-cart {
  display: inline-block;
  margin-top: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #525252;
  text-decoration: underline;
}
.woocommerce-checkout a.return-to-cart:hover {
  color: #44ba7f;
}

.checkout-right {
  position: sticky;
  top: 40px;
}
@media (max-width: 960px) {
  .checkout-right {
    position: static;
    order: -1;
  }
}

.checkout-summary {
  background: #fcfcfc;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  padding: 1.25rem;
}
.checkout-summary__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.checkout-summary__divider {
  border: none;
  border-top: 0.1px solid #c9c9c9;
  margin: 0.85rem 0;
}
.checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}
.checkout-summary__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.checkout-summary__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.checkout-summary__item-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
}
.checkout-summary__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.checkout-summary__item-info {
  flex: 1;
  min-width: 0;
}
.checkout-summary__item-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 2px;
}
.checkout-summary__item-price {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 6px;
}
.checkout-summary__totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #000000;
}
.checkout-summary__row--total {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-top: 1px solid #e0e0e0;
  padding-top: 12px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-right {
    position: static;
    order: -1;
  }
}
#wc-stripe-express-checkout-element-wrapper,
.wc-stripe-express-checkout-wrapper,
#wc-stripe-express-checkout-wrapper {
  margin-bottom: 28px;
}

.wc-stripe-express-checkout-divider,
#wc-stripe-express-checkout-element-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #daf4cf;
  margin-bottom: 12px;
}
.wc-stripe-express-checkout-divider::before, .wc-stripe-express-checkout-divider::after,
#wc-stripe-express-checkout-element-label::before,
#wc-stripe-express-checkout-element-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

#wc-stripe-express-checkout-element {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.wc-stripe-express-checkout-section {
  margin-bottom: 28px;
}
.wc-stripe-express-checkout-section__separator {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #daf4cf;
  margin-top: 16px;
}
.wc-stripe-express-checkout-section__separator::before, .wc-stripe-express-checkout-section__separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.checkout-login {
  margin: 28px 0 24px;
}
@media (max-width: 768px) {
  .checkout-login {
    margin: 20px 0 16px;
  }
}
.checkout-login__prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: #effff7;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .checkout-login__prompt {
    padding: 14px 16px;
  }
}
.checkout-login__prompt-text {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #44ba7f;
}
.checkout-login__toggle {
  background: none;
  border: none;
  padding: 0;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #44ba7f;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.checkout-login__toggle:hover {
  opacity: 0.7;
}
.checkout-login__form {
  margin-top: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .checkout-login__form {
    padding: 16px;
  }
}
.checkout-login__form .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #44ba7f;
  cursor: pointer;
  margin: 0;
}
.checkout-login__form .woocommerce-form-login__rememberme input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #44ba7f;
  margin: 0;
}
.checkout-login__form .form-row {
  float: none;
  width: 100%;
  margin: 0 0 14px;
}
.checkout-login__form .form-row:last-of-type {
  margin-bottom: 0;
}
.checkout-login__form .woocommerce-form-login__submit {
  display: inline-block;
  padding: 12px 28px;
  background: #44ba7f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background all 0.2s ease;
}
@media (max-width: 768px) {
  .checkout-login__form .woocommerce-form-login__submit {
    width: 100%;
  }
}
.checkout-login__form .woocommerce-form-login__submit:hover {
  opacity: 0.8;
}
.checkout-login__form .lost_password {
  margin: 4px 0 0;
  font-size: 0.75rem;
}
.checkout-login__form .lost_password a {
  color: #daf4cf;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-login__form .lost_password a:hover {
  color: #44ba7f;
}

.thankyou-main {
  background: #ffffff;
  min-height: 80vh;
  padding: 60px 0 100px;
}
@media (max-width: 768px) {
  .thankyou-main {
    padding: 24px 16px 48px;
  }
}

.thankyou-header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .thankyou-header {
    margin-bottom: 24px;
    text-align: center;
  }
}
.thankyou-header__title {
  font-family: "Telugu MN", sans-serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .thankyou-header__title {
    font-size: 1.5rem;
    margin: 0 0 6px;
  }
}
.thankyou-header__title--failed {
  color: #e63946;
}
.thankyou-header__sub {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #525252;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .thankyou-header__sub {
    font-size: 0.875rem;
  }
}

.thankyou-meta {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 0.5px solid rgba(88, 10, 0, 0.15);
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .thankyou-meta {
    flex-direction: column;
    gap: 0;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(88, 10, 0, 0.12);
    border-radius: 8px;
    background: #effff7;
  }
}
.thankyou-meta__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .thankyou-meta__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(88, 10, 0, 0.1);
  }
  .thankyou-meta__item:first-child {
    padding-top: 0;
  }
  .thankyou-meta__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.thankyou-meta__label {
  font-family: "Telugu MN", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  font-weight: 600;
}
@media (max-width: 768px) {
  .thankyou-meta__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.8;
  }
}
.thankyou-meta__value {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #525252;
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 768px) {
  .thankyou-meta__value {
    font-size: 0.875rem;
    font-weight: 400;
    text-align: right;
  }
}

.thankyou-details {
  background: #effff7;
  border-radius: 8px;
  padding: 32px 40px 40px;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .thankyou-details {
    padding: 20px 16px;
    margin: 0 0 24px;
  }
}
.thankyou-details__title {
  font-family: "Telugu MN", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .thankyou-details__title {
    font-size: 1.25rem;
    margin: 0 0 16px;
  }
}

.thankyou-table__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
}
.thankyou-table__head span {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 768px) {
  .thankyou-table__head span {
    font-size: 0.875rem;
  }
}
.thankyou-table__divider {
  border: none;
  border-top: 0.5px solid #e0e0e0;
  margin: 0;
}
.thankyou-table__divider--top {
  border-top-width: 1px;
  border-top-color: #e0e0e0;
}
.thankyou-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}
@media (max-width: 768px) {
  .thankyou-table__row {
    padding: 14px 0;
    gap: 12px;
  }
}
.thankyou-table__row--total {
  padding-top: 14px;
  padding-bottom: 0;
}
.thankyou-table__row--total .thankyou-table__col-product strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #525252 !important;
}
.thankyou-table__row--total .thankyou-table__col-total {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
@media (max-width: 768px) {
  .thankyou-table__row--total .thankyou-table__col-total {
    font-size: 1rem;
    font-weight: 600;
  }
}
.thankyou-table__col-product {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  color: #525252;
  font-weight: 500;
}
@media (max-width: 768px) {
  .thankyou-table__col-product {
    gap: 8px;
  }
}
.thankyou-table__col-total {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  color: #525252;
  font-weight: 600;
  flex-shrink: 0;
  text-align: right;
}
@media (max-width: 768px) {
  .thankyou-table__col-total {
    font-size: 0.875rem;
  }
}
.thankyou-table__product-name {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #525252;
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 768px) {
  .thankyou-table__product-name {
    font-size: 0.875rem;
  }
}
.thankyou-table__product-qty {
  font-family: "Telugu MN", sans-serif;
  font-size: 1rem;
  color: #525252;
  font-weight: 400;
  flex-shrink: 0;
  padding: 2px 8px;
  background: rgba(58, 7, 0, 0.06);
  border-radius: 999px;
}
@media (max-width: 768px) {
  .thankyou-table__product-qty {
    font-size: 0.75rem;
    padding: 1px 7px;
  }
}
.thankyou-table__product-qty::before {
  content: "× ";
  opacity: 0.55;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .thankyou-actions {
    margin-top: 4px;
  }
}
.thankyou-actions .btn--outline {
  display: inline-block;
  padding: 12px 40px;
  background: #44ba7f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .thankyou-actions .btn--outline {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.875rem;
  }
}
.thankyou-actions .btn--outline:hover {
  background: #44ba7f;
  color: #ffffff;
}

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