/* ===== Products Page Styles ===== */

/* Products Hero */
.products-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(201, 169, 98, 0.1) 0%, var(--background) 50%, var(--background) 100%);
}

.products-hero-content {
  position: relative;
  max-width: 800px;
}

.products-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .products-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .products-hero h1 {
    font-size: 3.5rem;
  }
}

.products-hero > .container > p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
}

/* Search */
.products-search {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  max-width: 28rem;
  min-width: 200px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

.search-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.products-search .btn {
  height: 3rem;
  padding: 0 1.5rem;
}

/* Quick Actions */
.products-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.products-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Stats */
.products-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .products-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Categories Section */
.categories-section {
  padding: 5rem 0;
}

.categories-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.category-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: rgba(201, 169, 98, 0.5);
}

@media (min-width: 1024px) {
  .category-card {
    display: flex;
  }
}

.category-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .category-image {
    width: 50%;
    aspect-ratio: auto;
  }
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(36, 38, 64, 0.8));
  display: none;
}

@media (min-width: 1024px) {
  .category-overlay {
    display: block;
  }
}

.category-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .category-content {
    width: 50%;
    justify-content: center;
  }
}

.category-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(248, 249, 250, 0.05);
  line-height: 1;
}

.category-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: var(--primary);
}

.category-card:hover .category-icon svg {
  stroke: var(--primary-foreground);
}

.category-content {
  position: relative;
}

.category-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.category-card:hover .category-content h3 {
  color: var(--primary);
}

.category-content > p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.category-features span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.category-count {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.category-count .count-value {
  color: var(--primary);
  font-weight: 600;
}

/* Services Banner */
.services-banner {
  padding: 4rem 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  text-align: center;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.service-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.service-item p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Products CTA */
.products-cta {
  padding: 5rem 0;
}

.cta-box {
  background: rgba(201, 169, 98, 0.05);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-box {
    padding: 4rem 3rem;
  }
}

.cta-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .cta-box h2 {
    font-size: 1.875rem;
  }
}

.cta-box > p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ===== Product List Page Styles ===== */

/* Category Banner */
.category-banner {
  position: relative;
  padding: 8rem 0 5rem;
}

.category-banner-bg {
  position: absolute;
  inset: 0;
}

.category-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 46, 0.9);
}

.category-banner-content {
  position: relative;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--foreground);
}

.breadcrumb svg {
  width: 1rem;
  height: 1rem;
}

.breadcrumb .current {
  color: var(--foreground);
}

.category-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .category-banner h1 {
    font-size: 3rem;
  }
}

.category-banner > .container > p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
}

.category-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.category-stat::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
}

/* Product List Main */
.product-list-section {
  padding: 4rem 0;
}

.product-list-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .product-list-layout {
    flex-direction: row;
  }
}

/* Sidebar */
.product-sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .product-sidebar {
    width: 16rem;
    flex-shrink: 0;
  }
}

.sidebar-search {
  position: relative;
  margin-bottom: 1.5rem;
}

.sidebar-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
}

.sidebar-search input:focus {
  outline: none;
  border-color: var(--primary);
}

.sidebar-search svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
}

.sidebar-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h3 {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sidebar-box h3 svg {
  width: 1rem;
  height: 1rem;
}

.subcategory-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subcategory-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: left;
  transition: all 0.2s ease;
}

.subcategory-btn:hover {
  background: var(--muted);
}

.subcategory-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.subcategory-btn span:last-child {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Help Box */
.help-box {
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.help-box h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.help-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.help-box .btn {
  width: 100%;
}

/* Product Grid */
.product-grid-container {
  flex: 1;
}

.product-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-grid-header p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.product-grid-header p span {
  color: var(--foreground);
  font-weight: 500;
}

.sort-select {
  padding: 0.5rem 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: rgba(201, 169, 98, 0.5);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-cart {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card:hover .product-card-cart {
  opacity: 1;
}

.product-card-cart svg {
  width: 1rem;
  height: 1rem;
}

.product-card-content {
  padding: 1.25rem;
}

.product-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card:hover .product-card-content h3 {
  color: var(--primary);
}

.product-card-content > p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.product-specs span {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  background: var(--secondary);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-price {
  color: var(--primary);
  font-weight: 600;
}

.product-card-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary);
  padding: 0;
}

.product-card-footer .btn:hover {
  text-decoration: underline;
}

.product-card-footer .btn svg {
  width: 1rem;
  height: 1rem;
}

/* Load More */
.load-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* Category CTA */
.category-cta {
  padding: 4rem 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  text-align: center;
}

.category-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .category-cta h2 {
    font-size: 1.875rem;
  }
}

.category-cta > .container > p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.category-cta .cta-buttons {
  margin-top: 1.5rem;
}

/* ===== Product Detail Page Styles ===== */

/* Detail Breadcrumb */
.detail-breadcrumb {
  padding: 6rem 0 1rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

/* Product Overview */
.product-overview {
  padding: 2rem 0;
  background: var(--card);
}

.product-overview-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .product-overview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  position: relative;
  aspect-ratio: 1;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: #22c55e;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info .product-category {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.product-info h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.stars svg.filled {
  fill: #eab308;
  stroke: #eab308;
}

.stars svg.empty {
  stroke: var(--muted-foreground);
}

.rating-value {
  font-weight: 500;
  margin-left: 0.5rem;
}

.reviews-count {
  color: var(--muted-foreground);
}

.product-price-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-range {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.price-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.product-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.product-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quick-spec {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.quick-spec svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.quick-spec-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.quick-spec-value {
  font-weight: 600;
}

/* Quantity Selector */
.quantity-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quantity-section label {
  font-size: 0.875rem;
  font-weight: 500;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quantity-input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.quantity-btn {
  padding: 0.75rem;
  background: transparent;
  transition: background 0.2s ease;
}

.quantity-btn:hover {
  background: var(--card);
}

.quantity-btn svg {
  width: 1rem;
  height: 1rem;
}

.quantity-input {
  width: 5rem;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--foreground);
  font-size: 0.875rem;
}

.quantity-input:focus {
  outline: none;
}

.quantity-min {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Action Buttons */
.product-actions {
  display: flex;
  gap: 1rem;
}

.product-actions .btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-actions .btn-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-actions .btn-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

/* Tabs Section */
.product-tabs-section {
  padding: 3rem 0;
  background: var(--background);
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--foreground);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Specifications Grid */
.specs-grid {
  display: grid;
  gap: 0;
}

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

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.spec-label {
  color: var(--muted-foreground);
}

.spec-value {
  font-weight: 500;
  text-align: right;
}

/* Features List */
.features-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #22c55e;
  flex-shrink: 0;
}

/* Applications */
.applications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.application-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.application-tag svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

/* Packaging */
.packaging-grid {
  display: grid;
  gap: 1rem;
}

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

.packaging-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
}

.packaging-label {
  color: var(--muted-foreground);
}

.packaging-value {
  font-weight: 500;
}

/* Related Products */
.related-products {
  padding: 4rem 0;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.related-products h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.related-card {
  display: block;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--primary);
}

.related-card-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover .related-card-image img {
  transform: scale(1.05);
}

.related-card-content {
  padding: 1rem;
}

.related-card-content h3 {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary);
}

.related-card-link svg {
  width: 1rem;
  height: 1rem;
}

/* Inquiry CTA */
.inquiry-cta {
  padding: 4rem 0;
  background: var(--background);
}

.inquiry-box {
  background: rgba(201, 169, 98, 0.05);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.inquiry-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.inquiry-box > p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.inquiry-box .cta-buttons {
  margin-top: 1.5rem;
}
