* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: linear-gradient(135deg, #2d1b69 0%, #4a2c7a 50%, #6b3fa0 100%);
  background-attachment: fixed;
  position: relative;
  scroll-behavior: smooth;
}

/* Stars background animation */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

.star:nth-child(1) {
  top: 10%;
  left: 20%;
  width: 2px;
  height: 2px;
  animation-delay: 0s;
}
.star:nth-child(2) {
  top: 20%;
  left: 80%;
  width: 1px;
  height: 1px;
  animation-delay: 0.5s;
}
.star:nth-child(3) {
  top: 30%;
  left: 30%;
  width: 3px;
  height: 3px;
  animation-delay: 1s;
}
.star:nth-child(4) {
  top: 40%;
  left: 70%;
  width: 2px;
  height: 2px;
  animation-delay: 1.5s;
}
.star:nth-child(5) {
  top: 60%;
  left: 90%;
  width: 1px;
  height: 1px;
  animation-delay: 2s;
}
.star:nth-child(6) {
  top: 70%;
  left: 10%;
  width: 2px;
  height: 2px;
  animation-delay: 2.5s;
}
.star:nth-child(7) {
  top: 80%;
  left: 50%;
  width: 1px;
  height: 1px;
  animation-delay: 0.8s;
}
.star:nth-child(8) {
  top: 15%;
  left: 60%;
  width: 2px;
  height: 2px;
  animation-delay: 1.2s;
}
.star:nth-child(9) {
  top: 25%;
  left: 40%;
  width: 1px;
  height: 1px;
  animation-delay: 1.8s;
}
.star:nth-child(10) {
  top: 35%;
  left: 85%;
  width: 3px;
  height: 3px;
  animation-delay: 0.3s;
}
.star:nth-child(11) {
  top: 55%;
  left: 15%;
  width: 2px;
  height: 2px;
  animation-delay: 2.2s;
}
.star:nth-child(12) {
  top: 65%;
  left: 75%;
  width: 1px;
  height: 1px;
  animation-delay: 0.7s;
}
.star:nth-child(13) {
  top: 85%;
  left: 25%;
  width: 2px;
  height: 2px;
  animation-delay: 1.4s;
}
.star:nth-child(14) {
  top: 5%;
  left: 45%;
  width: 1px;
  height: 1px;
  animation-delay: 1.9s;
}
.star:nth-child(15) {
  top: 45%;
  left: 95%;
  width: 2px;
  height: 2px;
  animation-delay: 0.6s;
}
.star:nth-child(16) {
  top: 75%;
  left: 35%;
  width: 1px;
  height: 1px;
  animation-delay: 2.1s;
}
.star:nth-child(17) {
  top: 90%;
  left: 65%;
  width: 3px;
  height: 3px;
  animation-delay: 1.1s;
}
.star:nth-child(18) {
  top: 12%;
  left: 75%;
  width: 2px;
  height: 2px;
  animation-delay: 1.6s;
}
.star:nth-child(19) {
  top: 28%;
  left: 55%;
  width: 1px;
  height: 1px;
  animation-delay: 0.9s;
}
.star:nth-child(20) {
  top: 50%;
  left: 5%;
  width: 2px;
  height: 2px;
  animation-delay: 2.3s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Moon */
.moon {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8c8dc 0%, #e6a8d1 50%, #d4a5d8 100%);
  box-shadow: 0 0 60px rgba(248, 200, 220, 0.4),
    inset -20px -20px 0 rgba(212, 165, 216, 0.3);
  animation: moonGlow 4s ease-in-out infinite alternate;
}

@keyframes moonGlow {
  0% {
    box-shadow: 0 0 60px rgba(248, 200, 220, 0.4),
      inset -20px -20px 0 rgba(212, 165, 216, 0.3);
  }
  100% {
    box-shadow: 0 0 80px rgba(248, 200, 220, 0.6),
      inset -20px -20px 0 rgba(212, 165, 216, 0.4);
  }
}

/* Main content */
.main-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 600px;
}

.brand-title {
  font-size: 3.5rem;
  color: white;
  font-weight: 300;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
  animation: titleFadeIn 2s ease-out;
}

.brand-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: subtitleFadeIn 2s ease-out 0.5s both;
}

.brand-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: descriptionFadeIn 2s ease-out 1s both;
}

.enter-button {
  background: linear-gradient(135deg, #6b3fa0 0%, #8a4fbf 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 35px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(107, 63, 160, 0.3);
  animation: buttonFadeIn 2s ease-out 1.5s both;
  position: relative;
  overflow: hidden;
}

.enter-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.enter-button:hover::before {
  left: 100%;
}

.enter-button:hover {
  background: linear-gradient(135deg, #8a4fbf 0%, #a663d4 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(107, 63, 160, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.enter-button:active {
  transform: translateY(-1px);
}

.click-instruction {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  animation: pulseText 2s ease-in-out infinite;
}

/* Showcase section */
.showcase-section {
  position: relative;
  margin-top: 100vh;
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.showcase-title {
  font-size: 2.5rem;
  color: white;
  padding-bottom: 0px;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-style: italic;
}

.showcase-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  line-height: 1.6;
}

.showcase-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 10px;
}

.showcase-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.showcase-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.showcase-item h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 400;
}

.showcase-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  padding: 40px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;

}
.footer-section h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 18px;
  margin-top: 18px;
  font-weight: 400;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.contact-infor {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.contact-infor i {
  margin-right: 10px;
  width: 20px;
}
.contact-info i {
  margin-right: 10px;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Animations */
@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes descriptionFadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseText {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes sparkleEffect {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(0) rotate(360deg);
    opacity: 0;
  }
}

/* Floating elements */
.floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-element:nth-child(5) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}
.floating-element:nth-child(6) {
  top: 5%;
  right: 10%;
  animation-delay: 1s;
}
.floating-element:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}
.floating-element:nth-child(4) {
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Product Showcase Card Style */
.product-image-container {
  background: #e6e6e6;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  min-height: 320px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}

.product-image-container:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
  margin: 0;
  display: block;
  transition: filter 0.3s;
  pointer-events: none;
  touch-action: pan-y;
}

.product-detail-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin: 0;
  margin-bottom: 12px;
}

.product-detail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.08rem;
  border-radius: 24px;
  pointer-events: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.product-image-container:hover .product-detail {
  opacity: 1;
}

.product-label {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: #e0e0e0;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.product-offer-btn {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, transform 0.2s;
  outline: none;
}

.product-offer-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px) scale(1.04);
}
.payment-methods {
 margin-bottom: 20px;
 margin-top: 20px;
}
/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .main-content {
    top: 25%;
    width: 100%;
  }
  .brand-title {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .brand-subtitle {
    font-size: 1.2rem;
  }

  .showcase-grid {
    gap: 30px;
  }

  .product-image-container {
    max-width: 300px;
  }
    .click-instruction {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84% !important;
    height: 0% !important;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: pulseText 2s ease-in-out infinite;
  }
  .floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-element:nth-child(5) {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}
.floating-element:nth-child(6) {
  top: 5%;
  right: 10%;
  animation-delay: 1s;
}
.floating-element:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}
.floating-element:nth-child(4) {
  bottom: 30%;
  right: 15%;
  animation-delay: 3s;
  
}
.footer {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  padding: 40px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  min-height: 110vh;
}
}
@media (max-width: 1024px) {
  .footer-container {
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .footer-container {
    gap: 20px;
  }
  .footer {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  padding: 40px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  min-height: 110vh;
}
}

/* Mobile Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    height: auto;
    padding: 30px 0 20px 0;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 40px 0 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    min-height: 110vh;

  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    padding: 0 15px;
  }
  
  .footer-section {
    margin-bottom: 25px;
  }
  
  .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    margin-top: 15px;
  }
  
  .footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .contact-info, .contact-infor {
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .social-links {
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }
  
  .payment-methods {
    margin-bottom: 20px;
    margin-top: 15px;
    text-align: center;
  }
  
  .payment-methods img {
    margin: 5px;
  }
  
  .footer-bottom {
    margin-top: 20px;
    padding: 15px 0 40px 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer {
  height: auto;
  padding: 25px 0 15px 0;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  padding: 40px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  min-height: 110vh;
}
  
  
  .footer-container {
    gap: 10px;
    padding: 0 10px;
  }
  
  .footer-section {
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 12px;
  }
  
  .footer-section p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .contact-info, .contact-infor {
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .social-links {
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
  }
  
  .payment-methods {
    margin-bottom: 15px;
    margin-top: 12px;
  }
  
  .payment-methods img {
    margin: 3px;
    max-width: 20%;
  }
  
  .footer-bottom {
    margin-top: 15px;
    padding: 12px 0 35px 0;
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .main-content {
    top: 32%;
    width: 100%;
  }
  .showcase-grid {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .showcase-grid {
    gap: 15px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .showcase-grid {
    gap: 10px;
  }

  .product-image-container {
    width: 85vw;
    max-width: 350px;
    min-width: 0;
    aspect-ratio: 1/1;
  }

  .showcase-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }
  .contact-infor {
    justify-content: center;
  }
  .click-instruction {
    position: absolute;
    top: 70% !important;
    left: 55% !important;
    width: 85% !important;
    height: 0% !important;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: pulseText 2s ease-in-out infinite;
  }
}

@media (max-width: 768px) {
  .main-content {
    top: 36% !important;
    width: 100%;
  }
  .brand-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .brand-subtitle {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .brand-description {
    font-size: 0.95rem;
    margin-bottom: 35px;
    padding: 0 15px;
    line-height: 1.5;
  }

  .enter-button {
    font-size: 1rem;
    padding: 14px 30px;
  }
  .stars {
    top: 2% !important;
    width: 40% !important;
    height: "fit-content" !important;
  }

  .floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-element:nth-child(1) {
  top: 70%;
  left: 15%;
  animation-delay: 0s;
}
.floating-element:nth-child(2) {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}
.floating-element:nth-child(3) {
  bottom:35%;
  left: 10%;
  animation-delay: 2s;
}
.floating-element:nth-child(4) {
  bottom: 50%;
  right: 15%;
  animation-delay: 3s;
}
  .click-instruction {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 84% !important;
    height: 0% !important;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: pulseText 2s ease-in-out infinite;
  }
  .moon {
    width: 120px;
    height: 120px;
    top: 15% !important;
  }

  .showcase-title {
    font-size: 2rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .showcase-section {
    padding: 0px 0;
  }


  .main-content {
    top: 30%;
    width: 100%;
  }

  .product-image-container {
    width: 90vw;
    max-width: 320px;
  }
  .contact-info {
    font-size: 0.85rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .brand-subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
    padding: 0 20px;
  }

  .brand-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.4;
  }

  .enter-button {
    font-size: 0.95rem;
    padding: 12px 25px;
    letter-spacing: 0.5px;
  }

  .moon {
    width: 100px;
    height: 100px;
    top: 20%;
  }

  .showcase-section {
    padding: 40px 0;
  }

  .showcase-title {
    font-size: 1.7rem;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .showcase-item {
    padding: 0px;
  }

  .click-instruction {
    bottom: 60px !important;
    padding: 0 10px 0px 10px ;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-top: 50px;
  }

  .main-content {
    top: 30%;
    width: 100%;
  }

  .product-image-container {
    width: 85vw;
    max-width: 280px;
    min-height: 280px;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .product-price {
    font-size: 1.8rem;
  }

  .product-offer-btn {
    font-size: 1rem;
    padding: 10px 24px;
  }

  .floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-element:nth-child(5) {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
}
.floating-element:nth-child(6) {
  top: 10%;
  right: 10%;
  animation-delay: 1s;
}
.floating-element:nth-child(3) {
  bottom: 35%;
  left: 10%;
  animation-delay: 2s;
}
.floating-element:nth-child(4) {
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}
}

@media (max-width: 360px) {
  .footer {
    height: auto;
    padding: 20px 0 10px 0;
  
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  padding: 40px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  min-height: 110vh;
}
  
  
  .footer-container {
    gap: 15px;
    padding: 0 8px;
  }
  
  .footer-section {
    margin-bottom: 15px;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    margin-top: 10px;
  }
  
  .footer-section p {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  
  .contact-info, .contact-infor {
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  
  .social-links {
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
  }
  
  .payment-methods {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  
  .payment-methods img {
    margin: 2px;
    max-width: 18%;
  }
  
  .footer-bottom {
    margin-top: 12px;
    padding: 10px 0 30px 0;
    font-size: 0.7rem;
  }

  .main-content {
    top: 20%;
    width: 100%;
  }
  .brand-title {
    font-size: 2rem;
  }

  .brand-subtitle {
    font-size: 0.95rem;
  }

  .brand-description {
    font-size: 0.85rem;
    padding: 0 25px;
  }

  .moon {
    width: 90px;
    height: 90px;
  }

  .showcase-title {
    font-size: 1.5rem;
  }

  .product-image-container {
    width: 90vw;
    max-width: 250px;
    min-height: 250px;
  }

  .click-instruction {
    font-size: 0.75rem;
    padding: 0 30px;
  }
  .floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-element:nth-child(5) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.floating-element:nth-child(6) {
  top: 15%;
  right: 10%;
  animation-delay: 1s;
}
.floating-element:nth-child(3) {
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}
.floating-element:nth-child(4) {
  bottom: 10%;
  right: 5%;
  animation-delay: 3s;
}
}
