:root {
  /* Color Variables */
  --primary-color: #4361ee;
  --secondary-color: #3a0ca3;
  --accent-color: #4cc9f0;
  --success-color: #4ade80;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --light-color: #f8fafc;
  --dark-color: #1e293b;
  --gray-color: #64748b;
  --light-gray: #e2e8f0;
  /* Text Variables */
  --heading-font: "Poppins", sans-serif;
  --body-font: "Inter", sans-serif;
  /* Spacing Variables */
  --section-spacing: 4rem;
  --card-spacing: 1.5rem;
  --element-spacing: 1rem;
  /* Border Radius */
  --border-radius-sm: 0.5rem;
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: #f9fafb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

section {
  padding: var(--section-spacing) 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}
.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Header Styles */
.page-header {
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-color);
  margin: 0 0.5rem;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 5rem 0;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  margin-bottom: var(--section-spacing);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}
.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  color: #f8fafc;
}

.hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: #f8fafc;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  color: #f8fafc;
}

/* Cards */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: var(--card-spacing);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Quick Facts Strip */
.quick-facts {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.fact-item {
  text-align: center;
  padding: 1rem;
}

.fact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Products Grid */
.product-card .product-img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.product-rating {
  color: var(--warning-color);
}

/* Carousels */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-item {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
}

/* Gallery */
.gallery-item {
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reviews */
.review-card {
  border-left: 4px solid var(--primary-color);
  background-color: white;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-stars {
  color: var(--warning-color);
}

/* Social Wall */
.social-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.social-post-header {
  padding: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.social-post-body img {
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Services Grid */
.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
}

/* Footer */
.page-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: var(--section-spacing);
}

.footer-links h5 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
}
.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-light {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
}

/* Device-specific overrides */
@media (max-width: 768px) {
  /* Mobile-specific adjustments */
  :root {
    --section-spacing: 2.5rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .hero-section {
    padding: 3rem 0;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-stats {
    justify-content: center;
  }
  .stat-item {
    flex: 0 0 50%;
  }
}
/* Desktop-specific */
@media (min-width: 992px) {
  .show-side-by-side .row {
    display: flex;
    align-items: center;
  }
}
/* Industry-specific indicators */
.industry-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.slider-btn {
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: 50%;
}/*# sourceMappingURL=storehome.css.map */