/* ==========================================
   pages.css - Page-Specific Layout Adjustments
   ========================================== */

/* Wave Divider Colors */
.wave-divider-light svg {
  fill: var(--bg-light);
}
.wave-divider-white svg {
  fill: var(--bg-white);
}

/* ==========================================
   Home Page Specifics
   ========================================== */
.hero-home {
  position: relative;
  overflow: hidden;
  padding: 120px 0 160px;
  background: linear-gradient(135deg, #f3e8ff 0%, #e0f2fe 100%);
}
.home-page-hero {
  background-image: url('../images/hero_bg.png') !important;
  background-size: cover !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-spacer {
  height: 100%;
  pointer-events: none;
}
.hero-text {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 1024px) {
  .hero-home-grid {
    grid-template-columns: 0.7fr 1.3fr !important;
  }
}

@media (max-width: 768px) {
  .hero-home {
    background-position: 20% center !important;
    padding: 60px 0 80px !important;
  }
  .hero-spacer {
    display: none !important;
  }
  .hero-text {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 20px !important;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(7, 59, 76, 0.08);
  }
  .hero-text h1 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
    color: var(--dark-teal) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    margin-bottom: 12px !important;
  }
  .hero-text p {
    font-size: 0.95rem !important;
    color: var(--dark-teal) !important;
    opacity: 0.95;
    margin-bottom: 20px !important;
  }
  .hero-text div[style*="display: flex"] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: 100%;
  }
  .hero-text div[style*="display: flex"] .btn {
    flex: 1;
    padding: 10px 4px !important;
    font-size: 0.85rem !important;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }
}
.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark-teal);
  margin-bottom: 24px;
}
.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-badge-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.hero-badge-card {
  text-align: center;
}
.hero-badge-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-size: 1.5rem;
}
.hero-badge-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-teal);
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* Category Quick-Links Bar */
.category-bar {
  padding: 50px 0;
  background-color: transparent;
}
.category-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 10px 0;
  width: 100%;
}
.category-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-normal);
}
.category-card:hover {
  transform: translateY(-6px);
}
.category-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-radius var(--transition-slow), box-shadow var(--transition-normal);
}
.category-image-wrapper.shape-1 {
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}
.category-image-wrapper.shape-2 {
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}
.category-image-wrapper.shape-3 {
  border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
}
.category-image-wrapper.shape-4 {
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
}
.category-card:hover .category-image-wrapper {
  box-shadow: var(--shadow-md);
}
.category-card:hover .category-image-wrapper.shape-1 {
  border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
}
.category-card:hover .category-image-wrapper.shape-2 {
  border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
}
.category-card:hover .category-image-wrapper.shape-3 {
  border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
}
.category-card:hover .category-image-wrapper.shape-4 {
  border-radius: 55% 45% 45% 55% / 45% 55% 55% 45%;
}
.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform var(--transition-slow);
}
.category-card:hover .category-image-wrapper img {
  transform: scale(1.08) rotate(-1deg);
}
.category-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}
.category-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 600;
}
.category-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--dark-teal);
  transition: color var(--transition-fast);
}
.category-card:hover h3 {
  color: var(--primary);
}
.category-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--primary);
  opacity: 0.8;
  transform: translateY(0);
  transition: opacity var(--transition-normal), color var(--transition-fast), transform var(--transition-normal);
}
.category-link:hover {
  color: var(--primary-hover);
}
.category-card:hover .category-link {
  opacity: 1;
  color: var(--primary-hover);
  transform: translateX(3px);
}

/* Responsive grid styles for category quick-links bar */
@media (max-width: 992px) {
  .category-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .category-info h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .category-carousel {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-card {
    aspect-ratio: auto;
  }
  .category-image-wrapper {
    aspect-ratio: 16 / 10;
  }
  .category-info h3 {
    font-size: 1.2rem;
  }
  .category-link {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Card Grid */
.product-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--bg-light);
  overflow: hidden;
}
.product-img-wrapper img {
  width: 100%;
  height: 100%;
  transition: var(--transition-slow);
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.product-badge.best-seller {
  background-color: var(--secondary);
}
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background-color: var(--bg-white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.product-wishlist:hover {
  color: var(--secondary);
}
.product-details {
  padding: 16px;
}
.product-sku {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.product-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.product-price-moq {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}
.product-moq {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* OEM/ODM Banner Area */
.oem-solutions {
  background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
  position: relative;
  overflow: hidden;
}
.oem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.oem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.oem-item {
  display: flex;
  gap: 12px;
}
.oem-item-icon {
  width: 40px;
  height: 40px;
  background-color: var(--bg-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.oem-item-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-teal);
  margin-bottom: 4px;
}
.oem-item-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Partners Logo Scroll */
.partners-section {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}
.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.partner-logo {
  height: 50px;
  opacity: 0.7;
  filter: grayscale(1);
  transition: var(--transition-fast);
}
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Why Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.why-partners-section {
  background: linear-gradient(135deg, #f3e8ff 0%, #e0f2fe 50%, #fef3c7 100%) !important;
  position: relative;
  padding-top: 115px !important;
}

.why-card {
  background: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 35px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(31, 38, 135, 0.06), inset 0 0 16px rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.32) !important;
  box-shadow: 0 15px 35px rgba(31, 38, 135, 0.1), inset 0 0 16px rgba(255, 255, 255, 0.25);
}

/* Home Page Blog Card Irregular Sizing */
.home-blog-section .blog-card {
  position: relative;
  border: 1px solid rgba(10, 79, 96, 0.08) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
  transition: border-radius var(--transition-slow), transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  height: 100%;
}

.home-blog-section .blog-card.shape-1 {
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}
.home-blog-section .blog-card.shape-2 {
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}
.home-blog-section .blog-card.shape-3 {
  border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
}

.home-blog-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(10, 79, 96, 0.15) !important;
}

.home-blog-section .blog-card:hover.shape-1 {
  border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
}
.home-blog-section .blog-card:hover.shape-2 {
  border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
}
.home-blog-section .blog-card:hover.shape-3 {
  border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
}

.home-blog-section .blog-img {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  box-shadow: none;
}

.home-blog-section .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.home-blog-section .blog-card:hover .blog-img img {
  transform: scale(1.08) rotate(-1deg);
}

.home-blog-section .blog-content {
  padding: 26px 28px 54px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-blog-section .blog-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: var(--primary);
  color: white !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(10, 79, 96, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity var(--transition-normal), transform var(--transition-normal), background-color var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.home-blog-section .blog-card:hover .blog-link {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.home-blog-section .blog-link:hover {
  background-color: var(--primary-hover);
  transform: translate(-50%, -2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(10, 79, 96, 0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  background-color: rgba(14, 165, 233, 0.12) !important;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(14, 165, 233, 0.2) !important;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-teal);
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Blog Cards */
.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
}
.blog-content {
  padding: 24px;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}
.blog-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-teal);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.blog-link {
  font-weight: 600;
  color: var(--primary);
}
.blog-link:hover {
  color: var(--primary-hover);
}

@media (max-width: 768px) {
  .hero-home-grid, .oem-grid {
    grid-template-columns: 1fr;
  }
  .hero-badge-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .oem-list {
    grid-template-columns: 1fr;
  }
}

/* Premium Featured Products Section Layout */
.featured-products-section {
  background: linear-gradient(135deg, #fff0f3 0%, #e6f0fa 50%, #f0fff4 100%) !important;
  position: relative;
  padding: 90px 0;
}

.featured-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 40px;
  align-items: stretch;
}

/* Editorial Promo Card Style */
.featured-editorial-card {
  background: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--dark-teal) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(10, 79, 96, 0.05);
}

/* Soft glowing wave pattern as background inside editorial card */
.featured-editorial-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-round);
  pointer-events: none;
}

.editorial-content {
  position: relative;
  z-index: 2;
}

.editorial-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  background-color: rgba(14, 165, 233, 0.15);
  padding: 6px 12px;
  border-radius: var(--radius-round);
  display: inline-block;
  margin-bottom: 20px;
}

.editorial-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark-teal);
  line-height: 1.15;
  margin-bottom: 20px;
}

.editorial-divider {
  width: 50px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: var(--radius-round);
  margin-bottom: 24px;
}

.editorial-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.editorial-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-teal);
}

.highlight-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.editorial-btn {
  align-self: flex-start;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 2x2 Grid on the right */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Premium Product Card Upgrades */
.premium-card {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  transition: transform var(--transition-normal);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: none !important;
}

/* Soft pastel backgrounds for product images */
.card-pastel-blue .product-img-wrapper { background-color: #f0f9ff; }
.card-pastel-pink .product-img-wrapper { background-color: #fff1f2; }
.card-pastel-teal .product-img-wrapper { background-color: #f0fdfa; }
.card-pastel-yellow .product-img-wrapper { background-color: #fefbeb; }

.premium-card .product-img-wrapper {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: border-radius var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-normal);
}

.premium-card:hover .product-img-wrapper {
  box-shadow: 0 15px 30px -10px rgba(10, 79, 96, 0.15);
}

/* Multiply mix blend mode for transparent product photos on pastels */
.premium-card .product-img-wrapper img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition-slow);
}

.premium-card:hover .product-img-wrapper img {
  transform: scale(1.1) rotate(-1deg);
}

/* Morphing shapes on premium card hover */
.premium-card:hover .shape-1 {
  border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
}
.premium-card:hover .shape-2 {
  border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
}
.premium-card:hover .shape-3 {
  border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
}
.premium-card:hover .shape-4 {
  border-radius: 55% 45% 45% 55% / 45% 55% 55% 45%;
}

/* Premium Wishlist Button */
.product-wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  z-index: 10;
  transition: var(--transition-fast);
}

.product-wishlist-btn:hover {
  background-color: var(--secondary);
  color: var(--text-white);
  box-shadow: var(--shadow-coral);
  transform: scale(1.1);
}

/* Modern Semi-Transparent Badges */
.glass-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(14, 165, 233, 0.85);
  backdrop-filter: blur(4px);
  color: var(--text-white);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
}

/* Quick Inquiry Action Layer on Hover */
.product-hover-actions {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 79, 96, 0.4) 0%, rgba(10, 79, 96, 0) 100%);
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  z-index: 9;
  pointer-events: none;
}

.premium-card:hover .product-hover-actions,
.organic-card:hover .product-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-inquiry-btn {
  background-color: var(--bg-white);
  color: var(--dark-teal);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-round);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  pointer-events: auto;
}

.quick-inquiry-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Premium Card Details */
.premium-card .product-details {
  padding: 20px 0 8px 0;
}

.premium-card .product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.premium-card:hover .product-title {
  color: var(--primary);
}

.premium-card .product-price {
  font-size: 1.2rem;
  color: var(--secondary);
}

/* Responsive grid styles for Premium Featured Section */
@media (max-width: 1024px) {
  .featured-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .featured-editorial-card {
    padding: 30px;
    text-align: center;
    align-items: center;
  }
  .editorial-btn {
    align-self: center;
  }
  .editorial-highlights {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .premium-card .product-details {
    padding: 20px;
  }
}

/* Organic Showcase Section Styles */
.organic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.organic-card {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal);
}

.organic-card:hover {
  transform: translateY(-8px);
}

/* Organic Image Wrapper with different shapes */
.organic-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: border-radius var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-normal);
}

.organic-card:hover .organic-img-wrapper {
  box-shadow: 0 15px 30px -10px rgba(10, 79, 96, 0.15);
}

.organic-img-wrapper img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition-slow);
}

.organic-card:hover .organic-img-wrapper img {
  transform: scale(1.1) rotate(-1deg);
}

/* Defining the 4 distinct organic pebble shapes */
.shape-1 {
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}
.shape-2 {
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}
.shape-3 {
  border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
}
.shape-4 {
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
}

/* Morphing shapes on card hover */
.organic-card:hover .shape-1 {
  border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
}
.organic-card:hover .shape-2 {
  border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
}
.organic-card:hover .shape-3 {
  border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
}
.organic-card:hover .shape-4 {
  border-radius: 55% 45% 45% 55% / 45% 55% 55% 45%;
}

/* Soft pastel theme background classes */
.bg-pastel-blue { background-color: #f0f9ff; }
.bg-pastel-pink { background-color: #fff1f2; }
.bg-pastel-mint { background-color: #f0fdfa; }
.bg-pastel-yellow { background-color: #fefbeb; }
.bg-pastel-purple { background-color: #faf5ff; }
.bg-pastel-orange { background-color: #fff7ed; }
.bg-pastel-teal { background-color: #f0fdf4; }
.bg-pastel-rose { background-color: #fff1f2; }

/* Organic Card details */
.organic-details {
  padding: 18px 8px 8px;
  text-align: center;
}

.organic-sku {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.organic-details h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.organic-card:hover .organic-details h3 {
  color: var(--primary);
}

.organic-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Category showcase tabs styling */
.showcase-tabs {
  display: inline-flex;
  background-color: var(--bg-light);
  padding: 6px;
  border-radius: var(--radius-round);
  margin-top: 30px;
  gap: 4px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.showcase-tab {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-round);
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.showcase-tab.active {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.showcase-tab:hover:not(.active) {
  color: var(--primary);
}

/* Tab panel logic */
.showcase-panel {
  display: none;
}
.showcase-panel.active {
  display: block;
  animation: organicFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes organicFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive grid for showcase */
@media (max-width: 992px) {
  .organic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .organic-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .showcase-tabs {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
    width: 100%;
    justify-content: center;
    padding: 10px;
  }
  .showcase-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
