:root {
  --primary-color: #3bb452;
  --primary-dark: #2e8a40;
  --secondary-color: #1d2127;
  --accent-color: #a7144c;
  --light-bg: #f7f7f7;
  --dark-bg: #1b1b1b;
  --text-color: #212529;
  --text-light: #777777;
  --border-color: #e8eef3;
  --white: #ffffff;
  --success: #28a745;
  --error: #dc3545;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

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

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-xl {
  /*padding: 18px 45px;*/
  font-size: 18px;
  margin-top: 20px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

.btn-full-rounded {
  border-radius: 50px !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-lg-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-lg-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-lg-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-lg-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-lg-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-lg-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.offset-lg-2 {
  margin-left: 16.666667%;
}

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

.text-lg-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.align-items-center {
  align-items: center;
}

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.header-builder {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-main {
  padding: 15px 0;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-col.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  max-width: 190px;
  height: auto;
}

.main-menu ul {
  display: flex;
  gap: 30px;
}

.main-menu .menu-item a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  position: relative;
}

.main-menu .menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-menu .menu-item a:hover::after,
.main-menu .menu-item.active a::after {
  width: 100%;
}

.main-menu .menu-item.active a {
  color: var(--primary-color);
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.header-cta .btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.mobile-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-toggle.active .hamburger::before {
  transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  transform: translateY(-5px);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  display: block;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: '';
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s ease;
  padding-top: 0;
}

.mobile-nav.active {
  display: block;
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-logo img {
  max-width: 120px;
  height: auto;
}

.mobile-nav-close {
  width: 35px;
  height: 35px;
  border: none;
  background: transparent;
  font-size: 28px;
  color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: var(--transition);
  line-height: 1;
}

.mobile-nav-close:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.mobile-cta {
  padding: 20px;
  text-align: center;
  margin-top: 10px;
}

.mobile-cta .btn {
  width: 100%;
}

.mobile-nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}

.mobile-nav.active::before {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a {
  display: block;
  padding: 15px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--secondary-color);
  transition: var(--transition);
}

.mobile-menu a:hover {
  background-color: rgba(59, 180, 82, 0.1);
  color: var(--primary-color);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 59, 59, 0.7) 0%,
      rgba(44, 51, 60, 0.5) 100%);
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin-left: 100px;
  color: var(--white);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-box {
  width: 100%;
  height: 405px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 5px;
}

.slide-content h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}

.slider-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 25px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 11;
}

.slider-nav button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #999;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 11;
}

.slider-dot.active {
  background-color: var(--primary-color);
}

.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.intro-section {
  padding: 70px 0;
  background-color: rgba(228, 234, 213, 0.5);
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
}

.services-section {
  padding: 70px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-color);
  background-color: rgba(59, 180, 82, 0.1);
  border-radius: 50%;
}

.service-box h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-box p {
  font-size: 14px;
  color: var(--text-light);
}

.about-section {
  padding: 70px 0;
  background-color: var(--light-bg);
}

.about-image img {
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.about-content h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-list {
  margin: 20px 0;
}

.about-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.about-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.stats-section {
  padding: 70px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.stat-box {
  text-align: center;
  padding: 30px;
}

.stat-number {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 48px;
  font-weight: 700;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

.featured-products-section {
  padding: 70px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.products-grid-mobile {
  display: none;
}

.product-card {
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

@media (hover: none) {
  .product-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .product-overlay {
    display: none;
  }
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.product-content {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 600;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
}

.product-title a {
  color: var(--secondary-color);
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 15px;
}

.history-section {
  padding: 70px 0;
  background-color: var(--light-bg);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-year {
  position: absolute;
  top: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -30px;
}

.timeline-content {
  background-color: var(--white);
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonials-section {
  padding: 70px 0;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
}

.testimonial-item {
  flex: 0 0 calc(33.333% - 20px);
  background-color: var(--white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.testimonial-item blockquote {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
}

.stars {
  color: #fcb900;
  letter-spacing: 3px;
}

.cta-section {
  padding: 70px 0;
  background-color: var(--primary-color);
  color: var(--white);
}

.cta-section h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-section p {
  opacity: 0.9;
}

.page-header {
  padding: 130px 0 70px;
  background-color: var(--light-bg);
  text-align: center;
}

.page-title {
  font-family: 'Roboto Slab', serif;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 10px;
}

.shop-section {
  padding: 70px 0;
}

.shop-sidebar {
  padding-right: 30px;
}

.sidebar-widget {
  background-color: var(--white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
  background-color: rgba(59, 180, 82, 0.1);
  color: var(--primary-color);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.shop-toolbar select {
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--white);
  cursor: pointer;
}

.gridlist-toggle {
  display: flex;
  gap: 10px;
}

.gridlist-toggle button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.gridlist-toggle button:hover,
.gridlist-toggle button.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.woocommerce-pagination {
  margin-top: 40px;
}

.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.woocommerce-pagination li {
  list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  transition: var(--transition);
}

.woocommerce-pagination a:hover,
.woocommerce-pagination .current {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.single-product-section {
  padding: 70px 0;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  background-color: var(--white);
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.main-image img {
  width: 100%;
}

.product-summary {
  padding-left: 30px;
}

.product-summary .product-category {
  display: block;
  margin-bottom: 10px;
}

.product-summary .product-title {
  font-size: 32px;
  font-weight: 300;
}

.star-rating {
  color: #fcb900;
  margin: 15px 0;
}

.rating-count {
  color: var(--text-light);
  font-size: 14px;
}

.product-summary .product-price {
  font-size: 32px;
  margin: 20px 0;
}

.product-summary .product-description {
  margin-bottom: 30px;
  line-height: 1.8;
}

.product-summary form {
  margin: 30px 0;
}

.quantity {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quantity label {
  margin-right: 15px;
  font-weight: 600;
}

.quantity input {
  width: 80px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  text-align: center;
}

.product-meta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.product-meta p {
  margin-bottom: 5px;
}

.product-share {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-share a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-bg);
  transition: var(--transition);
}

.product-share a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.related-products {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid var(--border-color);
}

.related-products .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-section {
  padding: 70px 0;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper .section-title {
  margin-bottom: 10px;
}

.contact-form-wrapper>p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 20px;
}

.form-row .form-group {
  flex: 0 0 50%;
  padding: 0 10px;
}

.form-full-width {
  margin-bottom: 20px;
}

.form-group label .required {
  color: #dc3545;
  font-weight: 700;
}

.form-group label .optional {
  color: var(--text-light);
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 180, 82, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  margin-top: 30px;
}

.alert {
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.alert-error {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

.info-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(59, 180, 82, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
}

.emergency-box {
  background-color: #dc3545;
  color: var(--white);
  padding: 30px;
  border-radius: 5px;
  margin-top: 30px;
  text-align: center;
}

.emergency-box h4 {
  margin-bottom: 10px;
}

.emergency-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn-emergency {
  background-color: var(--white);
  color: #dc3545;
  border-color: var(--white);
}

.btn-emergency:hover {
  background-color: var(--white);
  color: #dc3545;
}

.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  height: 400px;
  background-color: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  padding: 30px;
  text-align: center;
}

.map-placeholder i {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-main {
  background-color: var(--dark-bg);
  color: var(--white);
  margin-top: auto;
}

.footer-top {
  padding: 60px 0 30px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-widget .widget-title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 25px;
  border-bottom: none;
  padding-bottom: 0;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info i {
  color: var(--primary-color);
  margin-top: 5px;
}

.share-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.share-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.share-links a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  padding: 20px 0;
  background-color: #111;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-button a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: var(--white);
  font-size: 30px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.cart-section {
  padding: 70px 0;
}

.shop_table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 5px;
  overflow: hidden;
}

.shop_table th,
.shop_table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.shop_table th {
  background-color: var(--light-bg);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.shop_table .product-remove {
  width: 50px;
  text-align: center;
}

.shop_table .product-remove button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--error);
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}

.shop_table .product-remove button:hover {
  background-color: var(--error);
  color: var(--white);
}

.shop_table .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.cart-collaterals {
  margin-top: 50px;
}

.cart_totals {
  background-color: var(--white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin-left: auto;
}

.cart_totals h2 {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.cart_totals table {
  width: 100%;
}

.cart_totals th,
.cart_totals td {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart_totals th {
  font-weight: 600;
}

.cart_totals .order-total {
  font-size: 20px;
  color: var(--primary-color);
}

.wc-proceed-to-checkout {
  margin-top: 30px;
}

.cart-empty {
  text-align: center;
  padding: 70px 0;
}

.cart-empty i {
  font-size: 80px;
  color: var(--border-color);
  margin-bottom: 30px;
}

.cart-empty h2 {
  margin-bottom: 15px;
}

.cart-empty p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.cart-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.checkout-section {
  padding: 70px 0;
}

.checkout-billing,
.checkout-review {
  background-color: var(--white);
  padding: 40px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.checkout-billing h2,
.checkout-review h2 {
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.payment-methods {
  margin: 30px 0;
}

.payment-methods h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.payment-option {
  margin-bottom: 15px;
}

.payment-option input {
  margin-right: 10px;
}

.secure-notice {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

.secure-notice i {
  color: var(--primary-color);
  margin-right: 5px;
}

.team-section {
  padding: 70px 0;
  background-color: var(--light-bg);
}

.team-member {
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-member .member-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-member .member-info {
  padding: 25px;
}

.team-member h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.member-role {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.values-section {
  padding: 70px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px;
}

.value-item i {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-color);
  background-color: rgba(59, 180, 82, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.value-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-detail-item {
  margin-bottom: 70px;
  padding: 40px;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.service-detail-item img {
  width: 100%;
  border-radius: 5px;
}

.service-detail-item ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail-item li {
  margin-bottom: 10px;
  list-style: disc;
}

.achievements-section {
  padding: 70px 0;
  background-color: var(--light-bg);
}

.achievement-item {
  text-align: center;
  padding: 40px;
}

.achievement-number {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.achievement-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.future-section {
  padding: 40px 0 40px;
  background-color: white;
}

.future-section .section-title {
  margin-bottom: 25px;
}

.future-section p {
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--text-light);
}

.future-section .btn {
  margin-top: 10px;
  padding: 16px 40px;
}

.go-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 180, 82, 0.4);
  transition: all 0.3s ease;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.go-to-top::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

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

.go-to-top:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 180, 82, 0.5);
}

.cat-climb {
  font-size: 28px;
  display: inline-block;
  animation: catClimb 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes catClimb {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  15% {
    transform: translateY(-6px) rotate(-3deg) scale(1.05);
  }

  30% {
    transform: translateY(-10px) rotate(-5deg) scale(1.08);
  }

  50% {
    transform: translateY(-8px) rotate(0deg) scale(1.05);
  }

  70% {
    transform: translateY(-14px) rotate(5deg) scale(1.1);
  }

  85% {
    transform: translateY(-10px) rotate(3deg) scale(1.08);
  }
}

.go-to-top:hover .cat-climb {
  animation-duration: 0.6s;
  animation-play-state: running;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

@media (max-width: 991px) {
  .header-col.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .main-menu {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
    order: 2;
  }

  .logo img {
    max-width: 95px;
    height: auto;
  }

  .col-lg-3,
  .col-lg-4,
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-slider {
    height: 400px;
  }

  .slide-content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .slide::before {
    background: linear-gradient(135deg, rgba(59, 59, 59, 0.7) 0%,
        rgba(44, 51, 60, 0.5) 100%);
  }

  .slide-box {
    height: auto;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-year {
    left: -10px !important;
    right: auto !important;
  }

  .testimonial-item {
    flex: 0 0 calc(100% - 40px);
  }

  .shop-sidebar {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .product-summary {
    padding-left: 0;
  }

  .contact-info-wrapper {
    margin-top: 40px;
  }

  /* Services Detail - Stack image and text on mobile */
  .service-detail-item {
    padding: 20px;
    margin-bottom: 40px;
  }

  .service-detail-item .row {
    flex-direction: column;
  }

  .service-detail-item .col-lg-5,
  .service-detail-item .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .service-detail-item img {
    margin-bottom: 20px;
    width: 100%;
  }

  .service-detail-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .service-detail-item p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .service-detail-item .btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }

  .page-title {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .logo img {
    max-width: 76px;
    height: auto;
  }

  .mobile-toggle {
    padding: 8px;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    width: 22px;
    height: 2.5px;
  }

  .mobile-nav {
    width: 85%;
    max-width: 280px;
  }

  /* Home featured: show grid instead of mobile scroll */
  .featured-products-section .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .featured-products-section .products-grid-mobile-wrapper {
    display: none !important;
  }

  /* Shop page: keep products visible */
  .shop-section .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .products-grid {
    border-radius: 10px;
  }

  .products-grid-mobile {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px 20px;
    scroll-padding: 15px;
  }

  .products-grid-mobile::-webkit-scrollbar {
    height: 6px;
  }

  .products-grid-mobile::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
  }

  .products-grid-mobile::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .products-grid-mobile::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }

  .products-grid-mobile .product-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 200px;
    scroll-snap-align: start;
  }

  .products-grid-mobile .product-image img {
    aspect-ratio: 1;
  }

  .products-grid-mobile .product-content {
    padding: 12px;
  }

  .products-grid-mobile .product-category {
    font-size: 10px;
  }

  .products-grid-mobile .product-title {
    font-size: 13px;
    margin: 6px 0;
  }

  .products-grid-mobile .product-price {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .products-grid-mobile .btn-sm {
    padding: 8px 12px;
    font-size: 11px;
    width: 100%;
  }

  .btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .btn-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: var(--white);
  }

  .btn-whatsapp i {
    font-size: 14px;
  }

  .products-grid-mobile-wrapper {
    position: relative;
  }

  .mobile-scroll-hint {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
  }

  .mobile-scroll-hint i {
    margin-right: 5px;
    animation: swipeHint 1.5s ease-in-out infinite;
  }

  @keyframes swipeHint {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(8px);
    }
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cart-actions {
    flex-direction: column;
  }

  .shop_table {
    font-size: 14px;
  }

  .shop_table th,
  .shop_table td {
    padding: 10px;
  }

  .hero-slider {
    height: 350px;
  }

  .slide::before {
    background: linear-gradient(135deg, rgba(59, 59, 59, 0.7) 0%,
        rgba(44, 51, 60, 0.5) 100%);
  }

  .slide-content {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .slide-content p {
    font-size: 13px;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section .row {
    flex-direction: column;
    text-align: center;
  }

  .cta-section .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .cta-section .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
  }

  .cta-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .cta-section p {
    font-size: 15px;
    margin-bottom: 0;
  }

  .cta-section .btn-lg {
    width: 100%;
    padding: 14px 30px;
  }

  /* Contact Form Mobile */
  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-form-wrapper .section-title {
    font-size: 22px;
  }

  .contact-form-wrapper>p {
    font-size: 14px;
  }

  .form-row {
    margin: 0;
    flex-direction: column;
  }

  .form-group {
    padding: 0;
    margin-bottom: 15px;
    width: 100%;
  }

  .form-group.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 15px;
  }

  .form-actions .btn {
    width: 100%;
    padding: 12px 25px;
  }

  .contact-section .row {
    flex-direction: column;
  }

  .contact-section .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-section .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-info {
    margin-top: 20px;
  }

  .info-box {
    padding: 20px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .info-item {
    margin-bottom: 20px;
  }

  .info-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .emergency-box {
    padding: 20px;
  }

  .emergency-box h4 {
    font-size: 18px;
  }

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

  .map-placeholder {
    height: 300px;
  }

  /* Future Section Mobile */
  .future-section {
    padding: 70px 0 90px;
  }

  .future-section .section-title {
    font-size: 26px;
  }

  .future-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .future-section .btn {
    padding: 14px 35px;
    font-size: 14px;
  }

  /* Go to Top Button Mobile */
  .go-to-top {
    bottom: 30px;
    left: 20px;
    width: 48px;
    height: 48px;
  }

  .cat-climb {
    font-size: 24px;
  }

  /* Stats Section Mobile */
  .stats-section {
    padding: 50px 0;
  }

  .stat-box {
    padding: 20px;
    margin-bottom: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

/* =============================================
   MODAL STYLES
   ============================================= */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-dialog.modal-lg {
  max-width: 900px;
}

.modal-content {
  position: relative;
  padding: 30px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--light-bg);
  border-radius: 50%;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-right: 50px;
}

/* PRODUCT MODAL */
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.product-modal-image img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-modal-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
  padding-right: 50px;
}

.product-modal-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.product-modal-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

.product-modal-info .btn-whatsapp {
  margin-top: 10px;
}

/* SOCIAL MODAL */
.social-modal-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-modal-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.2s ease;
  border: 2px solid var(--light-bg);
}

.social-modal-link:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
  background: rgba(59, 180, 82, 0.05);
}

.social-modal-link i {
  font-size: 24px;
  width: 30px;
  text-align: center;
}

.social-modal-link.facebook i { color: #1877f2; }
.social-modal-link.instagram i { color: #e4405f; }
.social-modal-link.twitter i { color: #1da1f2; }
.social-modal-link.youtube i { color: #ff0000; }
.social-modal-link.whatsapp i { color: #25d366; }

/* CONTACT MODAL */
.contact-modal-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
}

.contact-info-item i {
  font-size: 20px;
  color: var(--primary-color);
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-item .info-label {
  font-weight: 600;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 5px;
}

.contact-info-item .info-value {
  color: var(--text-light);
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* FEATURED PRODUCTS CAROUSEL */
.featured-carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.featured-carousel {
  position: relative;
  overflow: hidden;
}

.featured-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.featured-slide.active {
  display: block;
}

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

.featured-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.featured-prev,
.featured-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--white);
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  position: relative;
}

.featured-prev:hover,
.featured-next:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.featured-prev:active,
.featured-next:active {
  transform: scale(0.95);
}

.featured-dots {
  display: flex;
  gap: 10px;
}

.featured-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.featured-dot:hover {
  background: rgba(59, 180, 82, 0.3);
}

.featured-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* 4-COLUMN PRODUCT GRID */
.products-grid.shop-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.products-grid.featured-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
  font-size: 16px;
}

/* QUICK VIEW BUTTON */
.quick-view-btn {
  width: 100%;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.quick-view-btn:hover {
  transform: translateY(-2px);
}

.product-overlay .quick-view-btn {
  width: auto;
}

/* FEATURED BADGE */
.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.featured-badge i {
  font-size: 10px;
}

/* FOOTER MODAL TRIGGERS */
.modal-social-trigger,
.contact-info-trigger {
  transition: all 0.2s ease;
}

.modal-social-trigger:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.contact-info-trigger:hover {
  opacity: 0.8;
}

/* MOBILE RESPONSIVE MODALS */
@media (max-width: 991px) {
  .products-grid.shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid.featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-image {
    max-height: 300px;
  }

  .modal-dialog {
    width: 95%;
    max-height: 95vh;
  }

  .modal-content {
    padding: 25px 20px;
  }
}

@media (max-width: 767px) {
  /* Shop page mobile fixes */
  .shop-section .row {
    display: block !important;
  }

  .shop-section .shop-sidebar {
    display: none !important;
  }

  .shop-section .shop-content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  /* Show overlay on shop products for mobile */
  .shop-section .product-overlay {
    opacity: 1;
    display: flex;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    height: 60px;
  }

  .shop-section .product-overlay .quick-view-btn {
    margin: 5px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .products-grid.shop-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .products-grid.featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .featured-carousel-nav {
    gap: 15px;
    margin-top: 20px;
  }

  .featured-prev,
  .featured-next {
    width: 40px;
    height: 40px;
  }

  .featured-dot {
    width: 10px;
    height: 10px;
    cursor: pointer;
  }

  .modal-dialog {
    width: 98%;
    max-height: 98vh;
  }

  .modal-content {
    padding: 20px 15px;
  }

  .modal-title,
  .product-modal-title {
    font-size: 20px;
    padding-right: 40px;
  }

  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
    top: 10px;
    right: 10px;
  }

  .product-modal-price {
    font-size: 24px;
  }

  .product-modal-description {
    font-size: 13px;
  }

  .social-modal-link {
    padding: 12px 15px;
  }

  .social-modal-link i {
    font-size: 20px;
  }

  .contact-info-item {
    padding: 12px;
  }

  .contact-info-item i {
    font-size: 18px;
  }
}

/* =============================================
   TEAM SECTION
   ============================================= */

.team-section {
  padding: 70px 0;
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.team-social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-social-overlay {
  opacity: 1;
}

.team-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 8px;
}

.team-position {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.team-specialty {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 10px;
  font-style: italic;
}

.team-bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.team-specialties-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  justify-content: center;
}

.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(59, 180, 82, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(59, 180, 82, 0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.specialty-badge i {
  font-size: 10px;
}

/* Team Mobile Responsive */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .team-info h3 {
    font-size: 16px;
  }

  .team-position {
    font-size: 12px;
  }

  .team-specialty,
  .team-bio {
    font-size: 12px;
  }

  .team-social-overlay {
    opacity: 1;
    padding: 10px;
    gap: 10px;
  }

  .team-social-link {
    width: 35px;
    height: 35px;
  }
}
}