/* responsive.css */
@media (min-width: 480px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  section {
    padding: 48px 0;
  }

  .top-bar {
    font-size: 0.9rem;
  }

  .tb-email {
    display: inline;
  }

  .tb-social span {
    display: inline;
    margin-right: 5px;
  }

  .navbar {
    height: 75px;
  }

  .nav-logo img {
    height: 50px;
  }

  .hamburger {
    display: none;
  }

  .nav-links {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    display: flex;
    gap: 20px;
  }

  .nav-links a {
    color: var(--text-dark);
    font-size: 0.82rem;
    padding: 10px 5px;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav-links a.nav-pill {
    padding: 6px 18px;
    margin-right: 5px;
  }

  .nav-links a.active:not(.nav-pill) {
    color: var(--primary);
  }

  .nav-links a.active:not(.nav-pill)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
  }

  /* Fix vertical alignment for right-side items */
  .navbar .container>div:last-child {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .nav-links .btn-wa {
    display: none;
  }

  .nav-close {
    display: none;
  }

  .nav-btn-desktop {
    display: inline-flex;
  }

  .mobile-bottom-bar {
    display: none;
  }

  .wa-float {
    bottom: 30px;
  }

  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-grid>div {
    flex: 1;
    min-width: 200px;
  }

  .filter-tabs {
    top: 62px;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2.0rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 60px 0;
  }

  .nav-links {
    gap: 28px;
  }

  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prod-img {
    height: 200px;
  }

  .prod-title {
    font-size: 0.88rem;
  }

  .prod-price {
    font-size: 1.05rem;
  }

  .btn-primary,
  .btn-wa,
  .btn-outline {
    padding: 11px 22px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  .footer-map {
    height: 260px;
  }


}

/* Home Page Specific */
.home-hero {
  background: var(--black);
  min-height: auto;
  display: flex;
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
}

.hero-fluid-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.hero-img-col {
  width: 100%;
  height: 350px;
  background: radial-gradient(circle, #2A2A2A 0%, #111 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.hero-img-col .slide-img {
  position: absolute;
  max-height: 85%;
  max-width: 85%;
  object-fit: contain;
  opacity: 0;
  animation: stoveFade 12s infinite ease-in-out;
}

.hero-img-col .img-1 {
  animation-delay: 0s;
}

.hero-img-col .img-2 {
  animation-delay: 4s;
}

.hero-img-col .img-3 {
  animation-delay: 8s;
}

.hero-text-col {
  width: 100%;
  padding: 20px 0;
}

@keyframes stoveFade {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  10% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 20px 25px rgba(232, 67, 26, 0.3));
  }

  25% {
    opacity: 1;
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 15px 20px rgba(232, 67, 26, 0.2));
  }

  33% {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }

  100% {
    opacity: 0;
  }
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.f-card {
  border-left: 3px solid var(--primary);
  padding: 16px 14px;
  background: transparent;
}

.f-card h3 {
  font-size: 0.92rem;
  margin: 8px 0 4px;
  text-transform: none;
}

.f-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.about-strip {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-imgs {
  display: flex;
  gap: 10px;
}

.about-imgs img {
  width: 48%;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h-circle {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ind-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 16px;
  transition: border-color 0.25s;
}

.ind-card:hover {
  border-color: var(--primary);
}

.ind-card h3 {
  font-size: 0.88rem;
  color: var(--white);
  margin: 8px 0 4px;
  text-transform: none;
}

.ind-card p {
  font-size: 0.75rem;
  color: #888;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tech-item h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin: 5px 0;
  text-transform: none;
}

.tech-item p {
  font-size: 0.8rem;
  color: var(--text-grey);
}

.insta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.insta-card {
  position: relative;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  border: 2px solid var(--primary);
}

.insta-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

/* Testimonials and Gallery centered in style.css media queries */

@media (min-width: 1024px) {
  .home-hero {
    height: 90vh;
    min-height: 550px;
    padding: 0;
    align-items: center;
  }

  .hero-fluid-container {
    flex-direction: row;
    gap: 60px;
  }

  .hero-text-col {
    width: 50%;
    padding: 0;
  }

  .hero-img-col {
    width: 50%;
    height: 75vh;
    max-height: 700px;
    background: radial-gradient(circle, #2A2A2A 0%, #0E0E0E 80%);
    border-radius: 12px;
  }

  .feature-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-strip {
    flex-direction: row;
    align-items: center;
  }

  .about-strip>div {
    flex: 1;
  }

  .how-steps {
    flex-direction: row;
  }

  .h-step {
    flex: 1;
    position: relative;
  }

  .h-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 40px;
    width: calc(100% - 50px);
    border-top: 2px dashed #DDD;
  }

  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .insta-card {
    height: 160px;
  }

  .testi-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }

  .testi-card {
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .home-hero {
    min-height: auto;
    align-items: flex-start;
    padding: 20px 0 60px;
  }

  .home-hero h1 {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
  }

  .home-hero p {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
  }

  .wa-float {
    display: none !important;
  }

  .nav-pill {
    padding: 6px 16px !important;
    font-size: 0.85rem !important;
    margin-bottom: 10px;
    display: inline-block;
  }

  .footer-grid {
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer p {
    margin: 0 auto 15px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}