/* Product Showcase Section Styles */
.omtw-showcase-wrapper {
  background-color: #FAF7F0;
  padding: 90px 24px;
}

.omtw-showcase-container {
  max-width: 1240px;
  margin: 0 auto;
}

.omtw-showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.omtw-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EAF0E8;
  color: #1F3D2B;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.omtw-showcase-title {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: #1A2E1E;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.omtw-showcase-subtitle {
  font-size: 16px;
  color: #4B564D;
  line-height: 1.6;
  margin: 0;
}

/* Category Filter Bar */
.omtw-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.omtw-filter-btn {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  color: #4A5568;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.omtw-filter-btn:hover,
.omtw-filter-btn.is-active {
  background: #1F3D2B;
  color: #ffffff;
  border-color: #1F3D2B;
}

.omtw-showcase-meta-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #718096;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E2E8F0;
}

/* Product Cards Grid */
.omtw-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.omtw-product-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.omtw-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(31, 61, 43, 0.12);
}

.omtw-product-badge {
  background: #EAF0E8;
  color: #1F3D2B;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.omtw-product-circle-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #1F3D2B, #C97C4B);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.omtw-product-card:hover .omtw-product-circle-img {
  transform: scale(1.05);
}

.omtw-product-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.omtw-product-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A2E1E;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.omtw-product-tamil {
  font-size: 13px;
  color: #C97C4B;
  font-weight: 600;
  margin-bottom: 2px;
}

.omtw-product-botanical {
  font-size: 12px;
  font-style: italic;
  color: #718096;
  margin-bottom: 12px;
}

.omtw-product-desc {
  font-size: 13px;
  color: #4A5568;
  line-height: 1.45;
  margin-bottom: 20px;
  flex: 1;
}

.omtw-product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.omtw-btn-dossier {
  background: #EAF0E8;
  color: #1F3D2B;
  border: none;
  padding: 10px 16px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.omtw-btn-dossier:hover {
  background: #D5E2D2;
}

.omtw-btn-quote {
  background: #1F3D2B;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.omtw-btn-dossier i,
.omtw-btn-dossier svg,
.omtw-btn-quote i,
.omtw-btn-quote svg,
.omtw-showcase-eyebrow i,
.omtw-showcase-eyebrow svg,
.omtw-filter-btn i,
.omtw-filter-btn svg {
  width: 1em;
  height: 1em;
  font-size: 16px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  fill: currentColor;
  flex-shrink: 0;
}

.omtw-btn-quote:hover {
  background: #14281B;
}

@media (max-width: 1024px) {
  .omtw-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .omtw-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .omtw-showcase-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .omtw-products-grid {
    grid-template-columns: 1fr;
  }
}
