/**
 * Theme Name: Dorm Creations Child
 * Template:   bluehost-blueprint
 * Description:  Child theme using pastel feminine palette
 * Version:      1.0
*/

/* ===========================
   COLOR PALETTE VARIABLES
   =========================== */
:root {
  --dc-blush-rose: #EEC9D2;
  --dc-soft-sage: #DDE7D5;
  --dc-dusty-lavender: #D9D3E8;
  --dc-warm-sand: #F4EDE4;
  --dc-charcoal-soft: #3A3A3A;
  --dc-warm-taupe: #8E7D75;
  --dc-peach-cream: #F8DCCB;
  --dc-muted-mauve: #C7A7B4;
  
}

/* ===========================
   GLOBAL OVERRIDES
   =========================== */
body {
  background-color: var(--dc-warm-sand);
  color: var(--dc-charcoal-soft);
  font-family: "Comfortaa", Arial, sans-serif;
}

a {
  color: var(--dc-blush-rose);
}

a:hover,
a:focus {
  color: var(--dc-dusty-lavender);
}

/* ===========================
   BUTTONS / CTAs
   =========================== */
button,
input[type="submit"],
.wp-block-button__link {
  background-color: var(--dc-blush-rose);
  color: var(--dc-charcoal-soft);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  border: none;
}

button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
  background-color: var(--dc-dusty-lavender);
}

.btn-secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: var(--dc-soft-sage);
  color: var(--dc-charcoal-soft);
}

/* ===========================
   PRODUCT GRID (PASTEL THEME)
   =========================== */

/* PINTEREST-STYLE GRID */
.wpda-pinterest {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 2px 0;
}

/* CARD */
.wpda-pinterest .product-card {
  background-color: #ffffff !important;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--dc-blush-rose);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpda-pinterest .product-card-prime {
  background-color: #0578FF !important;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--dc-blush-rose);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpda-pinterest .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.wpda-pinterest .product-card-prime:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* HEADER */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-category {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 10px 0 3px;
  border-bottom: 2px solid var(--dc-blush-rose);
  padding-bottom: 1.5px;
  color: #E644A8;
/*  color: var(--dc-charcoal-soft); */
}

/* PRIME DAY */
.prime-day {
  background: #0578FF;
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 20px 40px;
  font-size: 0.65rem;
  margin-right: auto;  
}

/* ESSENTIAL TAGS */
.product-essential {
  background: var(--dc-peach-cream);
  color: #E644A8;
/*  color: var(--dc-charcoal-soft); */
  padding: 3px 10px;
  border-radius: 20px 40px;
  font-size: 0.65rem;
  margin-left: auto;
}

.product-essential0 {
/*  background: var(--dc-blush-rose); */
  background-color: #ffffff
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  margin-left: auto;
}

/* TEXT */
.product-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 2px 0 4px;
  color: var(--dc-charcoal-soft);
}

.product-title-prime {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 2px 0 4px;
  color: #FFFFFF;
}

.product-cost {
/*  margin: 0; */
  font-size: 0.85rem;
  color: var(--dc-warm-taupe);
}

.product-quantity {
/*  margin: 0; */
  font-size: 0.75rem;
  color: var(--dc-charcoal-soft);
}

.product-quantity-prime {
/*  margin: 0; */
  font-size: 0.75rem;
  color: #FFFFFF;
}

.product-quantity-prime {
/*  margin: 0; */
  font-size: 0.75rem;
  color: #FFFFFF;
}

.product-note {
  font-size: 0.85rem;
  margin: 0px 0 0px;
  color: var(--dc-charcoal-soft);
  flex-grow: 1;
}

.product-note-prime {
  font-size: 0.85rem;
  margin: 0px 0 0px;
  color: #FFFFFF;
  flex-grow: 1;
}

/* LINKS */
.product-links {
/*  margin-top: 1px; */
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
}

.product-links a {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--dc-soft-sage);
  color: var(--dc-charcoal-soft);
  transition: background 0.2s ease;
}

.product-links a:hover {
  background: var(--dc-dusty-lavender);
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* TABLET */
@media (max-width: 1024px) {
  .wpda-pinterest {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

/* LARGE MOBILE */
@media (max-width: 768px) {
  .wpda-pinterest {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .wpda-pinterest .product-card {
    padding: 14px;
  }

  .wpda-pinterest .product-card-prime {
    padding: 14px;
  }

  .product-title {
    font-size: 1.15rem;
  }

  .product-title-prime {
    font-size: 1.15rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .wpda-pinterest {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .wpda-pinterest .product-card {
    padding: 14px;
    border-radius: 10px;
  }

  .wpda-pinterest .product-card-prime {
    padding: 14px;
    border-radius: 10px;
  }

  .product-category {
    font-size: 1.5rem;
  }

  .product-title {
    font-size: 1.0rem;
  }

  .product-title-prime {
    font-size: 1.0rem;
  }

  .product-links a {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}

/* ===========================
   PASTEL PILL LIST (PROFESSIONAL)
   =========================== */

/* ===========================
   PASTEL BUTTON PILLS (PROFESSIONAL)
   =========================== */

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

.pill-button {
  display: inline-block;
  background: var(--dc-soft-sage);
  color: var(--dc-charcoal-soft);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid var(--dc-muted-mauve);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-button:hover {
  background: var(--dc-blush-rose);
  color:#3A3A3A;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.pill-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.pill-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dc-charcoal-soft);
  border-left: 6px solid var(--dc-blush-rose);
  padding-left: 12px;
  margin-bottom: 24px;
}