/* ───── FONTS ───── */
@import url('https://fonts.googleapis.com/css2?family=Yomogi&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;600;800&display=swap');


/* ───── GLOBAL ───── */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #F9EAF2;
  color: #222;
}

/* Background wallpaper layer */
.bg-overlay {
  position: fixed;
  inset: 0;
  background-image: url("store_bg.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}


/* ───── HEADER ───── */
.site-header {
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 3rem 1rem 2rem;
}

/* Decorative header images */
.hearts,
.smile {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hearts {
  top: 20px;
  left: 20px;
  width: 300px;
}

.smile {
  top: 150px;
  right: 20px;
  width: 150px;
}


/* ───── LOGO TEXT ───── */
.store-name {
  margin: 0;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.store-name .jp {
  display: block;
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 900;
  color: #FFF6F9;
  font-family: "Yomogi", sans-serif;
  -webkit-text-stroke: 0.2px #F2B8D8;
  text-shadow: 0 4px 12px rgba(242, 184, 216, 0.45);
}

.store-name .en {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  letter-spacing: 0.25em;
  text-transform: lowercase;
  color: #6B4A5A;
}


/* ───── NAVIGATION ───── */
.main-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.main-nav .tab {
  background: #FFF6F9;
  border: 2px solid #F2B8D8;
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  text-decoration: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #6B4A5A;
  cursor: pointer;
  transition: all 0.2s ease;
}

.main-nav .tab:hover {
  background: #F9EAF2;
  box-shadow: 0 6px 16px rgba(242, 184, 216, 0.4);
}

.main-nav .tab.active {
  background: #F2B8D8;
  color: #3A2F36;
  box-shadow: 0 6px 18px rgba(242, 184, 216, 0.6);
}


/* ───── GENERAL LAYOUT ───── */
main {
  text-align: center;
}


/* ───── CARD SECTION (COMMISSIONS / YCH / ETC) ───── */
.commission-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 10px;
  text-align: center;
  font-family: "Poppins", "Helvetica", sans-serif;
}

.commission-header {
  text-align: center;
  margin: 10px 0 0 0;
}

.ribbon-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  height: auto;
  position: relative;
  top: -10px;
}

.title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #6B4A5A;
}

.subtitle {
  color: #8d7c89;
  margin-bottom: 25px;
}


/* ───── CARD GRID ───── */
.card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.commission-card {
  background: #fff;
  border-radius: 30px;
  padding: 18px;
  border: 2px solid #ffd6ec;
  box-shadow: 0 12px 30px rgba(242, 184, 216, 0.6);
  transition: transform .2s ease, box-shadow .2s ease;
}

.commission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(242, 184, 216, 0.75);
}


/* Image box */
.img-box {
  background: #ffe9f6;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px dashed #ffbadc;
  padding: 6px;
  width: 50%;
  max-width: 450px;
  margin: 0 auto;
}

.img-box img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.commission-card h3 {
  margin-top: 12px;
  color: #b46ca4;
}

.commission-card p {
  color: #7b6b74;
  font-size: 0.95rem;
}


/* ───── FLOATING HEART PARTICLES ───── */
.heart {
  position: fixed;
  pointer-events: none;
  color: #ff7dab;
  font-size: 18px;
  z-index: 99999;
  animation: floatUp 1.3s linear forwards;
}

@keyframes floatUp {
  0% { transform: translate(-50%, 0) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -60px) scale(1.2); opacity: .9; }
  100% { transform: translate(-50%, -140px) scale(.9); opacity: 0; }
}


/* ───── FLOATING BUTTONS ───── */
.floating-btn-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  pointer-events: none;
  z-index: 50;
}

.floating-btn {
  position: relative;
  top: 80%;
  pointer-events: auto;
  background: #F2B8D8;
  color: #623d56;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(242, 184, 216, 0.4);
  transition: all .2s ease;
}

.floating-btn:hover {
  background: #ffd6e8;
  color: #fff;
  text-shadow: 0 0 10px #ffb6d9, 0 0 18px #ff9ecf;
  box-shadow: 0 10px 28px rgba(255, 150, 200, .7);
  transform: scale(1.08);
}


/* IG Button */
.floating-ig-btn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 50;
  background: rgba(255, 182, 206, .45);
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 10px 25px rgba(255, 182, 206, .45);
}

.floating-ig-btn img {
  width: 65px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: .2s ease;
}

.floating-ig-btn img:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 35px rgba(255, 140, 200, .75);
}


/* ───── MISC ───── */
ul { padding-left: 1.2rem; }
.price { font-weight: bold; }



.assets-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 25px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(240, 140, 180, 0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(240, 140, 180, 0.35);
}

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

.product-name {
  margin: .5rem 0;
}

.product-desc {
  color: #666;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.add-cart-btn {
  background: #ff9ecb;
  border: none;
  color: white;
  padding: .6rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: .9rem;
}

.add-cart-btn:hover {
  background: #ff7fb6;
}

@media(max-width: 700px){
  .product-grid {
    grid-template-columns: 1fr;
  }
}


.cart-fab {
  position: fixed;
  right: 30px;
  top: 40px;
  box-shadow: 0 10px 25px rgba(242, 184, 216, 0.4);
  background: #F2B8D8;
  color: #623d56;
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 18px;
  cursor: pointer;

}

.cart-fab:hover {
    background: #ffd6e8;
  color: #fff;
  text-shadow: 0 0 10px #ffb6d9, 0 0 18px #ff9ecf;
  box-shadow: 0 10px 28px rgba(255, 150, 200, .7);
  transform: scale(1.08);
}



.cart-fab span {
  background: white;
  color: #ff7fb6;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}


@media (max-width: 700px) {
  .cart-fab {
    top: 20px;
    right: 10px;
  }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: none;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100%;
  background: white;
  box-shadow: -10px 0 25px rgba(0,0,0,.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: .35s ease;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin-top: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  margin-bottom: 1.2rem;
  align-items: center;
}

.cart-item img {
  width: 100%;
  border-radius: 12px;
}

.item-title {
  font-weight: bold;
}

.qty-box {
  display: flex;
  gap: 6px;
  align-items: center;
}

.qty-box button {
  background: #ffd6e8;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 8px;
}

.remove-btn {
  color: #ff3b6b;
  cursor: pointer;
}

.cart-footer {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.subtotal {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  bottom: 120px;
  right: 20px;
  background: #ff9ecb;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}







.under-construction-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.under-construction-card {
  background: rgba(255, 240, 250, 0.9);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 2px solid #ff9fcf;
}

.uc-image {
  width: 70%;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 12px;
}

.under-construction-card h1 {
  color: #ff6fae;
  margin-bottom: 10px;
}

.under-construction-card p {
  color: #444;
  margin-bottom: 25px;
}

.uc-btn {
  background: #ff7dab;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.uc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
























