:root {
  --bg: #fffaf7;
  --white: #ffffff;
  --text: #453833;
  --muted: #7e6d67;
  --line: #eee4de;

  --pink: #f7c9d2;
  --peach: #f6d7bb;
  --sand: #f4eadf;
  --sky: #d8edf6;
  --blue: #8cc7db;
  --deep-blue: #5ea4bf;

  --shadow: 0 12px 30px rgba(94, 164, 191, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --maxw: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf7 0%, #fff7f2 40%, #f7fcff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Announcement */

.announcement-bar {
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 11px 16px;
}

/* Header */

.site-header {
  background: #c6e8f7;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--deep-blue);
}

.brand img {
  display:block;
  height:130px;
}


.header-icons {
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
}

.header-icons a:hover {
  color: var(--deep-blue);
}


.header-icons a {
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.header-icons a:hover {
  color: #000000;
}



/* Menu */

.top-menu {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.top-menu ul {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 56px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  overflow-x: auto;
}

.top-menu a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: #f52087;
}

.top-menu a:hover {
  color: var(--deep-blue);
}

/* Layout */

.page-wrapper {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 28px 20px 70px;
  flex: 1;
}

/* Hero */

.hero-home {
  min-height: 600px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(rgba(35, 35, 35, 0.10), rgba(35, 35, 35, 0.22)),
    url("/assets/images/page-bnr.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-overlay {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-copy {
  max-width: 540px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 34px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 800;
  color: var(--deep-blue);
  margin-bottom: 12px;
}

.hero-copy h1,
.page-banner h1 {
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 1.08;
}

.hero-copy p,
.page-banner p,
.section-heading p,
.collection-card p,
.featured-strip-copy p,
.product-desc,
.content-card p {
  color: var(--muted);
}

/* Buttons */

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--deep-blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(94, 164, 191, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary,
.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}

/* Sections */

.section-heading {
  text-align: center;
  padding: 44px 0 20px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

/* Collections */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.collection-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collection-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.collection-card-body {
  padding: 18px;
}

.collection-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

/* Featured strip */

.featured-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.featured-strip-image {
  min-height: 420px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("/assets/images/hero-squishies.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.featured-strip-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.featured-strip-copy h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.1;
}

/* Product grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image-link {
  display: block;
}

.product-image {
  height: 340px;
  background: #f6f6f6;
  overflow: hidden;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title,
.product-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.product-title a:hover {
  color: var(--deep-blue);
}

/* Limit description height on product grid */

.product-desc {
  margin: 0 0 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6em;
}

.price {
  margin: 12px 0 16px;
  font-size: 22px;
  font-weight: 800;
  color: var(--deep-blue);
}

.product-stock-wrap {
  margin-bottom: 14px;
}

.product-stock {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.product-stock.in-stock {
  color: #2f7d4a;
}

.product-stock.out-of-stock {
  color: #b14d4d;
}

.product-actions,
.buy-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.paypal-button-wrap {
  margin-top: 12px;
}

/* Page banner / content */

.page-banner {
  background: linear-gradient(135deg, #fff, #f8fcff);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

/* Product page */

.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-detail-gallery {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fcfbfa;
}

.product-detail-image-wrap {
  background: #fff;
  min-height: 420px;
  max-height: 650px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-detail-image {
  width: 100%;
  height: 100%;
  max-height: 650px;
  object-fit: contain;
}

.product-detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.product-thumb-btn {
  width: 88px;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  cursor: pointer;
}

.product-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb-btn.is-active {
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 2px rgba(94, 164, 191, 0.14);
}

.product-detail-info {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-title {
  font-size: 42px;
  margin: 0 0 12px;
  line-height: 1.08;
}

.product-detail-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--deep-blue);
  margin: 0 0 18px;
}

.product-detail-description {
  margin-bottom: 20px;
}

.product-detail-description p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail-stock {
  margin-bottom: 20px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.product-detail-paypal {
  margin-top: 4px;
}

/* Footer */

.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, #fdf1f6 0%, #f9e7ef 100%);
  border-top: 4px dashed #f3a8c8;
}

/* main layout */

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 42px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* brand */

.footer-brand h3 {
  margin: 0 0 8px;
  color: #ef4f9a;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-brand p {
  margin: 0;
  color: #7a6670;
  font-size: 17px;
  line-height: 1.6;
  max-width: 420px;
}

/* links */

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f2bdd3;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #6d5b63;
  box-shadow: 0 2px 8px rgba(214, 126, 164, 0.08);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  background: #ffffff;
  color: #ef4f9a;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(214, 126, 164, 0.14);
}

/* fun fact */

.footer-fun {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6px 20px 0;
  color: #6d5b63;
  font-size: 15px;
  line-height: 1.6;
}

/* decorative emoji row */

.footer-decor {
  text-align: center;
  font-size: 28px;
  margin-top: 18px;
  letter-spacing: 10px;
  opacity: 0.92;
}

/* bottom copyright */

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 20px 28px;
  color: #7a6670;
  font-size: 14px;
  text-align: center;
  line-height: 1.7;
}

/* mobile */

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-brand h3 {
    font-size: 28px;
  }
}
/* mobile */

@media (max-width: 700px) {

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

}

/* Responsive */

@media (max-width: 1100px) {
  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-strip {
    grid-template-columns: 1fr;
  }
}

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

  .product-detail-gallery {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-detail-image {
    max-height: 500px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
  }

  .hero-home,
  .hero-overlay {
    min-height: 480px;
  }

  .hero-overlay {
    padding: 24px;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-copy h1,
  .page-banner h1 {
    font-size: 34px;
  }

  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .featured-strip-copy,
  .page-banner,
  .content-card {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}