/* =============== ACCESSIBILITY =============== */
.social-links li {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;

}

/* =============== CUSTOM TOAST NOTIFICATIONS =============== */
.custom-toast {
  font-family: "Nunito", sans-serif !important;
  letter-spacing: -0.01em;
}

body.light-mode .custom-toast {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.toast-close {
  font-weight: 700 !important;
  opacity: 0.5 !important;
}

.toast-close:hover {
  opacity: 1 !important;
}

body.light-mode .toast-close {
  color: #000 !important;
}

/* =============== STATIC GRID BACKGROUND =============== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 0.1em, transparent 0.1em), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0.1em, transparent 0.1em);
  background-size: 5em 5em;
}

/* =============== BASIC STYLES =============== */
body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  overflow-y: scroll;
  overflow-x: hidden;
}
body.light-mode {
  background: #fff;
  color: #000;
}
body.light-mode::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0.1em, transparent 0.1em), linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0.1em, transparent 0.1em);
}
body.light-mode #theme-toggle {
  background: #000;
  color: #fff;
}

.main-container {
  width: 90%;
  max-width: 30rem;
  margin: 10rem auto;
  position: relative;
  z-index: 1;
}

/* =============== SCROLLBAR =============== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #111;
}

/* =============== ICON STYLES =============== */
.icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.icon-small {
  width: 20px;
  height: 20px;
}

.icon-large {
  width: 28px;
  height: 28px;
}

/* =============== BIO SECTION =============== */
.blob-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.head-section {
  overflow: hidden;
}

.blob-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 52% 48% 59% 41%/53% 40% 60% 47%;
  overflow: hidden;
  animation: blobAnim 10s ease-in-out infinite alternate;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.blob-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

@keyframes blobAnim {
  0%, 100% {
    border-radius: 52% 48% 59% 41%/53% 40% 60% 47%;
  }
  25% {
    border-radius: 60% 40% 50% 50%/40% 60% 40% 60%;
  }
  50% {
    border-radius: 40% 60% 60% 40%/50% 50% 40% 60%;
  }
  75% {
    border-radius: 52% 48% 59% 41%/53% 40% 60% 47%;
  }
}
/* =============== DARK MODE TOGGLE =============== */
#dark-mode-toggle {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.1rem 0 1.5rem;
}

#theme-toggle {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

h1 {
  text-align: center;
  margin: 0.5rem 0;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.lead {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 1rem auto;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 28rem;
}

small {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.8;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.number-btn,
.mail-btn,
.share-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.number-btn:hover,
.mail-btn:hover,
.share-btn:hover {
  background: #222;
  transform: scale(1.05);
}

.social-links ul {
  list-style: none;
  padding: 0;
}

.link-item {
  margin-bottom: 1rem;
  background: #111;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}
.link-item:hover {
  background: #222;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
.link-item:hover .icon {
  transform: scale(1.1);
}
.link-item:hover .dots-btn {
  opacity: 1;
}

.link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1rem;
  gap: 1rem;
  color: #fff;
}
.link-wrapper a {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
}
.link-wrapper .icon {
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.dots-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.dots-img {
  width: 24px;
  height: 24px;
  transition: content 0.3s ease;
}

/* Change dots to arrow when hovering over the left side (link content) */
.link-wrapper a:hover ~ .dots-btn .dots-img {
  content: url("../images/icon/arrow.svg");
  transform: rotate(-45deg);
}

/* Keep dots when hovering directly on the dots button (right side) */
.dots-btn:hover .dots-img {
  content: url("../images/icon/dots.svg");
  transform: rotate(0deg);
}

.share-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.share-overlay.active {
  opacity: 1;
  visibility: visible;
}
.share-overlay.active .share-popup {
  transform: scale(1) translateY(0);
}

.share-popup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 32px;
  width: 90%;
  max-width: 380px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  transform: scale(0.8) translateY(40px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-header {
  margin-bottom: 24px;
}

.popup-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 8px;
}

.popup-subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.qr-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.qr-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.share-actions button {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.share-actions button:hover {
  transform: scale(1.1) translateY(-2px);
}
.share-actions button:active {
  transform: scale(0.95);
}

#shareBtn,
.share-btn {
  background: rgba(0, 149, 246, 0.9);
  color: white;
}
#shareBtn:hover,
.share-btn:hover {
  background: rgb(0, 149, 246);
  box-shadow: 0 12px 40px rgba(0, 149, 246, 0.4);
}

#copyBtn,
#downloadBtn {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(0, 0, 0, 0.8);
}
#copyBtn:hover,
#downloadBtn:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}
.close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.9rem;
  }
  .lead {
    font-size: 1rem;
  }
  h3 {
    font-size: 0.95rem;
  }
  small {
    font-size: 0.825rem;
  }
  .number-btn,
  .mail-btn,
  .share-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  .lead {
    font-size: 0.95rem;
  }
  .share-popup {
    padding: 24px;
    margin: 20px;
  }
  .popup-title {
    font-size: 1.25rem;
  }
}
/* PRODUCTS */

/* PRODUCTS */
.products {
  margin-top: 2rem;
  text-align: center;
}

.products.hidden {
  display: none;
}

.products h2 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 1rem;
  transition: transform 0.2s ease;
}

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

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 0.6rem 0 0.2rem;
}

.price {
  font-weight: bold;
  color: #00ffae;
}

/* Button style */
.products-btn {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
}
