/* ============ Breakpoints ============ */
/* Tablet & up: keep horizontal menu */
@media (min-width: 768px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: block !important;
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    text-align: right !important;
  }

  .nav-links ul {
    flex-direction: row !important;
    gap: 20px !important;
  }
}

/* Mobile: navigation drawer */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 110;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .85);
    padding: 20px 0;
    border-top: 1px solid #000;
    text-align: center;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links.active {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Gallery: 2 columns on tablets/large phones */
  .fw-Gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer grid: 2 cols at <= 992px */
@media (max-width: 992px) {
  .fw-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small phones */
@media (max-width: 560px) {
  .fw-footer__grid {
    grid-template-columns: 1fr;
  }

  .fw-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .fw-map iframe {
    height: 200px;
  }

  .fw-Gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* Tiny tweaks */
@media (max-width: 500px) {
  .category-heading h2 {
    font-size: 40px;
  }

  .about-cll-2 h3,
  .about-cll-3 h3 {
    font-size: 35px;
  }

  .headings h2 {
    font-size: 37px;
  }

  .New-arrival-headings h2 {
    font-size: 35px;
  }

  .arival-cll-2 h3 {
    font-size: 35px;
  }
}

/* Tablet fine-tuning (landscape tablets) */
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar {
    padding: 0 3%;
    height: 80px;
  }

  .logo-img {
    height: 70px;
  }

  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .cta {
    padding: 8px 18px;
    font-size: 14px;
  }
}

/* ------------------ Responsive ------------------ */
@media (max-width: 992px) {
  .fw-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .fw-Gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .fw-footer__grid {
    grid-template-columns: 1fr;
  }

  .fw-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .fw-map iframe {
    height: 200px;
  }

  .fw-Gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* Small tweaks */
@media (max-width: 500px) {
  .category-heading h2 {
    font-size: 40px;
  }

  .about-cll-2 h3,
  .about-cll-3 h3 {
    font-size: 35px;
  }

  .headings h2 {
    font-size: 37px;
  }

  .New-arrival-headings h2 {
    font-size: 35px;
  }

  .arival-cll-2 h3 {
    font-size: 35px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .about-cll-2 h3,
  .about-cll-3 h3 {
    font-size: 25px;
    color: #000;
  }

  .navbar {
    padding: 0 3%;
    height: 80px;
  }

  .logo-img {
    height: 70px;
  }

  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .cta {
    padding: 8px 18px;
    font-size: 14px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .logo-img {
    height: 70px;
  }

  .category-heading h2 {
    font-size: 2rem;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .cta {
    padding: 8px 18px;
    font-size: 14px;
  }

}

@media (max-width: 720px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .top-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: block !important;
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    text-align: right !important;
  }

  .nav-links ul {
    flex-direction: row !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 110;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .85);
    padding: 20px 0;
    border-top: 1px solid #000;
    text-align: center;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links.active {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
    }

    .checkout-form-section, .checkout-summary-section {
        padding: 20px;
        border-left: none;
        border-bottom: 1px solid #eee;
    }
}