* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f4eee6;
  color: #2d2a25;
}

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

.hero {
  padding: 5rem 1.5rem 4rem;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: 50% 45%;
  color: #fdfbf7;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: rgba(255, 251, 245, 0.18);
  border: 1px solid rgba(255, 251, 245, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 1.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.hero p {
  max-width: 40rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.hero-button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: #f8f3eb;
  color: #3f523f;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
  filter: brightness(1.02);
}

.hero-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.hero-button.secondary {
  background: rgba(255, 251, 245, 0.9);
  color: #2d2a25;
}

.gallery-page {
  padding: 3rem 1.5rem 4rem;
  max-width: 1180px;
  margin: 0 auto;
}

.about-section,
.reviews-section {
  margin-bottom: 2.5rem;
  padding: 1.8rem;
  background: #f8f3eb;
  border-radius: 1.25rem;
  border: 1px solid rgba(32, 33, 31, 0.08);
}

.about-section {
  background: linear-gradient(135deg, rgba(240, 246, 237, 0.9) 0%, rgba(247, 239, 228, 0.96) 45%, rgba(232, 240, 220, 0.9) 100%);
  border: 1px solid rgba(89, 116, 87, 0.18);
  box-shadow: 0 18px 42px rgba(67, 93, 72, 0.1);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.creator-portrait {
  position: relative;
  width: 100%;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(47, 42, 34, 0.12);
  border: 1px solid rgba(89, 116, 87, 0.2);
  background: #dfe9d6;
}

.creator-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(78, 101, 73, 0.08), rgba(78, 101, 73, 0.12));
  pointer-events: none;
}

.creator-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-copy {
  padding: 0.5rem 0;
}

.about-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  color: #2d3b2d;
}

.about-copy p {
  margin: 0 0 1rem;
  line-height: 1.9;
  color: #4f5b4d;
  max-width: 760px;
  font-size: 1.03rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy .eyebrow {
  color: #4d6a50;
}

.reviews-section {
  text-align: center;
}

.review-card {
  padding: 1.4rem;
  border-radius: 1rem;
  background: #fffdf9;
  border: 1px solid rgba(32, 33, 31, 0.08);
}

.review-card p {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.review-card span {
  color: #4a6b4f;
  font-weight: 600;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.additional-pieces {
  margin-top: 3rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.8rem;
}

.plant-care-note {
  margin: -0.75rem auto 1.5rem;
  max-width: 760px;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(232, 240, 220, 0.92) 0%, rgba(248, 243, 235, 0.98) 100%);
  border: 1px solid rgba(89, 116, 87, 0.2);
  box-shadow: 0 10px 24px rgba(67, 93, 72, 0.08);
}

.plant-care-note p {
  margin: 0;
  color: #3d4d3b;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.additional-grid {
  margin-top: 0.5rem;
}

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

.plant-photo-card {
  background: #fbf7f0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(32, 33, 31, 0.06);
  border: 1px solid rgba(32, 33, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plant-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(47, 42, 34, 0.12);
}

.plant-photo-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card {
  background: #fbf7f0;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(32, 33, 31, 0.06);
  border: 1px solid rgba(32, 33, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(47, 42, 34, 0.12);
}

.accent-card {
  background: linear-gradient(135deg, #f4efe8 0%, #ece2d2 100%);
}

.custom-request-card {
  border: 1px solid rgba(79, 95, 73, 0.24);
}

.custom-request-image {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.25), transparent 35%),
    linear-gradient(140deg, #6c865e 0%, #8da978 45%, #c8b191 100%);
}

.card-image {
  min-height: 270px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 1.25rem 1.2rem 1.4rem;
}

.card-body h2 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.card-body p {
  margin: 0 0 0.75rem;
  line-height: 1.7;
  color: #5c5348;
}

.inventory-note {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f8e8c6;
  color: #6a4a00;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer {
  background: #2c312d;
  color: #f5f0e8;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.4;
  max-width: 22rem;
}

.footer-column h4 {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d8d1c5;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-column a,
.footer-bottom {
  color: #f5f0e8;
  opacity: 0.9;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer {
    padding-top: 2.5rem;
  }

  .plant-care-note {
    margin: -0.4rem 0 1.25rem;
    padding: 0.8rem 0.85rem;
  }
}

.card-link {
  color: #4a6b4f;
  font-weight: 600;
}

.card-link-sold {
  color: #8b2d2d;
}

.detail-header {
  padding: 2rem 1.5rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #4a6b4f;
  font-weight: 600;
}

.detail-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.detail-header p {
  margin-top: 1rem;
  color: #5c5348;
  line-height: 1.8;
  max-width: 700px;
}

.detail-content {
  padding: 0 1.5rem 3rem;
  max-width: 980px;
  margin: 0 auto;
}

.detail-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.detail-image {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(47, 42, 34, 0.12);
}

.detail-panel-wrap {
  display: none;
}

.detail-panel {
  background: #fbf7f0;
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(32, 33, 31, 0.06);
}

.detail-panel--details {
  margin-top: 0;
}

.detail-panel h2 {
  margin-top: 0;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.price-row,
.dimensions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(32, 33, 31, 0.08);
}

.price-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5c5348;
}

.price-value,
.dimensions-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d2a25;
}

.price-value {
  font-size: 1.8rem;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0 0 1.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(32, 33, 31, 0.06);
  border-radius: 0.9rem;
}

.detail-bullet {
  color: #4f5f49;
  font-size: 1.4rem;
  line-height: 1.2;
  padding-top: 0.05rem;
}

.detail-item p {
  margin: 0;
  color: #5c5348;
  line-height: 1.7;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.secondary-button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: #f4eee6;
  color: #2d2a25;
  font-weight: 600;
  border: 1px solid rgba(32, 33, 31, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: #f0e7dc;
  box-shadow: 0 10px 18px rgba(32, 33, 31, 0.08);
}

.secondary-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.purchase-button {
  background: #4f5f49;
  color: #fdfbf7;
  box-shadow: 0 10px 22px rgba(79, 95, 73, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.purchase-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(79, 95, 73, 0.22);
  filter: brightness(1.04);
}

.purchase-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(79, 95, 73, 0.16);
}

.sold-button {
  background: #b56f6f;
  color: #fff;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.price-value-sold {
  color: #8b2d2d;
  letter-spacing: 0.02em;
}

.detail-panel p {
  line-height: 1.8;
  color: #5c5348;
}

.detail-inventory-note {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.blog-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: flex-start;
}

.blog-form-card,
.blog-feed-card {
  flex: 1;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(251, 247, 240, 0.92));
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 16px 38px rgba(32, 33, 31, 0.06);
}

.blog-feed-card {
  max-width: 760px;
  width: min(100%, 760px);
}

.blog-feed-card .eyebrow,
.blog-form-card .eyebrow {
  margin-bottom: 0.8rem;
  color: #5f635e;
}

.blog-feed-card h2,
.blog-form-card h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.blog-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.blog-form label {
  font-weight: 600;
  color: #2d2a25;
}

.blog-form input,
.blog-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(32, 33, 31, 0.12);
  border-radius: 0.9rem;
  font: inherit;
  background: #fffdf9;
  resize: vertical;
}

.blog-form textarea {
  min-height: 170px;
}

.blog-form input[type="file"] {
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
}

.blog-form button {
  align-self: flex-start;
  margin-top: 0.35rem;
  border: 0;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: #4a6b4f;
  color: white;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(79, 95, 73, 0.18);
}

.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(251, 247, 240, 0.95));
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 16px 38px rgba(32, 33, 31, 0.06);
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-note {
  margin: 0 0 1.4rem;
  color: #5c5348;
  line-height: 1.7;
}

.prefill-note {
  margin: 0 0 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.7rem;
  background: #e7f1e4;
  color: #2f5a34;
  font-weight: 600;
}

.form-hint {
  margin: 0;
  font-size: 0.88rem;
  color: #665e53;
}

.form-errors {
  border: 1px solid rgba(170, 58, 34, 0.3);
  background: #fff3ef;
  color: #8f2d17;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
}

.form-errors p {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(32, 33, 31, 0.12);
  border-radius: 0.9rem;
  font: inherit;
  background: #fffdf9;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.35rem;
  border: 0;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: #4a6b4f;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(79, 95, 73, 0.18);
}

.contact-card .hero-button {
  text-align: center;
}

.contact-honey {
  position: absolute;
  left: -10000px;
}

@media (max-width: 760px) {
  .blog-layout {
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1.25rem;
  }

  .blog-form-card,
  .blog-feed-card {
    width: 100%;
    max-width: 100%;
    padding: 1.1rem;
  }

  .blog-form {
    gap: 0.9rem;
  }

  .blog-form button {
    width: 100%;
    align-self: stretch;
  }

  .contact-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-card {
    padding: 1.15rem;
    border-radius: 1.1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form button,
  .contact-card .hero-button {
    width: 100%;
    align-self: stretch;
  }
}

.blog-post {
  padding: 1.15rem 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 18px rgba(32, 33, 31, 0.03);
}

.blog-post:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-post h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.blog-author {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #58675a;
}

.blog-post-image-wrap {
  margin: 0.9rem 0 1rem;
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 31, 0.08);
  background: #f3eee6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.blog-post-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-post p,
.empty-state {
  margin: 0;
  line-height: 1.8;
  color: #5c5348;
  font-size: 1.01rem;
}

.blog-timestamp {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #7a766f;
  opacity: 0.9;
}

.blog-delete-form {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.button-danger {
  appearance: none;
  border: 1px solid rgba(147, 58, 58, 0.24);
  background: linear-gradient(180deg, #f9e8e8 0%, #f0d6d6 100%);
  color: #7b2d2d;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(123, 45, 45, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(123, 45, 45, 0.18);
  filter: brightness(1.02);
}

.button-danger:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(123, 45, 45, 0.14);
}

.flash {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  font-weight: 600;
}

.flash.error {
  background: #fbe8e8;
  color: #8b2e2e;
}

.flash.success {
  background: #e8f5eb;
  color: #2f6a40;
}

@media (max-width: 760px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .detail-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-image {
    min-height: 420px;
  }

  .detail-panel {
    padding: 1.2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 1rem 3rem;
  }

  .gallery-page,
  .detail-content,
  .detail-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-section,
  .reviews-section {
    padding: 1.2rem 1rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .creator-portrait img {
    min-height: 280px;
  }

  .eyebrow {
    letter-spacing: 0.18em;
    font-size: 0.7rem;
  }
}
