/* Scentimental - dreamy pastel UI */
:root {
  --pink-deep: #9d174d;
  --pink-mid: #db2777;
  --pink-soft: #fce7f3;
  --lavender: #e9d5ff;
  --mint: #99f6e4;
  --sky: #7dd3fc;
  --text: #4a044e;
  --glass: rgba(255, 255, 255, 0.72);
  --radius: 1.25rem;
  --font: "Nunito", system-ui, sans-serif;
  --font-display: "Fredoka", "Nunito", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.site-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--pink-soft) url("../brand/Background-0078379b-2b03-4c6b-bf18-b4df70987493.png") center center / cover fixed no-repeat;
}

@media (max-width: 768px) {
  .site-body {
    background-attachment: scroll;
  }
}

a {
  color: var(--pink-mid);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.logo-mark img {
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(219, 39, 119, 0.25);
}

.nav-main {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  background: var(--pink-mid);
  color: #fff;
  border-radius: 999px;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}

.main-content {
  padding: 2rem 0 4rem;
}

.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.hero-logo {
  max-width: min(420px, 88vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(236, 72, 153, 0.35));
}

.tagline {
  font-size: 1.25rem;
  color: #831843;
  margin-top: 0.5rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-display);
  border: 2px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.btn--teal {
  background: linear-gradient(135deg, #7dd3fc, #14b8a6);
}

.btn--pink {
  background: linear-gradient(135deg, #f472b6, #db2777);
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.btn--pink:hover {
  box-shadow: 0 10px 28px rgba(219, 39, 119, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.glass-panel {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(157, 23, 77, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-align: center;
  color: var(--pink-deep);
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
  padding: 1rem;
}

.feature img {
  width: 96px;
  height: auto;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.feature h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: #be185d;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: #6b21a8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 24px rgba(157, 23, 77, 0.1);
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.product-card .body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price {
  font-weight: 700;
  color: var(--pink-deep);
}

.muted {
  color: #86198f;
  opacity: 0.9;
}

.site-footer {
  padding: 2rem 0;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
  display: block;
  margin-bottom: 0.35rem;
}

.forms label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.forms input,
.forms select,
.forms textarea {
  width: 100%;
  max-width: 420px;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(157, 23, 77, 0.25);
  font: inherit;
}

.forms .field {
  margin-bottom: 1rem;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.alert--error {
  background: #ffe4e6;
  color: #9f1239;
  border: 1px solid #fda4af;
}

.alert--ok {
  background: #ecfccb;
  color: #3f6212;
  border: 1px solid #bef264;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.35rem 0;
}

.mod-left {
  color: #15803d;
  font-weight: 700;
  min-width: 4rem;
  text-align: left;
}

.mod-right {
  color: #be123c;
  font-weight: 700;
  min-width: 4rem;
  text-align: right;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 1rem;
  align-items: start;
}

.gallery-main img {
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.thumbs button {
  border: 2px solid transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.thumbs button.is-active {
  border-color: var(--pink-mid);
}

.thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}

.admin-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

table.admin {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table.admin th,
table.admin td {
  border-bottom: 1px solid #eee;
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
