/* ================================
   Responsive Styles (Navbar + Banner + Section3)
   ================================ */

/* Tablets (≤992px) */
@media (max-width: 992px) {

  /* Navbar */
  .navbar .nav-link {
    font-size: 1rem;
    padding: 6px 12px;
  }

  .video-banner {
    position: relative;
    width: 100%;
    height: 200vh;
    overflow: hidden;
  }

  /* Video banner overlay text */
  .overlay h1 {
    font-size: 2.5rem;
  }

  /* Section 3 */
  .section3 {
    padding: 40px 30px !important;
  }

  .section3-col2 {
    padding: 0 40px !important;
    margin-top: 80px !important;
  }
}

/* Mobiles (≤768px) */
@media (max-width: 768px) {

  /* Navbar stack */
  .navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar ul li {
    margin: 6px 0;
  }

  /* Video banner height */
  .video-banner {
    height: 100vh;
  }

  .overlay h1 {
    font-size: 2rem;
    padding: 0 15px;
  }

  /* Section 3 */
  .section3 {
    border-radius: 20px;
    padding: 30px 20px !important;
  }

  .section3-col2 {
    padding: 0 20px !important;
    margin-top: 40px !important;
  }
}

/* Small Mobiles (≤576px) */
@media (max-width: 576px) {

  /* Navbar brand + toggle */
  .custom-navbar {
    padding: 10px 0 !important;
    text-align: center;
  }

  .navbar .nav-link {
    font-size: 0.9rem;
    padding: 5px 10px;
  }

  /* Video banner */
  .video-banner {
    height: 100vh;
  }

  .video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: inherit;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top !important;
  }

  .overlay {
    top: 30%;
  }

  .overlay h1 {
    font-size: 1.6rem;
  }

  /* Section 3 */
  .section3 {
    padding: 20px 15px !important;
  }

  .section3-col2 {
    padding: 0 !important;
    margin-top: 20px !important;
    text-align: center;
  }

  .section3-col2 h2 {
    font-size: 1.4rem;
  }

  .section3-col2 p {
    font-size: 0.95rem;
  }
}



/* Product Page responsive */
/* responsive.css */

/* Extra small devices (phones, <576px) */
@media (max-width: 575.98px) {
  .product-container {
    margin-top: 100px;
    margin-bottom: 150px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .product-container h1 {
    font-size: 4.5rem;
    margin-bottom : 100px !important;
}

  .sidebar {
    padding: 15px;
  }

  .sidebar h6 {
    font-size: 1rem;
  }

  .product-card img {
    max-height: 220px;
  }

  .product-title {
    font-size: 1rem;
  }

  .price {
    font-size: 0.9rem !important;
  }

  .old-price {
    font-size: 0.8rem;
  }

  .cart {
    bottom: 50px !important;
    right: 15px !important;
  }

  .cart>.icon {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Small devices (landscape phones, 576px–767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .product-container {
    margin-top: 120px;
    margin-bottom: 200px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .product-container h1 {
    font-size: 4rem;
    margin-bottom : 50px !important;
}
  .product-card img {
    max-height: 280px;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .price {
    font-size: 1rem !important;
  }

  .cart {
    bottom: 70px !important;
    right: 20px !important;
  }
}

/* Medium devices (tablets, 768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .product-container {
    margin-top: 150px;
    margin-bottom: 250px;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .product-container h1 {
    font-size: 4.5rem;
    margin-bottom : 30px !important;
}
  .product-card img {
    max-height: 320px;
  }

  .product-title {
    font-size: 1.3rem;
  }
}

/* Large devices (desktops, ≥992px) */
@media (min-width: 992px) {
  .product-card img {
    max-height: 350px;
  }
}


