
/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --renova-primary: #1B3A2D;
  --renova-secondary: #C6A96C;
  --renova-accent: #D4AF37;
  --renova-dark: #111827;
  --renova-light: #F9FAFB;
  --renova-white: #FFFFFF;
  --renova-text: #374151;
  --renova-text-light: #6B7280;
  --renova-border: #E5E7EB;
  --renova-success: #059669;
  --renova-danger: #DC2626;
  --renova-warning: #D97706;

  --font-heading: 'Figtree', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Base Reset & Typography --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--renova-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.mt126{
  margin-top:126px;
}

.mt100{
  margin-top:100px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--renova-dark);
  margin-bottom: 0.5em;
}

a {
  color: var(--renova-primary);
  transition: color var(--transition-base);
  text-decoration: none;
}

a:hover {
  color: var(--renova-secondary);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--renova-primary);
  color: var(--renova-white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Announcement Bar */
.announcement-bar {
  background: var(--renova-primary);
  color: var(--renova-white);
  font-size: 0.8125rem;
  padding: 6px 0;
}

.announcement-bar .announcement-text {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar .announcement-text i {
  color: var(--renova-secondary);
  flex-shrink: 0;
}

.announcement-bar .topbar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.announcement-bar .topbar-links a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
}

.announcement-bar .topbar-links a:hover {
  color: var(--renova-white);
}

.announcement-bar .topbar-links i {
  font-size: 0.875rem;
}

/* Main Navbar */
.main-navbar {
  background: var(--renova-white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: box-shadow var(--transition-base);
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.main-navbar .navbar-brand img {
  height: 44px;
  width: auto;
}

.main-navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--renova-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition-base);
  position: relative;
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #FADE4F;
  transform: scaleX(0);
  transition: transform var(--transition-base);
  border-radius: 2px;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #FADE4F !important;
}

.main-navbar .dropdown-menu {
  border: none;
  /*border-radius: 12px;*/
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 200px;
  animation: dropdownFadeIn 0.2s ease-out;
}

.main-navbar .dropdown-item {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--renova-text);
  transition: background var(--transition-base), color var(--transition-base);
}

.main-navbar .dropdown-item:hover {
  background: var(--renova-light);
  color: var(--renova-primary);
}

.main-navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.main-navbar .cart-btn {
  position: relative;
  background: none;
  border: none;
  padding: 8px;
  color: var(--renova-dark);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
}

.main-navbar .cart-btn:hover {
  color: var(--renova-primary);
}

.main-navbar .cart-btn .cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--renova-primary);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform-origin: center center;
}

/* Dark green gradient overlay — matching original Renova brand */
.hero-slideshow .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(27, 58, 45, 0.78) 0%,
      rgba(17, 24, 39, 0.62) 50%,
      rgba(27, 58, 45, 0.45) 100%);
}

.hero-slideshow .slide.active {
  opacity: 1;
}

/* Ken Burns — gentle zoom in effect on active slide */
.hero-slideshow .slide.active {
  animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--renova-white);
  padding: 4rem 0;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--renova-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease-out 0.3s forwards;
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease-out 0.5s forwards;
}

.hero-content .btn-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease-out 0.7s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-renova {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-renova-primary {
  background: var(--renova-primary);
  color: var(--renova-white);
  border-color: var(--renova-primary);
}

.btn-renova-primary:hover {
  background: #152d22;
  border-color: #152d22;
  color: var(--renova-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 45, 0.35);
}

.btn-renova-outline {
  background: transparent;
  color: var(--renova-white);
  border-color: var(--renova-white);
}

.btn-renova-outline:hover {
  background: var(--renova-white);
  color: var(--renova-dark);
  transform: translateY(-2px);
}

.btn-renova-light {
  background: var(--renova-white);
  color: var(--renova-primary);
  border-color: var(--renova-white);
}

.btn-renova-light:hover {
  background: var(--renova-light);
  color: var(--renova-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-renova-secondary {
  background: var(--renova-secondary);
  color: var(--renova-white);
  border-color: var(--renova-secondary);
}

.btn-renova-secondary:hover {
  background: #b08c4f;
  border-color: #b08c4f;
  color: var(--renova-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 169, 108, 0.35);
}

.btn-renova-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-renova-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-renova-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--renova-primary);
  color: var(--renova-white);
  border: none;
  transition: all var(--transition-base);
}

.btn-renova-icon:hover {
  background: #152d22;
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  color: var(--renova-white);
}

/* ============================================
   FEATURES BAR (Icon Box Row)
   ============================================ */
.features-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--renova-border);
}

.feature-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  height: 100%;
}

.feature-icon-box .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--renova-light) 0%, rgba(27, 58, 45, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.375rem;
  color: var(--renova-primary);
  transition: all var(--transition-base);
}

.feature-icon-box:hover .feature-icon {
  background: var(--renova-primary);
  color: var(--renova-white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(27, 58, 45, 0.25);
}

.feature-icon-box .feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--renova-dark);
  margin-bottom: 0.25rem;
}

.feature-icon-box .feature-desc {
  font-size: 0.8125rem;
  color: var(--renova-text-light);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   SECTIONS — Common
   ============================================ */
.section {
  padding: 0 0 5rem;
}

.section-sm {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--renova-secondary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--renova-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--renova-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   PROMO GRID (3 Call-to-Action Cards)
   ============================================ */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.promo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(27, 58, 45, 0.80) 0%,
      rgba(17, 24, 39, 0.50) 100%);
  z-index: 1;
  transition: opacity var(--transition-smooth);
}

.promo-card:hover::before {
  opacity: 0.7;
}

.promo-card .promo-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--renova-white);
}

.promo-card .promo-tag {
  display: inline-block;
  background: var(--renova-secondary);
  color: var(--renova-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-card .promo-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--renova-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.promo-card .promo-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.promo-card.promo-featured {
  grid-row: span 2;
  min-height: 580px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--renova-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--renova-border);
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card .product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--renova-light);
}

.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-card .product-badge,
.product-card .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #DC2626;
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card .product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card .product-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--renova-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--renova-dark);
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card .product-action-btn:hover {
  background: var(--renova-primary);
  color: var(--renova-white);
  transform: scale(1.1);
}

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

.product-card .product-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--renova-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-card .price-current {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--renova-primary);
}

.product-card .price-original {
  font-size: 0.875rem;
  color: var(--renova-text-light);
  text-decoration: line-through;
}

.product-card .btn-add-cart {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 50px;
  background: var(--renova-primary);
  color: var(--renova-white);
  border: none;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-card .btn-add-cart:hover {
  background: #152d22;
  transform: translateY(-1px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-us {
  background: var(--renova-light);
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--renova-white);
  border-radius: 16px;
  border: 1px solid var(--renova-border);
  height: 100%;
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--renova-primary), #2d5a42);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--renova-white);
  transition: transform var(--transition-base);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card .why-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--renova-dark);
  margin-bottom: 0.5rem;
}

.why-card .why-desc {
  font-size: 0.875rem;
  color: var(--renova-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--renova-primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.testimonials-section .section-label {
  color: var(--renova-secondary);
}

.testimonials-section .section-title {
  color: var(--renova-white);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testimonials-section .stars {
  color: #FBBF24;
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.testimonials-section .rating-label {
  font-size: 0.875rem;
  color: var(--renova-secondary);
  font-weight: 600;
}

.testimonials-section .rating-count {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}



.testimonial-card .testimonial-stars {
  color: #FBBF24;
  font-size: 0.8125rem;
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(198, 169, 108, 0.4);
}

.testimonial-card .author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--renova-white);
  margin-bottom: 0;
}

.testimonial-card .author-location {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ============================================
   VIDEO CTA SECTION
   ============================================ */
.video-cta-section {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.video-cta-section .video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(27, 58, 45, 0.88) 0%,
      rgba(17, 24, 39, 0.80) 100%);
}

.video-cta-section .video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.video-cta-content {
  position: relative;
  z-index: 2;
  color: var(--renova-white);
}

.video-cta-content h2 {
  color: var(--renova-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.video-cta-content p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--renova-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--renova-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.15);
  border: none;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
  background: var(--renova-secondary);
  color: var(--renova-white);
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
  background: var(--renova-light);
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--renova-white);
  border-radius: 20px;
  border: 1px solid var(--renova-border);
  height: 100%;
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--renova-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--renova-secondary);
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--renova-text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-card .stat-desc {
  font-size: 0.8125rem;
  color: var(--renova-text-light);
  line-height: 1.5;
  margin: 0;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================
   ABOUT / WHO WE ARE
   ============================================ */
.about-section {
  position: relative;
  /*background-image: url("../images/pattern_img1.png");*/
  background-color:#f5f5f5 ;
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
  z-index: 1;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #FFFFFF 60%, rgba(255, 255, 255, 0.4) 100%);
  z-index: -1;
  pointer-events: none;
}

.about-section .col-image {
  position: relative;
}

.about-section .col-text {
  padding: 21px 21px 21px 21px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .about-section .col-text {
    padding: 2em 2em 2em 2em;
  }
}

@media (max-width: 991.98px) {
  .about-section::before {
    background-image: linear-gradient(180deg, #FFFFFF 70%, rgba(255, 255, 255, 0.4) 100%);
  }
}

.about-image-container {
  position: relative;
  background-color: transparent;
  margin: 0 1em 0 2em;
  padding: 10px;
  background-image: linear-gradient(135deg, #FFDE16 0%, #2346A7 100%);
  display: block;
}

.about-image-container img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 200px;
  background-image: linear-gradient(135deg, #FFDE16 0%, #2346A7 100%);
  padding: 10px;
  z-index: 2;
}

.about-image-badge .badge-inner {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.about-image-badge .badge-number {
  font-family: "Figtree", sans-serif;
  font-size: 67px;
  font-weight: 700;
  line-height: 1;
  color: #2346A7;
  margin-bottom: 0;
}

.about-image-badge .badge-text {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #1B3A2D;
  margin-top: 5px;
}

@media (max-width: 991.98px) {
  .about-image-container {
    margin: 0;
  }

  .about-image-badge {
    width: 175px;
    height: 175px;
    left: auto;
    right: -15px;
    bottom: -20px;
  }

  .about-image-badge .badge-number {
    font-size: 50px;
  }

  .about-image-badge .badge-text {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .about-image-container img {
    height: 300px;
  }

  .about-image-badge {
    width: 125px;
    height: 125px;
    padding: 5px;
    right: -10px;
    bottom: -15px;
  }

  .about-image-badge .badge-number {
    font-size: 35px;
  }

  .about-image-badge .badge-text {
    font-size: 11px;
    margin-top: 2px;
  }
}

.about-section .about-label {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2346A7;
  margin-bottom: 0.75rem;
  display: block;
}

.about-section .about-title {
  font-family: "Figtree", sans-serif;
  font-size: 37px;
  font-weight: 600;
  color: #24262B;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-section .about-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4D515C;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.about-section .btn-renova-primary {
  background-color: #FFDE16;
  border: 1px solid #FFDE16;
  border-radius: 0px;
  color: #2346A7;
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 40px;
  line-height: 1;
  transition: all 0.3s ease;
  box-shadow: none;
  display: inline-block;
  text-decoration: none;
}

.about-section .btn-renova-primary:hover {
  background-color: #2346A7;
  border-color: #2346A7;
  color: #FFFFFF;
  transform: none;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .about-section .about-label {
    font-size: 13px;
  }

  .about-section .about-title {
    font-size: 25px;
  }

  .about-section .btn-renova-primary {
    font-size: 12px;
    padding: 12px 30px;
  }
}

@media (max-width: 767.98px) {
  .about-section .about-label {
    font-size: 12px;
  }

  .about-section .about-title {
    font-size: 24px;
  }

  .about-section .btn-renova-primary {
    font-size: 11px;
    padding: 10px 25px;
  }
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.about-feature-item .feature-icon {
  font-size: 35px;
  color: #2346A7;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

.about-feature-item .feature-title {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #24262B;
  margin-bottom: 7px;
  line-height: 1.2;
}

.about-feature-item .feature-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4D515C;
  line-height: 1.5;
  margin: 0;
}

.about-divider {
  border: 0;
  border-top: 1px solid #E4E5E7;
  margin: 1.5rem 0;
  opacity: 1;
}

.about-note {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: #4D515C;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .about-note {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .about-note {
    font-size: 11px;
  }
}

@media (min-width: 992px) {
  .about-section .col-text {
    width: 45%;
    flex: 0 0 45%;
    padding: 3em 5em 3em 1em;
  }

  .about-section .col-image {
    width: 55%;
    flex: 0 0 55%;
  }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--renova-primary);
  padding: 4rem 0;
}

.newsletter-section .newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--renova-white);
  margin-bottom: 0.5rem;
}

.newsletter-section .newsletter-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 600px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 50px 0 0 50px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--renova-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--renova-secondary);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 0 50px 50px 0;
  background: var(--renova-secondary);
  color: var(--renova-white);
  border: 2px solid var(--renova-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.newsletter-form button:hover {
  background: #b08c4f;
  border-color: #b08c4f;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.9);
  font-size: 0.8rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.topbar-social-icon:hover {
  background:#2346A7;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   MAIN NAVBAR
   ============================================ */

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--renova-dark);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 4rem;
}

.site-footer .footer-brand img {
  height: 44px;
  margin-bottom: 1rem;
}

.site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer .footer-contact-list li i {
  color: var(--renova-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.site-footer h5,
.site-footer .footer-heading {
  font-family: var(--font-heading, 'Figtree', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--e-global-color-044b931, #070809);
  margin-bottom: 1.25rem;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  padding: 0.3rem 0;
}

.site-footer .footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer .footer-links a:hover {
  color: var(--renova-white);
  padding-left: 4px;
}

.site-footer .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.site-footer .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.site-footer .social-icon:hover {
  background: var(--renova-primary);
  color: var(--renova-white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #DCDCDE;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom .copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-bottom .copyright a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .payment-icons img {
  height: 28px;
  opacity: 0.7;
}

/* ============================================
   ANIMATIONS — Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-down.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--renova-light);
  color: var(--renova-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
  .promo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .promo-card.promo-featured {
    grid-row: span 1;
    min-height: 360px;
  }

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

}

@media (max-width: 767.98px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .announcement-bar .announcement-text span {
    display: none;
  }

  .announcement-bar .announcement-text::after {
    content: '35% off for new members — This month only!';
    font-size: 0.75rem;
  }

  .hero-section {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-form input {
    border-radius: 50px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
  }

  .newsletter-form button {
    border-radius: 50px;
    justify-content: center;
  }

  .play-btn {
    width: 64px;
    height: 64px;
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .stat-card .stat-number {
    font-size: 2.25rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary-renova {
  color: var(--renova-primary) !important;
}

.text-secondary-renova {
  color: var(--renova-secondary) !important;
}

.bg-primary-renova {
  background-color: var(--renova-primary) !important;
}

.bg-secondary-renova {
  background-color: var(--renova-secondary) !important;
}

.bg-light-renova {
  background-color: var(--renova-light) !important;
}

.bg-dark-renova {
  background-color: var(--renova-dark) !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

.rounded-16 {
  border-radius: 16px !important;
}

/* ============================================
   CTA YELLOW BUTTON
   ============================================ */
.btn-renova-yellow {
  background-color: #FFDE16;
  color: #2346A7;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #FFDE16;
  border-radius: 0;
  padding: 15px 30px;
  transition: all 0.3s ease;
  line-height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-renova-yellow:hover,
.btn-renova-yellow:focus {
  background-color: #2346A7;
  color: #FFFFFF;
  border-color: #2346A7;
}

.btn-renova-yellow i {
  font-size: 1.1em;
}

/* Who We Are Image Responsive Height */
.img-who-we-are {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 767px) {
  .img-who-we-are {
    height: 300px;
  }
}

/* ============================================
   HERO CAROUSEL (from index.html inline)
   ============================================ */
.hero-carousel .carousel-item {
  height: 100%;

}

.hero-carousel .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-carousel .carousel-item .ken-burns{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ken-burns {
  animation: kenBurns 15s linear infinite alternate;
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeInUp 1s ease forwards;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 40px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius:3px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero-carousel .carousel-control-prev {
  left: 20px;
}
.hero-carousel .carousel-control-next {
  right: 20px;
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background-color: #FFDE16;
}

/* ============================================
   ICON BOX CUSTOM (Features bar)
   ============================================ */
.icon-box-custom .icon-wrapper {
  color: #2346A7;
  font-size: 2.5rem;
  line-height: 1;
}

.icon-box-custom .title {
  font-size: 1.1rem;
  color: var(--renova-dark, #111);
  font-family: var(--font-heading, sans-serif);
  font-weight: 700;
}

/* ============================================
   PROMO CTA BOX
   ============================================ */
.promo-cta-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  transition: 0.3s;
}

.promo-cta-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.promo-cta-box:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.promo-cta-box .content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-cta-box h3 {
  font-family: var(--font-heading, sans-serif);
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.btn-promo-more {
  display: inline-block;
  background-color: #fde01a;
  color: #111;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 10px 24px;
  text-decoration: none;
  transition: 0.3s;
  align-self: flex-start;
}

.btn-promo-more:hover {
  background-color: #111;
  color: #fde01a;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--renova-primary);
  font-family: var(--font-heading, sans-serif);
}

/* ============================================
   FOOTER COMPONENT (from footer.html inline)
   ============================================ */
.site-footer {
  background-color: #EEEFF1;
  font-family: 'Inter', sans-serif;
}

.site-footer a {
  color: #4D515C;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #FFDE16;
}

.footer-text {
  color: #4D515C;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #FFDE16;
  color: #2346A7 !important;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background-color: #2346A7;
  color: #FFFFFF !important;
}

.footer-col-main {
  width: 100%;
}

.footer-col-nav {
  width: 100%;
}

@media (min-width: 768px) {
  .footer-col-main {
    width: 40%;
  }

  .footer-col-nav {
    width: 20%;
  }
}

.footer-icon {
  color: #2346A7;
  font-size: 18px;
  width: 24px;
}

.footer-list li {
  padding-bottom: 7px;
}

/* ============================================
   NEWSLETTER INPUT/BTN (from newsletter.html inline)
   ============================================ */
.newsletter-input::placeholder {
  color: #6C757D !important;
  opacity: 1 !important;
}

.newsletter-input {
  background-color: #F4F5F7 !important;
  border: 1px solid #F4F5F7 !important;
  color: #24262B !important;
  box-shadow: none !important;
}

.newsletter-input:focus {
  background-color: #FFFFFF !important;
  border-color: #FFDE16 !important;
  outline: none !important;
}

.newsletter-btn {
  background-color: #FFDE16 !important;
  color: #2346A7 !important;
  border: none !important;
  transition: all 0.3s ease;
  opacity: 1 !important;
}

.newsletter-btn:hover {
  background-color: #2346A7 !important;
  color: #FFFFFF !important;
}

@media (max-width: 767px) {
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================
   PROMO SECTION (CTA Boxes with bg images)
   ============================================ */
.promo-section-bg {
  background-color: #f9f9f9;
  background-image: linear-gradient(90deg, #FFFFFF 50%, rgba(255, 255, 255, 0.8) 50%), url('../images/pattern_img2.png');
  background-position: center;
  background-repeat: repeat;
  padding: 3rem 0;
  margin: 4rem 0;
}

.promo-cta-box .bg-img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}

.promo-cta-box.zoom-in:hover .bg-img {
  transform: scale(1.1);
}

.promo-cta-box.move-left:hover .bg-img {
  transform: translateX(-3%);
}

.promo-cta-box .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 8, 9, 0.2);
  transition: background-color 0.6s ease;
  z-index: 1;
}

.promo-cta-box:hover .overlay {
  background-color: rgba(7, 8, 9, 0.6);
}

.promo-cta-box .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.promo-box-tall {
  min-height: 570px;
}

.promo-box-tall .content {
  /*padding: 2rem;*/
  height: 100%;
}

.promo-box-short {
  min-height: 275px;
}

.promo-box-short .content {
  padding: 5% 40% 5% 5%;
  height: 100%;
  text-align: left;
}

.btn-promo-new {
  display: inline-block;
  background-color: #FFDE16;
  color: #2346A7;
  font-family: var(--font-heading, sans-serif);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 24px;
  text-transform: uppercase;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  align-self: flex-start;
}

.btn-promo-new:hover {
  background-color: #2346A7;
  color: #FFFFFF;
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */
.featured-products-section {
  position: relative;
  padding: 5em 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, #2346A7 45%), url('/static/images/blank/featured-products-section-bg.jpg') left center / contain no-repeat;
}

.featured-product-card {
  background-color: var(--renova-white);
  padding: 14px 14px 21px 14px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-product-card:hover {
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.featured-product-card .btn-add-to-cart {
  display: inline-block;
  background-color: #FFDE16;
  color: #2346A7;
  font-family: var(--font-heading, sans-serif);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 24px;
  text-transform: uppercase;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 14px;
}

.featured-product-card .btn-add-to-cart:hover {
  background-color: #2346A7;
  color: var(--renova-white);
}

.featured-product-card .price {
  color: #C6A96C;
  font-family: var(--font-heading, sans-serif);
  font-weight: 600;
  font-size: 16px;
}

.featured-product-card .product-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--renova-dark);
  margin-bottom: 8px;
}

.featured-product-card .badge.bg-danger {
  background-color: #2346A7 !important;
  border-radius: 50% !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 13px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us-section {
  padding: 7em 0;
}

.why-choose-us-container {
  max-width: 1512px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.why-choose-us-bg-wrapper {
  background-image: url('/static/images/tu/bg00.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4em;
}

.why-choose-us-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3em;
  width: 45%;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

@media (max-width: 1024px) {
  .why-choose-us-bg-wrapper {
    padding: 2em;
  }

  .why-choose-us-card {
    width: 100%;
  }
}

.why-choose-us-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.why-choose-us-icon-box:last-child {
  margin-bottom: 0;
}

.why-choose-us-icon-box .icon {
  font-size: 35px;
  color: #2346A7;
  line-height: 1;
}

.why-choose-us-icon-box .title {
  color: #24262B;
  font-family: var(--font-heading, sans-serif);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.3em;
}

.why-choose-us-icon-box .description {
  color: #4D515C;
  font-size: 14px;
  line-height: 1.4em;
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
  background-color: #FFFFFF;
  border: 5px solid #EEEFF1;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.testimonial-card .quote-icon {
  position: absolute;
  bottom: -20px;
  right: 30px;
  font-size: 140px;
  font-family: "Georgia", serif;
  color: #D6E9F4;
  line-height: 1;
  z-index: 0;
}

.testimonial-card .card-content {
  position: relative;
  z-index: 1;
}

.testimonial-card .stars {
  text-align: center;
  color: #FFDE16;
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial-card .stars i {
  margin: 0 3px;
}

.testimonial-card .text {
  font-size: 16px;
  line-height: 1.4em;
  color: #4D515C;
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-card .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-card .author-name {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #24262B;
  margin-bottom: 4px;
}

.testimonial-card .author-des {
  font-size: 14px;
  color: #4D515C;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-section {
  padding: 10em 0;
  background-color: #FFFFFF;
  position: relative;
}

.error-content-box {
  background-color: transparent;
  background-image: linear-gradient(90deg, #EEEFF1 0%, #FFFFFF 100%);
  padding: 3em;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.error-number {
  font-family: var(--font-heading);
  font-size: 67px;
  font-weight: 800;
  line-height: 1;
  color: #2346A7;
  margin-bottom: 1rem;
}

.error-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #24262B;
  margin-bottom: 1.5rem;
}

.error-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #4D515C;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.error-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .error-section {
    padding: 5em 0;
  }

  .error-content-box {
    padding: 2em 0;
    text-align: left;
    align-items: flex-start;
  }

  .error-number {
    font-size: 67px;
  }

  .error-title {
    font-size: 28px;
  }
}

/* About Page Styles */
.about-hero,
.page-hero {
  position: relative;
  padding: 10em 0;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 70px;
}

.about-hero {
  background-image: url("/static/images/blank/about_bm.jpg");
}

.page-hero {
  background-image: url("/static/images/blank/product-banner-bg.jpg");
}

.about-hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #070809;
  opacity: 0.5;
  z-index: 1;
}

.about-hero h1,
.page-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--renova-white, #FFFFFF);
  font-family: "Figtree", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.about-hero h3,
.page-hero h3 {
  position: relative;
  z-index: 2;
  color: var(--renova-white, #FFFFFF);
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 1px;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   VALUE SECTION
   ============================================ */
.value-section {
  background-color: #EEEFF1;
  padding: 5em 0 7em 0;
}

.value-section .section-label {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2346A7;
  margin-bottom: 0.75rem;
  display: block;
}

.value-section .section-title {
  font-family: "Figtree", sans-serif;
  font-size: 37px;
  font-weight: 600;
  color: #24262B;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: left;
}

.value-section .section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4D515C;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.value-card {
  height: 100%;
  padding: 3em 2em;
  border-radius: 0px;
  border: none;
  text-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card 1: Vision (White) */
.card-vision {
  background-color: #FFFFFF;
}

.card-vision .value-title {
  color: #24262B;
}

.card-vision .value-desc {
  color: #4D515C;
}

/* Card 2: Mission (Blue) */
.card-mission {
  background-color: #2346A7;
}

.card-mission .value-title {
  color: #FFFFFF;
}

.card-mission .value-desc {
  color: #FFFFFF;
  opacity: 0.85;
}

/* Card Titles */
.value-card .value-title {
  font-family: "Figtree", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 15px;
}

/* Card Descriptions */
.value-card .value-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* Icon Box Styles */
.value-card .value-icon {
  width: 65px;
  height: 65px;
  border-radius: 0px;
  background-color: #FFDE16;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
  font-size: 35px;
  color: #2346A7;
  transition: transform 0.3s ease;
  border: none;
}

.value-card:hover .value-icon {
  transform: scale(1.08);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(35, 70, 167, 0.1);
}

@media (min-width: 992px) {
  .value-section .col-text {
    width: 40%;
    flex: 0 0 40%;
    padding: 3em 5em 3em 1em;
  }

  .value-section .col-cards {
    width: 60%;
    flex: 0 0 60%;
    padding: 0;
  }
}

@media (max-width: 991.98px) {
  .value-section {
    padding: 3em 0 4em 0;
  }

  .value-section .col-text {
    width: 100%;
    flex: 0 0 100%;
    padding: 2em;
    margin-bottom: 2rem;
  }

  .value-section .col-cards {
    width: 100%;
    flex: 0 0 100%;
    padding: 0 15px;
  }

  .value-section .section-title {
    font-size: 25px;
  }

  .value-card .value-title {
    font-size: 18px;
  }

  .value-card {
    padding: 2em 1.5em;
  }
}

@media (max-width: 767.98px) {
  .value-section .col-text {
    padding: 21px;
  }

  .value-section .section-title {
    font-size: 24px;
  }
}

.about-video-cta {
  position: relative;
  padding: 7em 0 10em 0;
  text-align: center;
  overflow: hidden;
  background: url('../images/happy-couple-of-adults-choosing-ceramic-tile-for-bathroom-.jpg') center/cover no-repeat;
}

.about-video-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #070809;
  opacity: 0.5;
  z-index: 1;
}

.about-video-cta .container {
  max-width: 720px;
  margin: 0 auto;
}

.about-video-cta .reveal {
  position: relative;
  z-index: 2;
}

.about-video-cta h2 {
  font-family: "Figtree", sans-serif;
  font-size: 67px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.about-video-cta p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 35px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-video-cta .btn-renova-primary {
  background-color: #FFDE16;
  border: 1px solid #FFDE16;
  border-radius: 0px;
  color: #2346A7;
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 40px;
  line-height: 1;
  transition: all 0.3s ease;
  box-shadow: none;
  display: inline-block;
  text-decoration: none;
}

.about-video-cta .btn-renova-primary:hover {
  background-color: #2346A7;
  border-color: #2346A7;
  color: #FFFFFF;
  transform: none;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .about-video-cta {
    padding: 3em 0 7em 0;
  }

  .about-video-cta .container {
    max-width: 600px;
  }

  .about-video-cta h2 {
    font-size: 37px;
    letter-spacing: -1px;
  }

  .about-video-cta p {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .about-video-cta h2 {
    font-size: 32px;
  }

  .about-video-cta p {
    font-size: 14px;
  }
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
  position: relative;
  background-color: transparent;
  z-index: 3;
}

.stats-box-wrapper {
  background-color: #FFFFFF;
  border-radius: 0px;
  border: none;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  margin-top: -7em;
  padding: 0;
  overflow: hidden;
}

.stats-box-wrapper .stat-item {
  text-align: center;
  padding: 3em;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-box-wrapper .stat-label {
  font-family: "Figtree", sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #24262B;
  line-height: 1.3;
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: 0;
}

.stats-box-wrapper .stat-number {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #2346A7;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}

.stats-box-wrapper .stat-suffix {
  font-size: 50px;
  font-weight: 700;
  color: #2346A7;
}

.stats-box-wrapper .stat-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #4D515C;
  line-height: 1.4;
  margin: 0;
  max-width: 250px;
}

@media (max-width: 991.98px) {
  .stats-box-wrapper {
    margin-top: -5em;
  }

  .stats-box-wrapper .stat-item {
    padding: 2em;
  }

  .stats-box-wrapper .stat-label {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .stats-box-wrapper .stat-number,
  .stats-box-wrapper .stat-suffix {
    font-size: 31px;
    letter-spacing: -1px;
    margin-bottom: 4px;
  }

  .stats-box-wrapper .stat-desc {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .stats-box-wrapper {
    margin-top: -4em;
  }

  .stats-box-wrapper .stat-item {
    padding: 24px 14px;
  }

  .stats-box-wrapper .stat-label {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .stats-box-wrapper .stat-number,
  .stats-box-wrapper .stat-suffix {
    font-size: 30px;
  }

  .stats-box-wrapper .stat-desc {
    font-size: 14px;
  }
}

/* ============================================
   BLOG / NEWS SECTION
   ============================================ */
.blog-section {
  background-color: #F5F5F5;
  padding: 5em 0 7em 0;
}

.blog-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-section .section-label {
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2346A7;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.blog-section .section-title {
  font-family: "Figtree", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #24262B;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin: 0;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 0px;
  overflow: hidden;
  border: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: none;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

.blog-card .blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-card .blog-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FFDE16;
  color: #2346A7;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 0.6em 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0px;
  margin: 0;
  z-index: 2;
  line-height: 1;
}

.blog-card .blog-body {
  padding: 20px 21px 0 21px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card .blog-title {
  font-family: "Figtree", sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #24262B;
  line-height: 1.3;
  margin-bottom: 21px;
}

.blog-card .blog-title a {
  color: #24262B;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.6;
  font-weight: 400;
  transition: color 0.2s ease;
  display: inline-block;
}

.blog-card .blog-title a:hover {
  color: #2346A7;
}

.blog-card .blog-date {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #7A7A7A;
  line-height: 1.5;
  padding: 10px 21px;
  border-top: 1px solid #EEEFF1;
  margin-top: auto;
  display: block;
}

@media (max-width: 991px) {

  .about-hero,
  .page-hero {
    padding: 7em 0;
  }

  .about-hero h1,
  .page-hero h1 {
    font-size: 37px;
    letter-spacing: -1px;
  }

  .about-hero h3,
  .page-hero h3 {
    font-size: 21px;
  }

  .blog-section {
    padding: 3em 0 5em 0;
  }

  .blog-section .section-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .blog-card .blog-title,
  .blog-card .blog-title a {
    font-size: 18px;
  }

  .blog-card .blog-date {
    font-size: 12px;
  }
}

@media (max-width: 767px) {

  .about-hero,
  .page-hero {
    padding: 5em 0;
  }

  .about-hero h1,
  .page-hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .about-hero h3,
  .page-hero h3 {
    font-size: 20px;
  }

  .blog-section {
    padding: 2em 0 3em 0;
  }

  .blog-card .blog-title,
  .blog-card .blog-title a {
    font-size: 18px;
  }

  .blog-card .blog-title {
    margin-bottom: 15px;
  }

  .blog-card .blog-date {
    font-size: 11px;
  }
}

/* ============================================
   CONTACT SECTION (Shared Component)
   ============================================ */
.contact-section {
  background-color: #FFFFFF !important;
  padding: 5em 0em 5em 0em !important;
}

.contact-section .section-label {
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2346A7;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 20px;
}

.contact-section .section-title {
  font-family: "Figtree", sans-serif;
  font-size: 37px;
  font-weight: 600;
  color: #24262B;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.contact-section .contact-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4D515C;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-item .contact-icon {
  background-color: #FFDE16;
  color: #2346A7;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  /* Square */
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item .contact-icon i {
  color: #2346A7 !important;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: #2346A7;
  color: #FFDE16;
}

.contact-item:hover .contact-icon i {
  color: #FFDE16 !important;
}

.contact-item .contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item .contact-title {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #24262B;
  margin-bottom: 6px;
  line-height: 1.2;
}

.contact-item .contact-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 4em 0;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-item .contact-title {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 3em 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ==========================================================================
   PRODUCT ARCHIVE & CATALOG STYLES (High-Fidelity WooCommerce Matching)
   ========================================================================== */

/* Search Widget */
.sidebar-search-widget .elementor-search-form__container {
  display: flex;
  height: 50px;
  border: 1px solid #DCDCDE;
  background: #FFFFFF;
  align-items: stretch;
}

.sidebar-search-widget .elementor-search-form__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 16.6px;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #24262B;
  outline: none;
  height: 100%;
}

.sidebar-search-widget .elementor-search-form__submit {
  width: 50px;
  border: none;
  background-color: #FFDE16;
  color: #2346A7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-search-widget .elementor-search-form__submit:hover {
  background-color: #2346A7;
  color: #FFFFFF;
}

/* Categories Icon Card */
.sidebar-categories-card {
  background-color: #FFFFFF;
  border: 1px solid #DCDCDE;
  padding: 2em;
  margin-bottom: 25px;
}

.sidebar-categories-card .widget-title {
  font-family: "Figtree", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #24262B;
  margin-bottom: 12px;
}

.sidebar-categories-card .divider-line {
  height: 2px;
  background-color: #EEEFF1;
  margin-bottom: 20px;
  width: 100%;
}

.category-icon-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.category-icon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #DCDCDE;
  transition: border-color 0.3s ease;
}

.category-icon-item:last-child {
  border-bottom: none;
}

.category-icon-item:hover {
  border-bottom-color: #2346A7;
}

.category-icon-item .category-icon {
  font-size: 21px;
  color: #2346A7;
  width: 24px;
  display: flex;
  justify-content: center;
}

.category-icon-item .category-name {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  /*font-weight: 600;*/
  color: #24262B;
  text-decoration: none;
  transition: color 0.3s ease;
  flex: 1;
}

.category-icon-item:hover .category-name {
  color: #2346A7;
}

/* Newsletter Widget Card */
.sidebar-newsletter-card {
  background-color: #2346A7;
  padding: 2em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.sidebar-newsletter-card .widget-title {
  font-family: "Figtree", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.sidebar-newsletter-card .widget-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 15px;
  opacity: 0.9;
}

.sidebar-newsletter-card .divider-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  width: 100%;
}

.sidebar-newsletter-card .form-control {
  border-radius: 0;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #FFFFFF;
  padding-left: 15px;
  font-size: 14px;
  margin-bottom: 12px;
}

.sidebar-newsletter-card .btn-submit {
  width: 100%;
  height: 48px;
  border-radius: 0;
  background-color: #FFDE16;
  color: #2346A7;
  border: none;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sidebar-newsletter-card .btn-submit:hover {
  background-color: #24262B;
  color: #FFFFFF;
}

/* Call To Action Card */
.sidebar-cta-card {
  position: relative;
  min-height: 420px;
  background-image: url("../images/traditional-wooden-kitchen-utensils-abd-kitchenware-mock-up-home-cooking-recipe-book-template.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.5em 2em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.sidebar-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(7, 8, 9, 0.2);
  transition: background-color 0.6s ease;
  z-index: 1;
}

.sidebar-cta-card:hover::before {
  background-color: rgba(7, 8, 9, 0.6);
}

.sidebar-cta-card .cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar-cta-card .cta-title {
  font-family: "Figtree", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 12px;
}

.sidebar-cta-card .cta-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 35px;
  opacity: 0.9;
}

.sidebar-cta-card .btn-cta {
  align-self: flex-start;
  background-color: #FFDE16;
  color: #2346A7;
  padding: 12px 28px;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.sidebar-cta-card .btn-cta:hover {
  background-color: #2346A7;
  color: #FFFFFF;
}

/* Product Catalog Grid (WooCommerce High-Fidelity) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.product-grid .product-card {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1) !important;
  padding: 14px 14px 21px 14px !important;
  background-color: #FFFFFF !important;
  text-align: center !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-grid .product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15) !important;
}

.product-grid .product-card .product-img-wrap {
  border-radius: 0 !important;
  aspect-ratio: 1 !important;
  overflow: hidden !important;
  background: #F8F9FA !important;
  position: relative;
}

.product-grid .product-card .product-img-wrap img {
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-grid .product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-grid .product-card .product-badge,
.product-grid .product-card .onsale,
.product-gallery-wrap .onsale {
  border-radius: 50% !important;
  background-color: #2346A7 !important;
  color: #FFFFFF !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 !important;
  text-align: center !important;
  position: absolute;
  right: 12px !important;
  left: auto !important;
  top: 12px !important;
  text-transform: uppercase;
  z-index: 9;
}

.product-grid .product-card .product-info {
  padding: 15px 0 0 0 !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-grid .product-card .product-link {
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  color: inherit !important;
}

.product-grid .product-card .product-title {
  font-family: "Figtree", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #24262B !important;
  margin-bottom: 8px !important;
  text-align: center !important;
  line-height: 1.4 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  transition: color 0.3s ease !important;
}

.product-grid .product-card .product-link:hover .product-title {
  color: #2346A7 !important;
}

.product-grid .product-card .product-price {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-bottom: 15px !important;
}

.product-grid .product-card .price-current {
  font-family: "Figtree", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #2346A7 !important;
}

.product-grid .product-card .price-original {
  font-size: 14px !important;
  color: #7A7A7A !important;
  text-decoration: line-through !important;
}

.product-grid .product-card .btn-add-cart {
  border-radius: 0 !important;
  background-color: #FFDE16 !important;
  color: #2346A7 !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 12px 0 !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase !important;
}

.product-grid .product-card .btn-add-cart:hover {
  background-color: #2346A7 !important;
  color: #FFFFFF !important;
}

.btn-add-cart-detail {
  border-radius: 0 !important;
  background-color: #FFDE16 !important;
  color: #2346A7 !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
  text-transform: uppercase !important;
}

.btn-add-cart-detail:hover {
  background-color: #2346A7 !important;
  color: #FFFFFF !important;
}

/* Filter Bar Styles */
.filter-bar {
  border-radius: 0 !important;
  border: 1px solid #DCDCDE !important;
  box-shadow: none !important;
  background: #FFFFFF !important;
  padding: 15px 20px !important;
  margin-bottom: 25px !important;
}

.filter-bar select {
  border-radius: 0 !important;
  border: 1px solid #DCDCDE !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 14px !important;
  color: #24262B !important;
  outline: none !important;
  height: 38px;
  padding: 0 10px !important;
  background-color: #FFFFFF !important;
}

.view-toggle button {
  border-radius: 0 !important;
  border: 1px solid #DCDCDE !important;
  background-color: #FFFFFF !important;
  color: #7A7A7A !important;
}

.view-toggle button.active,
.view-toggle button:hover {
  background: #2346A7 !important;
  border-color: #2346A7 !important;
  color: #FFFFFF !important;
}

/* WooCommerce Custom Pagination */
.woocommerce-pagination-custom {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.woocommerce-pagination-custom .pagenavi {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.woocommerce-pagination-custom a,
.woocommerce-pagination-custom span.current {
  display: block;
  padding: 12px 18px;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.woocommerce-pagination-custom a {
  color: #2346A7;
  background-color: #FFDE16;
}

.woocommerce-pagination-custom a:hover {
  color: #FFFFFF;
  background-color: #2346A7;
}

.woocommerce-pagination-custom span.current {
  color: #FFFFFF;
  background-color: #2346A7;
}

/* Sidebar Responsive Grid Adjustments */
@media (max-width: 991.98px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Star Rating */
.star-rating {
  color: #FBBF24;
  font-size: 0.8125rem;
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

/* Product Detail Page Styles */
.page-product-detail .page-hero-sm {

  padding: 5rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--renova-primary), #2d5a42);
  position: relative;
  overflow: hidden
}

.page-product-detail .page-hero-sm::before {

  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03)
}

.page-product-detail .page-hero-sm h1 {

  color: var(--renova-white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: .5rem
}

.page-product-detail .page-hero-sm .breadcrumb {

  justify-content: center;
  margin: 0
}

.page-product-detail .page-hero-sm .breadcrumb-item,
.page-product-detail .page-hero-sm .breadcrumb-item a {

  color: rgba(255, 255, 255, .65);
  font-size: .875rem
}

.page-product-detail .page-hero-sm .breadcrumb-item.active {

  color: rgba(255, 255, 255, .9)
}

.page-product-detail .page-hero-sm .breadcrumb-item+.breadcrumb-item::before {

  color: rgba(255, 255, 255, .4)
}

.page-product-detail .product-gallery {

  position: relative;
  border-radius: 0px !important;
  overflow: hidden;
  background: #FFFFFF !important;
  border: 1px solid #EAEAEA !important;
}

.page-product-detail .product-gallery img {

  width: 100% !important;
  height: auto !important;
  display: block
}

.page-product-detail .gallery-thumbs {

  display: flex;
  gap: .75rem;
  margin-top: .75rem
}

.page-product-detail .gallery-thumbs img {

  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--renova-border);
  cursor: pointer;
  transition: all var(--transition-base)
}

.page-product-detail .gallery-thumbs img:hover,
.page-product-detail .gallery-thumbs img.active {

  border-color: var(--renova-primary);
  opacity: 1
}

.page-product-detail .gallery-thumbs img:not(.active) {

  opacity: .6
}

.page-product-detail .detail-label {

  font-size: .8125rem;
  color: var(--renova-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
  display: block
}

.page-product-detail .detail-title {

  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--renova-dark);
  margin-bottom: 1rem;
  line-height: 1.3
}

.page-product-detail .detail-price {

  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.page-product-detail .detail-price .current {

  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--renova-primary)
}

.page-product-detail .detail-price .original {

  font-size: 1.125rem;
  color: var(--renova-text-light);
  text-decoration: line-through
}

.page-product-detail .detail-price .discount {

  background: var(--renova-danger);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px
}

.page-product-detail .detail-desc {

  font-size: 1rem;
  color: var(--renova-text);
  line-height: 1.8;
  margin-bottom: 2rem
}

.page-product-detail .detail-meta {

  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--renova-border);
  border-bottom: 1px solid var(--renova-border);
  padding: 1rem 0
}

.page-product-detail .detail-meta li {

  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .375rem 0;
  font-size: .9375rem;
  color: var(--renova-text)
}

.page-product-detail .detail-meta li strong {

  color: var(--renova-dark);
  min-width: 80px
}

.page-product-detail .star-rating {

  color: #FBBF24;
  font-size: .875rem;
  display: flex;
  gap: 2px;
  margin-bottom: .75rem
}

.page-product-detail .qty-selector {

  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--renova-border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 1.5rem
}

.page-product-detail .qty-selector button {

  width: 40px;
  height: 40px;
  border: none;
  background: var(--renova-light);
  color: var(--renova-dark);
  font-size: 1.125rem;
  cursor: pointer;
  transition: background var(--transition-base)
}

.page-product-detail .qty-selector button:hover {

  background: var(--renova-primary);
  color: #fff
}

.page-product-detail .qty-selector input {

  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  outline: none
}

.page-product-detail .detail-actions {

  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.page-product-detail .tab-nav {

  display: flex;
  gap: .5rem;
  border-bottom: 2px solid var(--renova-border);
  margin-bottom: 2rem;
  flex-wrap: wrap
}

.page-product-detail .tab-nav button {

  background: none;
  border: none;
  padding: .75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--renova-text-light);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-base)
}

.page-product-detail .tab-nav button::after {

  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--renova-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base)
}

.page-product-detail .tab-nav button.active {

  color: var(--renova-primary)
}

.page-product-detail .tab-nav button.active::after {

  transform: scaleX(1)
}

.page-product-detail .tab-pane {

  display: none
}

.page-product-detail .tab-pane.active {

  display: block
}

.page-product-detail .product-grid .product-card .onsale,
.page-product-detail .product-gallery-wrap .onsale {

  border-radius: 0px !important;
  background-color: #FFDE16 !important;
  color: #2346A7 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  padding: 5px 21px !important;
  text-align: center !important;
  position: absolute !important;
  left: 0px !important;
  right: auto !important;
  top: 0px !important;
  text-transform: uppercase !important;
  z-index: 9 !important;
}

.page-product-detail .product-detail-section {

  background-image: url('images/bg_split.png') !important;
  background-position: center center !important;
  background-repeat: repeat-y !important;
  background-size: contain !important;
}

@media (max-width: 991.98px) {
  .page-product-detail .product-detail-section {


    background-position: center left !important;
    background-size: cover !important;
  }
}

.page-product-detail .related-product-card {

  padding: 21px 14px;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1) !important;
  background-color: #FFFFFF !important;
  text-align: center;
  transition: box-shadow 0.3s !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transform: none !important;
}

.page-product-detail .related-product-card:hover {

  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1) !important;
  transform: none !important;
}

.page-product-detail .related-product-card:hover .product-img-wrap img {

  transform: none !important;
}

.page-product-detail .related-product-card .onsale {

  position: absolute;
  top: 0px !important;
  right: 0px !important;
  left: auto !important;
  background-color: #2346A7 !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: capitalize;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  text-align: center;
  padding: 0 !important;
  border-radius: 50% !important;
  z-index: 9;
  display: block;
}

.page-product-detail .related-product-card .product-title {

  font-family: 'Figtree', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #24262B !important;
  line-height: 1.4em !important;
  margin-bottom: 0 !important;
  margin-top: 15px !important;
}

.page-product-detail .related-product-card .btn-add-cart {

  width: auto !important;
  margin: 14px auto 0 auto !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  font-family: 'Figtree', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  line-height: 1em !important;
  background-color: #FFDE16 !important;
  color: #2346A7 !important;
  border: 1px solid #FFDE16 !important;
  transition: all 0.3s !important;
}

.page-product-detail .related-product-card .btn-add-cart:hover {

  background-color: #2346A7 !important;
  color: #FFFFFF !important;
  border-color: #2346A7 !important;
}

.page-product-detail .product-grid-related {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1024px) {
  .page-product-detail .product-grid-related {


    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
  }
}

@media (max-width: 767px) {
  .page-product-detail .product-grid-related {


    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* News List Specific Styles */
.news-section {
  padding: 4em 0 7em 0;
}

.page-hero {
  padding: 10rem 0;
  text-align: center;
  background-image: url('/static/images/blank/product-banner-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #070809;
  /* Matches --e-global-color-044b931 */
  opacity: 0.5;
}

.page-hero h1 {
  color: #FFFFFF;
  font-family: 'Figtree', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 1px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .page-hero h1 {
    font-size: 37px;
  }

  .news-card .news-title {
    font-size: 20px;
  }

  .news-card .news-excerpt {
    font-size: 15px;
  }

  .pe-lg-5 {
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
  }

  .news-section {
    padding: 3em 0 !important;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 3rem 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .news-section {
    padding: 2em 0 !important;
  }

  .news-card .news-title {
    font-size: 18px;
  }

  .news-card .news-excerpt {
    font-size: 14px;
  }
}

.news-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 0px;
  overflow: hidden;
  border: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.news-card .news-img {
  padding-bottom: 66%;
  position: relative;
  overflow: hidden;
}

.news-card .news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.news-card .news-cat {
  position: absolute;
  top: 0;
  right: 0;
  background: #FFDE16;
  color: #2346A7;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 21px;
  border-radius: 0px;
  text-transform: uppercase;
  z-index: 2;
}

.news-card .news-body {
  padding: 21px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card .news-title {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight:normal;
  color: #1B2E35;
  margin-bottom: 14px;
  line-height: 1.4em;
}

.news-card .news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.news-card .news-title a:hover {
  color: #2346A7;
}

.news-card .news-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5B5B5B;
  line-height: 1.6em;
  margin-bottom: 21px;
  flex: 1;
}

.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1em;
  color: #5B5B5B;
  padding: 14px 21px;
  border-top: 1px solid #EEEFF1;
  background: #FFFFFF;
  margin: 0 -21px -21px -21px;
}

.news-card .news-meta span {
  display: inline-flex;
  align-items: center;
}

.news-card .news-meta span+span::before {
  content: "•";
  margin-right: 10px;
  color: #5B5B5B;
  border-color: var(--renova-primary);
}

/* ============================================
   SINGLE ARTICLE PAGE
   ============================================ */

/* --- Hero Section --- */
.single-hero {
  background-color: #EEEFF1;
  padding: 4em 0;
}

.single-hero .single-category {
  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1B2E35;
  margin-bottom: 15px;
}

.single-hero .single-title {
  font-family: 'Figtree', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #1B2E35;
  line-height: 1.3;
  margin-bottom: 20px;
  width: 72%;
}

.single-hero .single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5B5B5B;
}

.single-hero .single-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-hero .single-meta .meta-item i {
  color: #2346A7;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .single-hero {
    padding: 2em 0;
  }

  .single-hero .single-category {
    font-size: 18px;
  }

  .single-hero .single-title {
    font-size: 37px;
  }
}

@media (max-width: 767px) {
  .single-hero {
    padding: 1em 0;
  }

  .single-hero .single-category {
    font-size: 16px;
  }

  .single-hero .single-title {
    font-size: 32px;
  }
}

/* --- Featured Image --- */
.article-featured-img {
  border-radius: 0;
  margin-bottom: 2.5rem;
}

.article-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Article Content --- */
.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--renova-dark);
  margin: 2.5rem 0 1rem;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--renova-dark);
  margin: 2rem 0 .75rem;
}

.article-content p {
  font-size: 1.0625rem;
  color: var(--renova-text);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-content li {
  font-size: 1rem;
  color: var(--renova-text);
  line-height: 1.8;
  margin-bottom: .5rem;
}

.article-content blockquote {
  border-left: 4px solid var(--renova-secondary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--renova-light);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--renova-text);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.article-content img {
  border-radius: 0 !important;
  margin: 0;
  width: 100%;
  height: auto;
}

/* --- Article Tags --- */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--renova-border);
}

.article-tags a {
  background: var(--renova-light);
  color: var(--renova-text);
  padding: .375rem 1rem;
  border-radius: 50px;
  font-size: .8125rem;
  border: 1px solid var(--renova-border);
  transition: all var(--transition-base);
}

.article-tags a:hover {
  background: var(--renova-primary);
  color: #fff;
  border-color: var(--renova-primary);
}

/* --- Share Bar --- */
.share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--renova-border);
  border-bottom: 1px solid var(--renova-border);
  margin-bottom: 3rem;
}

.share-bar span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--renova-dark);
  font-size: .9375rem;
}

.share-bar a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--renova-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--renova-text);
  transition: all var(--transition-base);
}

.share-bar a:hover {
  background: var(--renova-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Author Box --- */
.author-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--renova-light);
  border-radius: 20px;
  margin-bottom: 3rem;
  align-items: center;
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--renova-secondary);
  flex-shrink: 0;
}

.author-box .author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--renova-dark);
  margin-bottom: .25rem;
}

.author-box .author-bio {
  font-size: .9rem;
  color: var(--renova-text-light);
  line-height: 1.6;
  margin: 0;
}

/* --- Related Posts --- */
.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--renova-dark);
  margin-bottom: 1.5rem;
}

.rp-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--renova-white);
  border-radius: 12px;
  border: 1px solid var(--renova-border);
  transition: all var(--transition-base);
  height: 100%;
}

.rp-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.rp-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.rp-card .rp-title {
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--renova-dark);
  line-height: 1.4;
  margin-bottom: .375rem;
}

.rp-card .rp-title a {
  color: inherit;
}

.rp-card .rp-title a:hover {
  color: var(--renova-primary);
}

.rp-card .rp-date {
  font-size: .75rem;
  color: var(--renova-text-light);
}

/* ============================================
   FEATURED PRODUCTS CAROUSEL
   ============================================ */
#featuredProductsCarousel {
  padding: 0 45px;
}

.fp-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: none;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.fp-btn-prev {
  left: -5px;
}

.fp-btn-next {
  right: -5px;
}

.fp-carousel-btn:hover {
  background-color: #FFDE16;
  color: #2346A7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fp-carousel-btn:active {
  transform: translateY(-50%) scale(0.92);
}

#fpCarouselInner .carousel-item {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#fpCarouselInner .carousel-inner {
  overflow: hidden;
}

#fpCarouselInner .featured-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#fpCarouselInner .featured-product-card .position-relative.overflow-hidden {
  aspect-ratio: 1 / 1;
}

#fpCarouselInner .featured-product-card .position-relative.overflow-hidden img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fpCarouselInner .featured-product-card .product-title {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4em;
}

@media (max-width: 767px) {
  #featuredProductsCarousel {
    padding: 0 35px;
  }

  .fp-carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ============================================
   PRODUCT CATEGORY SHOWCASE
   ============================================ */

/* Category Card (Blue) */
.product-category-card {
  background-color: #2346A7;
  padding: 2em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 280px;
}

.product-category-title {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 74px;
  margin-bottom: 6px;
  line-height: 1.3em;
}

.product-category-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: auto;
}

.product-category-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #FFDE16;
  margin: 40px auto 0 auto;
}

.product-category-btn {
  display: inline-block;
  background-color: #FFDE16;
  color: #2346A7;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 8px 20px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 20px;
}

.product-category-btn:hover {
  background-color: #FFFFFF;
  color: #2346A7;
}

/* Product Showcase Card */
.product-showcase-card {
  background-color: #FFFFFF;
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-showcase-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.product-showcase-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 12px;
}

.product-showcase-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-showcase-title {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #24262B;
  line-height: 1.4em;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em;
}

.product-showcase-btn {
  display: inline-block;
  background-color: #FFDE16;
  color: #2346A7;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 7px 18px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  align-self: center;
}

.product-showcase-btn:hover {
  background-color: #2346A7;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .product-category-card {
    min-height: 200px;
    padding: 1.5em;
  }

  .product-category-title {
    font-size: 20px;
  }
}

/* Product Grid Auto-Offset for Desktop Loop Rendering */
@media (min-width: 992px) {
  .product-grid-row>div:nth-child(3n + 5) {
    margin-left: 25%;
  }
}

/* ============================================
   SOLUTION PAGE SECTIONS (Auto-alternating BG)
   ============================================ */
.solution-section {
  padding: 5em 0;
}

.solution-section:nth-child(odd) {
  background-color: #F5F5F5;
}

.solution-section:nth-child(even) {
  background-color: #FFFFFF;
}

/* ============================================
   PARALLAX PAGE (gemini-code)
   ============================================ */

/* Lenis smooth scroll */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overflow: clip;
}

/* Page-level dark theme (scoped) */
.page-parallax {
  background-color: #0b0b0b;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Parallax nav overrides */
.page-parallax .custom-navbar {
  background-color: rgba(11, 11, 11, 0.2) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.page-parallax .custom-navbar .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 1.2rem !important;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.page-parallax .custom-navbar .nav-link:hover,
.page-parallax .custom-navbar .nav-link.active {
  color: #fff !important;
}

.page-parallax .custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 1.5px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.page-parallax .custom-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.page-parallax .navbar-toggler {
  border: none !important;
  padding: 0;
}

.page-parallax .navbar-toggler:focus {
  box-shadow: none !important;
}

.page-parallax .toggler-icon {
  width: 22px;
  height: 1.5px;
  background-color: #fff;
  display: block;
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Parallax sections */
.parallax-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -22%;
  left: 0;
  width: 100%;
  height: 140%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: transform;
}



.bg-11 {
  background-image: url('/static/images/s04img/1001.jpg');
}

.bg-12 {
  background-image: url('/static/images/s04img/1002.jpg');
}

.bg-13 {
  background-image: url('/static/images/s04img/1003.jpg');
}

.bg-14 {
  background-image: url('/static/images/s04img/1004.jpg');
}



.bg-21 {
  background-image: url('/static/images/s04img/2001.jpg');
}

.bg-22 {
  background-image: url('/static/images/s04img/2002.jpg');
}

.bg-23 {
  background-image: url('/static/images/s04img/2003.jpg');
}

.bg-24 {
  background-image: url('/static/images/s04img/2004.jpg');
}

.bg-25 {
  background-image: url('/static/images/s04img/2005.jpg');
}




.bg-31 {
  background-image: url('/static/images/s04img/3001.jpg');
}

.bg-32 {
  background-image: url('/static/images/s04img/3002.jpg');
}

.bg-33 {
  background-image: url('/static/images/s04img/3003.jpg');
  background-position-y:-200px;
}



.bg-41 {
  background-image: url('/static/images/s04img/4001.jpg');
}

.bg-42 {
  background-image: url('/static/images/s04img/4002.jpg');
}

.bg-43 {
  background-image: url('/static/images/s04img/4003.jpg');
}

.bg-44 {
  background-image: url('/static/images/s04img/4004.jpg');
}

.bg-45 {
  background-image: url('/static/images/s04img/4005.jpg');
}

.parallax-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.parallax-content {
  position: relative;
  z-index: 3;
  height: 100%;
  will-change: transform, opacity;
  max-width: 900px;
}

/* Parallax text */
.page-parallax .section-num {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
}

.page-parallax .section-title {
  font-size: calc(1.8rem + 1.5vw);
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.3;
  color: #FFFFFF;
}

.page-parallax .section-subtitle {
  font-size: calc(1rem + 0.3vw);
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Footer wrapper */
.page-parallax .footer-wrapper {
  position: relative;
  background-color: #0b0b0b;
}