/* 
   Main Stylesheet for Govind Glass International
   Author: Govind Glass International
   Version: 3.0 - Enhanced Professional Design
*/

/* ===== VARIABLES ===== */
:root {
  /* Update primary color to be more consistent */
  --primary-color: #e67e22; /* Vibrant orange */
  --secondary-color: #d35400; /* Darker orange */
  --accent-color: #3498db; /* Blue accent */
  --text-color: #2c3e50; /* Dark blue-gray for text */
  --text-light: #7f8c8d; /* Medium gray for secondary text */
  --text-white: #ffffff; /* White text */
  --bg-light: #f5f7fa; /* Light background */
  --bg-dark: #2c3e50; /* Dark background */
  --border-color: #e0e0e0; /* Light gray for borders */
  --success-color: #2ecc71; /* Green for success messages */
  --danger-color: #e74c3c; /* Red for error messages */
  --warning-color: #f39c12; /* Orange for warnings */
  --info-color: #3498db; /* Light blue for info */

  /* Shadows and Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

/* ===== RESET & GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* ===== SECTION STYLES ===== */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.section-title.left-align h2:after {
  left: 0;
  transform: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.6s;
  z-index: 1;
}

.btn:hover:before {
  left: 100%;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

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

.btn-outline {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.125rem;
}

/* ===== HEADER ===== */
header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
  transition: var(--transition);
}

.logo-text {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.logo-text:hover {
  color: var(--secondary-color);
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.5rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
}

.nav-menu li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: var(--transition);
}

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

.nav-menu li a:hover {
  color: var(--primary-color);
}

.nav-menu li a:hover:after,
.nav-menu li a.active:after {
  width: 100%;
}

.nav-menu li a.active {
  color: var(--primary-color);
}

/* Fixed mobile menu styles */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
}

.bar {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: var(--text-color);
  border-radius: 3px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px; /* Narrower mobile menu */
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px 20px; /* More space at top */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 0 0 15px 0; /* More space between items */
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 600px;
  background-color: var(--bg-light);
  overflow: hidden;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--text-light);
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 126, 34, 0.1);
  top: 0;
  left: 0;
  z-index: 1;
}

.about-image img {
  transition: var(--transition);
}

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

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover:before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: rotateY(360deg);
  transition: transform 0.8s ease, background-color 0.3s ease, color 0.3s ease;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

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

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== PRODUCTS SECTION ===== */
.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.category-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.category-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.category-card:hover .category-image:before {
  opacity: 1;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.category-content {
  padding: 20px;
}

.category-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

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

.category-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: var(--bg-light);
  position: relative;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/pattern-bg.png");
  opacity: 0.05;
  pointer-events: none;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 1s ease;
}

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

.testimonial-content {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border-top: 3px solid var(--primary-color);
}

.quote-icon {
  font-size: 30px;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-color);
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.client-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
  font-style: normal;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ===== STATS SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(230, 126, 34, 0) 100%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover:before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.stat-number:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

/* ===== CLIENTS SECTION ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-logo {
  background-color: #fff;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.client-logo:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.client-logo:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background-color: var(--primary-color);
  color: var(--text-white);
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/pattern-light.png");
  opacity: 0.1;
  pointer-events: none;
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 0 0;
  position: relative;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.footer-links ul li:before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.6;
}

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

.footer-links ul li a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-icons a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  top: 100%;
  left: 0;
  transition: top 0.3s ease;
  z-index: -1;
}

.social-icons a:hover:before {
  top: 0;
}

.social-icons a:hover {
  color: var(--text-white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.admin-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-left: 10px;
  transition: var(--transition);
}

.admin-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  height: 300px;
  background-color: var(--primary-color);
  background-image: linear-gradient(rgba(230, 126, 34, 0.8), rgba(211, 84, 0, 0.8)), url("/images/banner-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  position: relative;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRODUCTS PAGE ===== */
.products-filter {
  margin-bottom: 40px;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.products-filter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-color);
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.2);
}

.search-group {
  position: relative;
  flex: 2;
  min-width: 300px;
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  color: var(--primary-color);
}

.products-grid {
  padding: 40px 0;
}

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

.product-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.product-card:hover:before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.product-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-card:hover .product-image:before {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-details h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

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

.product-category {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.no-products {
  text-align: center;
  padding: 50px 0;
}

.no-products-message {
  background-color: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.no-products-message i {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.no-products-message h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.no-products-message p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.pagination-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: var(--border-radius-sm);
  color: var(--text-color);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pagination-link:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.pagination-link.active {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.pagination-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-breadcrumb {
  background-color: var(--bg-light);
  padding: 15px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.breadcrumb span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.breadcrumb span.current {
  color: var(--primary-color);
  font-weight: 500;
}

.product-detail {
  padding: 60px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.product-gallery {
  position: relative;
}

.main-image {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.main-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.main-image:hover:before {
  opacity: 1;
}

.main-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

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

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumbnail {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.thumbnail:hover:before {
  opacity: 1;
}

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

.thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.product-info h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.product-meta {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-category,
.product-code {
  font-size: 0.9rem;
  color: var(--text-light);
}

.product-category a {
  color: var(--primary-color);
}

.product-description,
.product-specs {
  margin-bottom: 30px;
}

.product-description h3,
.product-specs h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-color);
  position: relative;
  padding-left: 15px;
}

.product-description h3:before,
.product-specs h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--primary-color);
}

.specs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  padding: 10px;
  border-radius: var(--border-radius-sm);
}

.spec-name {
  font-weight: 500;
  margin-right: 10px;
  color: var(--text-color);
}

.spec-value {
  color: var(--text-light);
}

.product-cta {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 20px;
  border-left: 3px solid var(--primary-color);
}

.product-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.product-cta .btn {
  margin-right: 10px;
}

.product-features {
  background-color: var(--bg-light);
  padding: 60px 0;
  position: relative;
}

.product-features:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/pattern-bg.png");
  opacity: 0.05;
  pointer-events: none;
}

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

.related-products {
  padding: 60px 0;
}

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

.product-inquiry {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.inquiry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.inquiry-text h2 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.inquiry-text h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.inquiry-text p {
  margin-bottom: 20px;
}

.inquiry-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.inquiry-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 126, 34, 0.1);
  z-index: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-info {
  padding: 60px 0;
}

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

.contact-card {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.contact-card:hover:before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.contact-card .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.contact-form-map {
  padding: 60px 0;
  background-color: var(--bg-light);
}

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

.contact-form,
.contact-map {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-header,
.map-header {
  margin-bottom: 30px;
}

.form-header h2,
.map-header h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
}

.form-header h2:after,
.map-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.2);
}

.google-map {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.form-response {
  margin-top: 20px;
}

.contact-offices {
  padding: 60px 0;
}

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

.office-card {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.office-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.office-card:hover:before {
  transform: scaleX(1);
}

.office-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.office-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.office-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.office-card p {
  margin-bottom: 10px;
  color: var(--text-light);
}

.faq {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.faq-toggle {
  font-size: 1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    height: 500px;
  }

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

  .about-grid,
  .product-detail-grid,
  .inquiry-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  .hero {
    height: 450px; /* Reduce height on mobile */
  }

  .product-card,
  .gallery-item,
  .feature-card {
    height: auto !important; /* Allow natural height on mobile */
  }

  .container {
    max-width: 540px;
  }

  section {
    padding: 50px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 0 0 20px 0;
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    height: 400px;
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-contact,
  .footer-social {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .hero {
    height: 350px;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

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

  .page-banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 1.75rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .filter-form {
    flex-direction: column;
  }

  .product-meta {
    flex-direction: column;
    gap: 10px;
  }

  .specs-list {
    grid-template-columns: 1fr;
  }

  .product-cta .btn {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.fade-in {
  animation: fadeIn 1s ease;
}

.slide-in-left {
  animation: slideInLeft 1s ease;
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

.slide-in-up {
  animation: slideInUp 1s ease;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.d-flex {
  display: flex;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

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

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.rounded {
  border-radius: var(--border-radius);
}

.shadow {
  box-shadow: var(--shadow);
}

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

.bg-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.text-primary {
  color: var(--primary-color);
}

.text-white {
  color: var(--text-white);
}

.text-light {
  color: var(--text-light);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===== ANIMATE.CSS CLASSES ===== */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__fadeOut {
  animation-name: fadeOut;
}

.animate__zoomIn {
  animation-name: zoomIn;
}

.animate__pulse {
  animation-name: pulse;
  animation-duration: 0.5s;
}

.animate__bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.75s;
}

.animate__flipInX {
  animation-name: flipInX;
}

.animate__shakeX {
  animation-name: shakeX;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

/* Fix color consistency */
:root {
  /* Update primary color to be more consistent */
  --primary-color: #e67e22; /* Vibrant orange */
  --secondary-color: #d35400; /* Darker orange */
}

/* Fix responsive issues */
@media (max-width: 768px) {
  .hero {
    height: 450px; /* Reduce height on mobile */
  }

  .product-card,
  .gallery-item,
  .feature-card {
    height: auto !important; /* Allow natural height on mobile */
  }

  .footer-content {
    gap: 20px; /* Reduce gap on mobile */
  }
}

/* Fix image container heights */
.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.gallery-item {
  height: 200px;
  overflow: hidden;
}

/* Ensure all images have proper object-fit */
.product-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix button hover states */
.btn:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Fix form elements */
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

/* Fix spacing issues */
.section {
  padding: 60px 0;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Fix navigation on mobile */
@media (max-width: 768px) {
  .nav-menu {
    width: 250px; /* Narrower mobile menu */
    padding-top: 70px; /* More space at top */
  }

  .nav-menu li {
    margin-bottom: 15px; /* More space between items */
  }
}

/* Fix overflow issues */
body {
  overflow-x: hidden;
}

/* Ensure consistent font sizes */
@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/* ANIMATION FIX: Disable animations on mobile */
@media (max-width: 768px) {
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .animate__animated,
  [data-aos],
  .slide,
  .testimonial-slide,
  .product-card,
  .feature-card,
  .gallery-item {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-name: none !important;
  }

  /* Fix for horizontal scrolling */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container,
  section,
  header,
  footer,
  main,
  div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Fix image container heights */
  .product-image,
  .gallery-item,
  .main-image,
  .thumbnail {
    height: auto !important;
    max-height: 300px;
  }
}

/* Fix for animation keyframes that might cause overflow */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
