/* =========================
   IMPORT FONT
========================= */
@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");

/* =========================
   GLOBAL TEXT
========================= */
.artisan-hero,
.artisan-container,
.artisan-section,
.artisan-card,
.artisan-content {
  color: #222 !important;
}

/* =========================
   HERO
========================= */
.artisan-hero {
  padding: 4rem 1.5rem;
  background: #f7f7f7;
  margin-top: 120px;
}

.artisan-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.artisan-container h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.artisan-container p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #333;
}

/* =========================
   PRODUCT SECTIONS
========================= */
.artisan-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 3.5rem;
}

.artisan-card {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.artisan-card.reverse {
  flex-direction: row-reverse;
}

.artisan-img img {
  width: 330px;
  max-width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.artisan-content {
  flex: 1;
}

.artisan-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

.artisan-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.artisan-content ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.artisan-content ul li {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

/* =========================
   ORCHID — PREMIUM BOTANICAL
========================= */

/* Title "Orchid On Vase" */
.catalog-item.gray {
  background: transparent;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  color: #4b5f4f;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  font-family: "Italianno", cursive;
  letter-spacing: 1px;
}

/* Wrapper */
.orchid-section {
  width: 90%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Row */
.orchid-row {
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(229, 235, 229, 0.75);
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.orchid-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(93, 119, 94, 0.18);
}

/* Image */
.orchid-image img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Orchid Text */
.orchid-text {
  flex: 1;
  text-align: left;
}

.orchid-text h3 {
  font-family: "Italianno", cursive;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #2f4b34;
}

/* Price Box */
.price-block {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  margin-bottom: 10px;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.price-block h4 {
  font-family: "Italianno", cursive;
  font-size: 36px;
  margin: 0;
  color: #2f4b34;
}

.price-block p {
  font-size: 14px;
  margin-top: 4px;
  color: #4b5f4f;
  line-height: 1.4;
}

/* VARIETY TITLE */
.orchid-var-title {
  margin-top: 30px;
  font-size: 42px;
  font-family: "Italianno", cursive;
  color: #4b5f4f;
  text-align: center;
}

/* Variety Images */
.orchid-variety {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 14px;
}

.orchid-variety img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4b5f4f;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}

.orchid-variety img:hover {
  transform: scale(1.12);
  border-color: #708871;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .artisan-card,
  .artisan-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .orchid-row {
    flex-direction: column;
    text-align: center;
  }

  .orchid-text {
    text-align: center;
  }

  .orchid-text h3 {
    font-size: 34px;
  }

  .price-block {
    margin-left: auto;
    margin-right: auto;
  }

  .price-block h4,
  .price-block p {
    text-align: center;
  }

  .orchid-image img {
    width: 100px;
    height: 100px;
  }

  .orchid-variety img {
    width: 48px;
    height: 48px;
  }
}
