/* ===================================
   LOHAKAR - HOME PAGE STYLES
   Industrial & Bold Design
   ===================================

   TABLE OF CONTENTS:
   1. Hero Section - Full Bleed Impact
   2. Products Showcase - Asymmetric Grid
   3. Craftsmanship Section
   4. Legacy Banner

   =================================== */

/* ===================================
   1. HERO SECTION - FULL IMPACT
   =================================== */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-black);
  color: var(--bg-color);
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}

/* Metal texture overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  pointer-events: none;
  opacity: 0.5;
}

/* Diagonal accent stripe */
.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -40%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 35%,
    rgba(192, 57, 43, 0.1) 45%,
    rgba(192, 57, 43, 0.25) 50%,
    rgba(192, 57, 43, 0.1) 55%,
    transparent 65%
  );
  transform: rotate(-15deg);
  pointer-events: none;
  animation: diagonalFlash 8s ease-in-out infinite;
}

@keyframes diagonalFlash {
  0% {
    transform: rotate(-15deg) translateX(-30%) translateY(-10%);
    opacity: 0;
  }
  15% {
    opacity: 0.4;
  }
  50% {
    transform: rotate(-15deg) translateX(30%) translateY(10%);
    opacity: 0.8;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    transform: rotate(-15deg) translateX(-30%) translateY(-10%);
    opacity: 0;
  }
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.hero__content {
  max-width: 700px;
  padding: 2rem 0;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  animation: titleSlideIn 1s ease-out 0.3s backwards;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    letter-spacing: 0.2em;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: -0.03em;
  }
}

/* Forged effect on title */
.hero__title::after {
  content: "LOHAKAR";
  position: absolute;
  top: 0;
  left: 2px;
  color: rgba(192, 57, 43, 0.3);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.3;
    text-shadow: 0 0 10px rgba(192, 57, 43, 0.3);
  }
  50% {
    opacity: 0.5;
    text-shadow: 0 0 20px rgba(192, 57, 43, 0.5);
  }
}

.hero__subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
  color: #c0392b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-left: 4px solid #c0392b;
  padding-left: 1.5rem;
  animation: subtitleSlide 1s ease-out 0.6s backwards;
  position: relative;
}

@keyframes subtitleSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    border-left-width: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    border-left-width: 4px;
  }
}

.hero__description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 1.5rem;
  font-style: italic;
  animation: heroFadeIn 1s ease-out 0.75s backwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__description .highlight {
  color: #e74c3c;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero__description .highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e74c3c, transparent);
  opacity: 0.5;
}

.hero__description em {
  display: block;
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  text-shadow: 0 2px 10px rgba(231, 76, 60, 0.2);
  letter-spacing: 0.3px;
}

.hero__cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: ctaFadeIn 1s ease-out 0.9s backwards;
}

@keyframes ctaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__cta .btn {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.hero__cta .btn--primary {
  background-color: #c0392b;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}

.hero__cta .btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hero__cta .btn--primary:hover::before {
  left: 100%;
}

.hero__cta .btn--primary:hover {
  background-color: #e74c3c;
  transform: translateX(4px);
  box-shadow: 0 5px 20px rgba(192, 57, 43, 0.4);
}

.hero__cta .btn--outline {
  border: 3px solid #ffffff;
  color: #ffffff;
  background: transparent;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}

.hero__cta .btn--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff;
  transition: width 0.4s ease;
  z-index: -1;
}

.hero__cta .btn--outline:hover::before {
  width: 100%;
}

.hero__cta .btn--outline:hover {
  color: #0a0a0a;
  transform: translateX(-4px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* ===================================
   2. PRODUCTS SHOWCASE - ACCORDION SLIDER
   =================================== */

.products {
  background: #ffffff;
  padding: 0;
  margin: 0;
}

/* Accordion Slider Container */
.slider-container {
  width: 100%;
  max-width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  margin: 0;
  box-shadow: none;
}

.now-showing {
  display: none;
}

.accordion-slider {
  display: flex;
  height: 100%;
  position: relative;
}

.slide {
  flex: 1;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  filter: grayscale(1) brightness(0.7);
}

.slide:hover {
  filter: grayscale(0.5) brightness(0.85);
}

.slide.active {
  flex: 2.5;
  filter: grayscale(0) brightness(1);
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.85) 80%
  );
  transition: background 0.8s ease;
}

.slide.active::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 80%
  );
}

.slide-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: white;
  z-index: 2;
}

.slide.active .slide-content {
  bottom: 80px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-number {
  font-size: 64px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  position: absolute;
  bottom: 30px;
  left: 30px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7),
    2px 2px 10px rgba(0, 0, 0, 1), -2px -2px 10px rgba(0, 0, 0, 0.8);
}

.slide.active .slide-number {
  bottom: auto;
  top: -50px;
  font-size: 48px;
  left: 0;
  color: rgba(192, 57, 43, 0.9);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(192, 57, 43, 0.4),
    2px 2px 10px rgba(0, 0, 0, 1), -2px -2px 10px rgba(0, 0, 0, 0.8);
}

.product-brand {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 5px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  position: absolute;
  bottom: 100px;
  left: 30px;
  white-space: nowrap;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 0 15px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 1),
    2px 2px 10px rgba(0, 0, 0, 1), -2px -2px 10px rgba(0, 0, 0, 1);
}

.slide.active .product-brand {
  transform: rotate(0deg);
  position: static;
  transform-origin: unset;
  color: #e74c3c;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 40px rgba(192, 57, 43, 0.4),
    2px 2px 10px rgba(0, 0, 0, 1), -2px -2px 10px rgba(0, 0, 0, 1);
}

.product-name {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.slide.active .product-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.product-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  font-weight: 500;
}

.slide.active .product-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.product-specs {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-left: 3px solid #c0392b;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slide.active .product-specs {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .spec-row {
  opacity: 1;
  transform: translateX(0);
}

.slide.active .spec-row:nth-child(1) {
  transition-delay: 0.6s;
}
.slide.active .spec-row:nth-child(2) {
  transition-delay: 0.65s;
}
.slide.active .spec-row:nth-child(3) {
  transition-delay: 0.7s;
}
.slide.active .spec-row:nth-child(4) {
  transition-delay: 0.75s;
}

.spec-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.spec-value {
  color: white;
  font-weight: 700;
}

.performance-badges {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
  flex-wrap: wrap;
}

.slide.active .performance-badges {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(192, 57, 43, 0.8);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slide.active .badge {
  opacity: 1;
  transform: scale(1);
}

.slide.active .badge:nth-child(1) {
  transition-delay: 0.85s;
}
.slide.active .badge:nth-child(2) {
  transition-delay: 0.9s;
}
.slide.active .badge:nth-child(3) {
  transition-delay: 0.95s;
}

.badge-icon {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.view-product-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 3px solid #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 3;
  color: transparent;
  font-size: 0;
}

.view-product-btn::before,
.view-product-btn::after {
  content: "";
  position: absolute;
  background: #c0392b;
  transition: all 0.4s ease;
}

.view-product-btn::before {
  width: 14px;
  height: 3px;
}

.view-product-btn::after {
  width: 3px;
  height: 14px;
}

.slide.active .view-product-btn {
  width: auto;
  height: auto;
  border-radius: 4px;
  padding: 12px 24px;
  background: #c0392b;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slide.active .view-product-btn::before,
.slide.active .view-product-btn::after {
  display: none;
}

.slide.active .view-product-btn:hover {
  background: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(192, 57, 43, 0.4);
}

.navigation-arrows {
  display: none;
}

/* Responsive Accordion Slider */
@media (max-width: 768px) {
  .slider-container {
    height: 100vh;
    max-height: 100vh;
  }

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

  .slide {
    flex: 1;
    min-height: 80px;
  }

  .slide.active {
    flex: 3;
  }

  .slide-number {
    font-size: 48px;
    bottom: 15px;
    left: 15px;
  }

  .slide.active .slide-number {
    font-size: 36px;
    top: -40px;
  }

  /* Fix vertical text visibility when minimized */
  .product-brand {
    transform: none;
    position: absolute;
    font-size: 14px;
    bottom: 50%;
    left: 15px;
    margin-bottom: 0;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 0.95);
  }

  .slide.active .product-brand {
    font-size: 14px;
    margin-bottom: 8px;
    position: static;
    bottom: auto;
    left: auto;
  }

  /* Fix content positioning when expanded */
  .slide-content {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .slide.active .slide-content {
    bottom: 60px;
  }

  /* Adjust text sizes for mobile */
  .product-name {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .product-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .product-specs {
    padding: 0.75rem;
    font-size: 13px;
  }

  .spec-row {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .performance-badges {
    gap: 8px;
    margin-top: 12px;
  }

  .badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .view-product-btn {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }

  .slide.active .view-product-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .navigation-arrows {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Old Product Card Styles (kept for potential future use) */
.product-card {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border-bottom: 1px solid #ecf0f1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #c0392b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 2rem 3rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-card__link {
  color: #ffffff;
  gap: 1.5rem;
  transform: translateX(20px);
}

.product-card__link::after {
  content: "→";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__link::after {
  transform: translateX(10px);
}

/* ===================================
   3. CRAFTSMANSHIP SECTION
   =================================== */

.why-choose {
  background: #0a0a0a;
  color: #ffffff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: "QUALITY";
  position: absolute;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
}

.why-choose .section__title {
  color: #ffffff;
  text-align: left;
  padding: 0 0 1rem 0;
  border-bottom: 4px solid #c0392b;
  display: inline-block;
  margin-bottom: 3rem;
}

.why-choose .section__description {
  color: rgba(255, 255, 255, 0.7);
  border-left-color: #c0392b;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  text-align: left;
  padding: 0;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid #c0392b;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-left-width: 6px;
  padding-left: 2.5rem;
}

.feature-card__icon {
  display: none; /* Removing for cleaner industrial look */
}

.feature-card__title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-card__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* ===================================
   4. LEGACY BANNER
   =================================== */

.cta {
  background: #c0392b;
  color: #ffffff;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.05) 20px,
    rgba(0, 0, 0, 0.05) 40px
  );
}

.cta__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta__description {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 700px;
}

.cta__buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta__buttons .btn {
  padding: 1.5rem 3.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta__buttons .btn--primary {
  background-color: #0a0a0a;
  color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.cta__buttons .btn--primary:hover {
  background-color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta__buttons .btn--outline {
  border: 3px solid #ffffff;
  color: #ffffff;
  background: transparent;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

.cta__buttons .btn--outline:hover {
  background-color: #ffffff;
  color: #c0392b;
  transform: translateY(-3px);
}

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

/* Mobile devices */
@media (max-width: 576px) {
  .hero {
    min-height: 80vh;
    padding: 3rem 1rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__buttons .btn {
    width: 100%;
  }
}

/* Tablet devices */
@media (min-width: 577px) and (max-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Desktop devices */
@media (min-width: 992px) {
  .hero {
    padding: 6rem 2rem;
  }

  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================================
   END OF HOME PAGE STYLES
   =================================== */
