/* =========================
   FULL RESPONSIVE CSS
========================= */

/* Apply Montserrat font */
* {
  font-family: 'Montserrat', sans-serif;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {

  .container {
    padding: 0 20px;
  }

  .search-box {
    max-width: 100%;
    margin: 10px 0;
  }

  .slide {
    padding: 6%;
  }

  .slide-content {
    max-width: 55%;
  }

  .slide-content h2 {
    font-size: 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bs-card {
    min-width: 300px;
  }

  .ts-card {
    width: 48%;
  }

  .product-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .top-bar {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1f2933;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .phone {
    display: none;
  }

  .hero-slider {
    height: auto;
    padding: 60px 0;
  }

  .slide {
    position: relative;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .slide-content,
  .slide-image {
    max-width: 100%;
  }

  .slide-content h2 {
    font-size: 32px;
  }

  .slide-image img {
    max-width: 75%;
  }

  .arrow {
    display: none;
  }

  .fav-product {
    padding: 60px 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .bs-header {
    flex-direction: column;
    gap: 15px;
  }

  .ts-header {
    flex-direction: column;
    gap: 20px;
  }

  .ts-card {
    width: 100%;
  }

  .cart-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grids {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .product-title {
    font-size: 36px;
  }

  .circle-bg {
    width: 300px;
    height: 300px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .bottom-wrap {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {

  .slide-content h2 {
    font-size: 26px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .btn,
  .product-btn,
  .add-cart,
  .add-cart-t {
    width: 100%;
    text-align: center;
  }

  .slide-image img {
    max-width: 85%;
  }

  .product-content h1 {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
