@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #121212;
  background-color: #ffffff;
  letter-spacing: -0.3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.skip-to-content-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

button {
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
}

/* Announcement Bar */
.announcement-bar {
  background: #121212;
  padding: 8px 20px;
  text-align: center;
}

.announcement-bar p {
  color: #fdfcf9;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

/* Header */
.header-wrapper {
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}

.header__heading-link {
  display: block;
}

.header__heading-logo {
  width: 170px;
  height: auto;
}

.header__inline-menu {
  display: none;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  text-decoration: none;
  width: 44px;
  height: 44px;
}

.icon-hamburger {
  width: 24px;
  height: 24px;
}

.icon-profile {
  width: 34px;
  height: 34px;
}

.icon-cart-empty-custom {
  width: 24px;
  height: 24px;
}

.menu-drawer {
  display: none;
}

#menu-drawer-toggle:checked~.menu-drawer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.menu-drawer__inner {
  width: 80%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
}

.menu-drawer__navigation ul {
  list-style: none;
}

.menu-drawer__menu-item {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: #121212;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

@media (min-width: 990px) {
  .header__inline-menu {
    display: block;
  }

  .header__icon--menu {
    display: none;
  }

  .list-menu--inline {
    display: flex;
    list-style: none;
    gap: 5px;
  }

  .header__menu-item {
    padding: 12px 15px;
    text-decoration: none;
    color: #121212;
    font-weight: 500;
    font-size: 15px;
  }

  .header {
    padding: 20px 50px;
  }
}

/* Footer */
.footer {
  background: #652dc1;
  color: #ffffff;
  padding: 36px 0;
  margin-top: 0;
}

.footer__blocks-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-block__heading {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-block__details-content {
  list-style: none;
}

.footer-block__details-content li {
  margin-bottom: 10px;
}

.footer-block__details-content a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
}

.footer-block__image-wrapper {
  max-width: 290px;
}

.footer-block__image-wrapper img {
  width: 100%;
  height: auto;
}

.footer__content-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 30px;
  text-align: center;
}

.footer__copyright {
  font-size: 13px;
  opacity: 0.8;
}

.list-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin-bottom: 20px;
}

.policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 15px;
  margin-top: 15px;
}

.policies a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

@media (min-width: 750px) {
  .footer__blocks-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Section */
.shop-product-section {
  background: #fdfcf9;
  padding: 10px 8px;
}

.shop-product-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shop-product-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.shop-carousel-container {
  flex: 0 0 55%;
  max-width: 55%;
}

.shop-product-info {
  flex: 0 0 calc(45% - 20px);
  max-width: calc(45% - 20px);
}

.shop-product-carousel {
  width: 90%;
  margin: 0 auto;
}

.shop-main-image-wrapper {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
}

.shop-image-container {
  position: relative;
  padding-bottom: 100%;
}

.shop-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.shop-main-image.active {
  display: block;
}

.shop-thumbnails-wrapper {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.shop-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-thumbnails::-webkit-scrollbar {
  display: none;
}

.shop-thumbnail {
  flex: 0 0 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f8f8f8;
}

.shop-thumbnail.active {
  border-color: #652dc1;
}

.shop-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.shop-product-title {
  font-size: 28px !important;
  font-weight: 700;
  line-height: 1.2;
  margin: 8px 0 0;
  color: #121212;
  letter-spacing: -1.3px;
}

.trustpilot-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
}

.trustpilot-text {
  font-size: 15px;
  font-weight: 600;
}

.trustpilot-image {
  width: 60px;
}

.trustpilot-logo {
  width: 70px;
}

.trustpilot-rating {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.divider-line {
  border: none;
  border-top: 3px solid #e0e0e0;
  margin: 10px 0;
}

.shop-stock-indicator {
  display: flex;
  align-items: center;
  padding: 1px 10px;
  margin: -5px 0 5px;
  border-radius: 50px;
  width: fit-content;
}

.shop-stock-dot-container {
  position: relative;
  margin-right: 12px;
}

.shop-stock-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
}

.shop-stock-dot.animated-dot {
  position: absolute;
  top: 0;
  left: 0;
  animation: stock-pulse 2s infinite;
}

.shop-stock-text {
  font-size: 15px;
  color: #000;
}

@keyframes stock-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(2.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.ready-ship {
  display: flex;
  align-items: center;
  padding: 1px 10px;
  margin: 0 0 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00b67a;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00b67a;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(2.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.product-bullet-list {
  margin: 10px 0;
}

.product-bullet-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-bullet-icon svg {
  width: 20px;
  height: 20px;
  fill: #652dc1;
}

.product-bullet-text {
  font-size: 17px;
  color: #121212;
}

.shop-add-to-cart-wrapper {
  width: 100%;
  margin: 15px 0;
}

.shop-add-to-cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 10px;
  background: #ffc845;
  color: #2a2a35;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  text-transform: uppercase;
  text-decoration: none;
}

.guarantee-container {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0;
  font-size: 11px;
  color: #121212;
}

.payment-badge {
  text-align: center;
  margin-top: 0;
}

.payment-badge img {
  max-width: 100%;
  height: auto;
}

.happy-customersV2 {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 5px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
  width: 100%;
}

.avatarsV2 {
  display: flex;
  margin-right: 10px;
}

.avatarV2 {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -7px;
  object-fit: cover;
}

.textV2 {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.verifiedV2 {
  width: 13px;
  height: 13px;
}

/* Scrolling Features Bar */
.scrolling-features {
  background: #ffc845;
  padding: 15px 0;
  overflow: hidden;
}

.features-track {
  display: flex;
  animation: scroll 20s linear infinite;
  width: fit-content;
}

.feature-items {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 30px;
  white-space: nowrap;
}

.feature-icon {
  margin-right: 10px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

.feature-item-separator {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Image Text Sections */
.image-text-section {
  padding: 30px 0;
  background: #fdfcf9;
}

.image-text-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.image-text-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.image-text-heading {
  font-size: 36px;
  font-weight: 700;
  color: #121212;
  line-height: 1.2;
  letter-spacing: -1.3px;
}

.accent-text {
  color: #652dc1;
}

.image-text-body {
  color: #121212;
  font-size: 18px;
  line-height: 1.6;
}

.image-text-body p {
  margin-bottom: 15px;
}

.button {
  display: inline-block;
  padding: 15px 30px;
  background: #652dc1;
  color: #fdfcf9;
  text-decoration: none;
  font-weight: 700;
  border-radius: 26px;
  font-size: 18px;
  text-align: center;
}

.button:hover {
  background: #4f2398;
}

@media (min-width: 768px) {
  .image-text-content {
    flex-direction: row;
    align-items: center;
  }

  .image-column,
  .text-column {
    width: 50%;
  }
}

/* Reviews Section */
.reviews-section {
  background: #fff;
  padding: 15px 20px 60px;
}

.reviewSwiper {
  overflow: hidden;
  padding: 0 20px;
  max-width: 70%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  width: auto !important;
}

.review-image {
  width: 135px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

.content-wrapper {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.main-title {
  font-size: 29px;
  font-weight: 700;
  color: #000;
  margin: 20px 0;
}

.rating-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.star-icons {
  display: flex;
}

.rating-text {
  font-size: 10px;
  color: #000;
}

@media (min-width: 768px) {
  .reviews-section .new-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .review-image {
    width: 240px;
    height: 426px;
  }
}

/* Satisfaction Guarantee */
.guarantee-section__mobile {
  display: block;
  padding: 25px 15px 30px;
  background: linear-gradient(90deg, #e2beff, #f3e7fd);
}

.guarantee-section__photos-mobile {
  display: flex;
  justify-content: center;
  position: relative;
  height: 180px;
  margin-bottom: -40px;
}

.polaroid-photo {
  position: absolute;
  width: 80px;
  height: 96px;
  background: white;
  padding: 8px 8px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.polaroid-photo-1 {
  transform: rotate(-8deg);
  left: 0;
  z-index: 1;
}

.polaroid-photo-2 {
  transform: rotate(0deg);
  left: 50%;
  margin-left: -40px;
  z-index: 2;
  top: 10px;
}

.polaroid-photo-4 {
  transform: rotate(8deg);
  right: 0;
  z-index: 1;
}

.polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.guarantee-section__content {
  text-align: center;
  padding: 20px;
}

.shield-icon {
  color: #652dc1;
  margin-bottom: 10px;
}

.guarantee-section__heading {
  font-size: 26px;
  margin-bottom: 15px;
}

.guarantee-section__description {
  font-size: 12px;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.guarantee-section__cta {
  display: block;
  padding: 15px;
  background: #652dc1;
  color: #fdfcf9;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 15px;
}

.guarantee-section__benefits {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 4px;
}

.checkmark-icon {
  color: #652dc1;
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {

  .guarantee-section__desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
  }
}

/* FAQ Section */
.store-faq-section {
  padding: 60px 0;
  background: #fdfcf9;
}

.faq-flex-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.store-faq-heading {
  font-size: 36px;
  color: #121212;
  margin-bottom: 15px;
}

.faq-container {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fdfcf9;
  cursor: pointer;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  padding: 0 20px;
  background: #fdfcf9;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s;
}

@media (min-width: 750px) {
  .faq-flex-container {
    flex-direction: row;
  }

  .faq-header-column,
  .faq-content-column {
    flex: 0 0 48%;
  }
}

/* Sticky Add to Cart */
.sticky-add-to-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fdfcf9;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s;
  z-index: 1000;
}

.sticky-add-to-cart.show {
  transform: translateY(0);
}

.sticky-add-to-cart__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.desktop-view {
  display: none;
}

.mobile-view {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-button-wrapper {
  width: 100%;
}

.sticky-add-to-cart__button {
  width: 100%;
  max-width: 300px;
  padding: 15px 20px;
  background: #ffc845;
  color: #2a2a35;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.mobile-shipping-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  font-size: 13px;
}

.delivery-icon {
  margin-right: 5px;
  color: #652dc1;
}

.delivery-date {
  color: #652dc1;
  font-weight: 600;
}

@media (min-width: 768px) {
  .mobile-view {
    display: none;
  }

  .desktop-view {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .sticky-add-to-cart__product {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .sticky-add-to-cart__image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
  }

  .sticky-add-to-cart__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .sticky-add-to-cart__title {
    font-size: 14px;
    font-weight: 700;
  }

  .sticky-add-to-cart__stars {
    display: flex;
    margin-right: 8px;
  }

  .sticky-add-to-cart__rating-text {
    font-size: 12px;
  }

  .sticky-add-to-cart__shipping {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  transition: visibility 0.3s;
}

.cart-drawer.active {
  visibility: visible;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.drawer__inner {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  padding: 20px 15px;
  border-bottom: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  font-size: 20px;
  margin: 0;
}

.drawer__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.drawer__inner-empty {
  padding: 20px;
  text-align: center;
}

.cart__empty-text {
  margin: 40px 0;
}
/* Order Form Block */
.order-form-block {
  background: #fdfcf9;
  padding: 40px 20px;
  font-family: "DM Sans", sans-serif;
}

.order-form-container {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 40px rgba(101, 45, 193, 0.08);
  border: 1px solid rgba(226, 190, 255, 0.3);
}

.order-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #121212;
  margin: 0 0 8px 0;
  letter-spacing: -1.3px;
  line-height: 1.2;
}

.order-form-subtitle {
  font-size: 15px;
  color: #4a4a4a;
  margin: 0 0 28px 0;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 16px 16px 8px 16px;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
  color: #121212;
  letter-spacing: -0.3px;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #652dc1;
  box-shadow: 0 0 0 4px rgba(101, 45, 193, 0.1);
}

.form-input:not(:placeholder-shown)+.form-label,
.form-input:focus+.form-label {
  transform: translateY(-12px) scale(0.75);
  color: #652dc1;
  font-weight: 600;
}

.form-label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 16px;
  color: #757575;
  pointer-events: none;
  transition: all 0.2s ease;
  letter-spacing: -0.3px;
  background: transparent;
  transform-origin: left;
}

.form-error {
  font-size: 13px;
  color: #ef4a65;
  margin-top: 6px;
  padding-left: 4px;
  min-height: 18px;
  letter-spacing: -0.3px;
}

.order-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 24px;
  background: #ffc845;
  color: #2a2a35;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.order-form-button:hover {
  background: #ffb820;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 200, 69, 0.3);
}

.order-form-button:active {
  transform: translateY(0);
}

.order-form-button .button-icon {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.order-form-button:hover .button-icon {
  transform: translateX(4px);
}

.form-note {
  font-size: 13px;
  color: #757575;
  text-align: center;
  margin: 12px 0 0 0;
  letter-spacing: -0.3px;
}

/* Thank You Popup */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s ease;
}

.thank-you-popup.active {
  visibility: visible;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.popup-content {
  position: relative;
  background: #ffffff;
  max-width: 400px;
  width: 90%;
  margin: 20px;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(101, 45, 193, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 1px solid rgba(226, 190, 255, 0.5);
}

.thank-you-popup.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  font-size: 20px;
  color: #757575;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background: #e0e0e0;
  color: #121212;
}

.popup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #652dc1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.popup-icon svg {
  width: 36px;
  height: 36px;
}

.popup-title {
  font-size: 28px;
  font-weight: 700;
  color: #121212;
  margin: 0 0 12px 0;
  letter-spacing: -1.3px;
}

.popup-message {
  font-size: 16px;
  color: #4a4a4a;
  margin: 0 0 24px 0;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

#popupEmailDisplay {
  font-weight: 700;
  color: #652dc1;
}

.popup-discount-code {
  background: linear-gradient(135deg, #fdfcf9, #f3e7fd);
  border: 2px dashed #652dc1;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.code-label {
  display: block;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.code-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #652dc1;
  letter-spacing: 2px;
}

.popup-footer {
  font-size: 13px;
  color: #757575;
  margin: 0;
  letter-spacing: -0.3px;
}

/* Error state */
.form-input.error {
  border-color: #ef4a65;
}

.form-input.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 74, 101, 0.1);
}

/* Success state */
.form-input.success {
  border-color: #00b67a;
}
@media (max-width: 576px) {
  .shop-product-layout {
    flex-direction: column-reverse;
  }
    .shop-product-info, .shop-carousel-container {
      max-width: 100%;
      flex: auto;
    }
}
/* Mobile adjustments */
@media (max-width: 480px) {
  .order-form-container {
    padding: 24px 20px;
  }

  .order-form-title {
    font-size: 24px;
  }

  .popup-content {
    padding: 32px 20px;
  }

  .popup-title {
    font-size: 24px;
  }

  .code-value {
    font-size: 28px;
  }
}