:root {
  --bg-main: #fff9fc;
  --bg-card: #ffffff;
  --accent-soft: #ffd6ea;
  --accent-strong: #f8a9c5;
  --accent-deep: #ec7aa8;
  --text-main: #2f1b28;
  --text-muted: #8f6f84;
  --border-subtle: rgba(248, 169, 197, 0.35);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
  --radius-xl: 24px;
  --radius-pill: 999px;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #ffe5f3 0, #fff9fc 40%, #ffffff 100%);
  color: var(--text-main);
  min-height: 100vh;
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 18px 40px;
}

/* Header / Branding */

.header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-xl);
  background: rgba(255, 244, 250, 0.9);
  border: 1px solid rgba(255, 214, 234, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 55%);
  pointer-events: none;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd6ea, #f8a9c5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(248, 169, 197, 0.4);
  flex-shrink: 0;
  overflow: hidden; /* new */
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-initials {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-text h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

.brand-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Main layout */

.content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Cards */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

/* Contact */

.contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Contact pills */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  background: #fff7fb;
  border: 1px solid rgba(248, 169, 197, 0.4);
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.contact-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(248, 169, 197, 0.25);
  background: #ffeefa;
}

.icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pill-text {
  display: flex;
  flex-direction: column;
}

.pill-text .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.pill-text .value {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-main);
}

/* Gallery */

.gallery-card {
  overflow: hidden;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.gallery-card h2 {
  font-size: 1.2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 4px;
}

.product-card {
  border-radius: 20px;
  border: 1px solid rgba(248, 169, 197, 0.35);
  background: linear-gradient(135deg, #fffdfd, #fff7fb);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 190px;
}

.product-image {
  position: relative;
  height: 110px;
  overflow: hidden;
  background-size: 200% 200%;
  animation: shimmer 9s ease-in-out infinite;
  display: flex;          /* new */
  align-items: center;    /* new */
  justify-content: center;/* new */
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gradient-1 {
  background-image: linear-gradient(135deg, #ffd6ea, #f8a9c5, #ffeef7);
}
.gradient-2 {
  background-image: linear-gradient(135deg, #ffe9f0, #ffd6ea, #fff9fc);
}
.gradient-3 {
  background-image: linear-gradient(135deg, #ffe5f3, #ffd6ea, #f8a9c5);
}
.gradient-4 {
  background-image: linear-gradient(135deg, #fff1f6, #ffd6ea, #f9c4de);
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pill-tag {
  position: absolute;
  top: 10px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.product-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-body h3 {
  font-size: 0.98rem;
}

.product-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.product-btn {
  margin-top: 6px;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-deep));
  color: #fff;
  box-shadow: 0 10px 20px rgba(248, 169, 197, 0.35);
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
}

.product-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(248, 169, 197, 0.45);
  filter: brightness(1.02);
}

/* Note card */

.note-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.note-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer */

.footer {
  margin-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Animations */

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

.fade-in {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.float-soft {
  animation: floatSoft 4.5s ease-in-out infinite;
}

.hover-lift {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(248, 169, 197, 0.30);
}

/* Responsive */

@media (min-width: 640px) {
  .contact-grid {
    flex-direction: row;
  }

  .contact-pill {
    flex: 1;
  }

  .card {
    padding: 22px 22px;
  }

  .brand-text h1 {
    font-size: 1.7rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Zoom Summer Fridays image for readability */
.product-image.gradient-3 .product-photo {
  transform: scale(1.35);              /* zoom for readability */
  object-position: center;
}
