@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-teal: #006766;
  --secondary-green: #40A57B;
  --light-green: #9DDE8A;
  --bg-light: #f4f7f6;
  --bg-white: #ffffff;
  --text-dark: #1a2b2b;
  --text-muted: #6c757d;

  --gradient-main: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-green) 100%);
  --gradient-light: linear-gradient(135deg, var(--secondary-green) 0%, var(--light-green) 100%);

  --shadow-soft: 0 10px 30px rgba(0, 103, 102, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 103, 102, 0.15);
  --shadow-glow: 0 8px 25px rgba(64, 165, 123, 0.3);

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;
}

/* Global Typography & Resets */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
input,
button {
  font-family: 'Poppins', sans-serif !important;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Base Component Overrides */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Buttons */
.btn-premium,
.explore-more-btn {
  background: var(--gradient-main) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--border-radius-pill) !important;
  padding: 12px 30px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow) !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-premium:hover,
.explore-more-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(64, 165, 123, 0.4) !important;
  background: var(--gradient-light) !important;
}

/* Header & Nav */
.organio-header-section {
  background: var(--bg-white);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid rgba(0, 103, 102, 0.05);
}

.organic-main-navigation .menu-navigation li a {
  font-weight: 500;
  color: var(--text-dark) !important;
  text-transform: capitalize;
  padding: 10px 15px;
  border-radius: var(--border-radius-md);
}

.organic-main-navigation .menu-navigation li a:hover {
  background: rgba(64, 165, 123, 0.1);
  color: var(--primary-teal) !important;
}

/* Search Box */
.header-search-btn form {
  border-radius: var(--border-radius-pill);
  background: #f0f4f3;
  border: 1px solid rgba(64, 165, 123, 0.2);
  overflow: hidden;
}

.header-search-btn input {
  background: transparent;
  padding-left: 20px;
}

.header-search-btn button {
  background: var(--gradient-main);
  color: #fff;
  border-radius: 0 var(--border-radius-pill) var(--border-radius-pill) 0;
}

/* Hero Slider */
.or-category-slider-section {
  position: relative;
  overflow: hidden;
}

.or-category-slider-item {
  border-radius: 0 0 50px 50px;
  position: relative;
}

.or-category-slider-item::after {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 103, 102, 0.8), rgba(64, 165, 123, 0.4));
  /* z-index: 1; */
}

.or-category-slider-text {
  z-index: 2;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.or-category-slider-text h2 {
  color: #fff !important;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Modern Categories Grid */
.category-modern-section {
  background-color: var(--bg-light) !important;
  padding: 60px 0 !important;
  position: relative;
}

/* A curved top divider */
/* .category-modern-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
} */

.category-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.category-modern-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 20px 10px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* border: 1px solid rgba(0, 103, 102, 0.05); */
  position: relative;
  overflow: hidden;
}

.category-modern-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: var(--light-green);
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.category-modern-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-green);
}

.category-modern-card:hover::before {
  transform: scale(2);
  opacity: 0.2;
}

.category-modern-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  /* margin-bottom: 15px; */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}

.category-modern-card p {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  font-size: 14px;
}

/* Product Cards */
.or-product-list {
  background-color: var(--bg-white);
  /* padding: 60px 0; */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-grid .box {
  background: #8a6957eb;
  border-radius: var(--border-radius-lg);
  /* padding: 20px; */
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.product-grid .box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-grid .box img {
  border-radius: var(--border-radius-md);
  /* margin-bottom: 15px; */
  transition: transform 0.5s ease;
}

.product-grid .box:hover img {
  transform: scale(1.05);
}

.product-grid .box h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-grid .box h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-teal);
  margin: 0;
}

.product-grid .box h4.old-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.btn.line-success {
  background: var(--gradient-light);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-md);
  padding: 8px 20px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(157, 222, 138, 0.4);
}

.btn.line-success:hover {
  background: var(--gradient-main);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

/* Feature Highlights */
.feature-highlight-section {
  background: #fdfff2;
  /* padding: 50px 0; */
}

.feature-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  /* margin-bottom: 20px; */
  transition: all 0.3s ease;
  border-left: 5px solid var(--secondary-green);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon i {
  font-size: 40px;
  color: var(--primary-teal);
  background: -webkit-linear-gradient(135deg, var(--primary-teal), var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* margin-right: 20px; */
}

.feature-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer */
footer {
  position: relative;
  background: var(--primary-teal) !important;
  color: #fff;
  /* padding-top: 80px !important; */
  overflow: hidden;
}

/* Curved top for footer */
footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--bg-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

footer .or-footer-widget-wrapper-1,
footer .or-footer-copyright {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

footer h1,
footer h2.widget-title {
  color: #fff !important;
  font-weight: 700;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer ul li a:hover {
  color: var(--light-green) !important;
  padding-left: 5px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff !important;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--light-green);
  color: var(--primary-teal) !important;
  transform: translateY(-3px);
}

.or-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  /* margin-top: 40px; */
}

/* Misc Layout Helpers */
/* .section-divider {
  width: 80px !important;
  height: 4px !important;
  margin: 0 auto 30px auto !important;
  background: var(--gradient-light) !important;
  border-radius: 4px !important;
} */

.or-section-title h2 {
  font-weight: 800 !important;
  color: var(--text-dark) !important;
}

.home-ad-section {
  padding: 10px 0;
}

.home-ad-section .or-category-slider-item {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  /* margin-bottom: 20px; */
}