/* ==========================================
   Responsive Breakpoints
   ========================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .two-col {
    gap: 40px;
  }

  .product-categories {
    gap: 20px;
  }

  .product-card {
    height: 350px;
  }

  .hover-card {
    height: 380px;
  }

  .carousel-slide {
    min-width: 50%;
  }

  .footer-grid {
    gap: 30px;
  }
}

/* Tablet portrait and below */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  /* Navigation */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.3s ease;
    gap: 20px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 0.85rem;
  }

  .nav-lang {
    margin-top: 20px;
  }

  /* Hero */
  .hero-content h1,
  .hero-content h2 {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  /* Page Header */
  .page-header {
    height: 30vh;
    min-height: 250px;
  }

  .page-header-content h1 {
    font-size: 1.8rem;
  }

  /* Two Column */
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-col.reverse .col-text {
    order: 1;
  }

  .two-col.reverse .col-image {
    order: 2;
  }

  /* Product Categories */
  .product-categories {
    grid-template-columns: 1fr;
  }

  .product-card {
    height: 300px;
  }

  /* Hover Cards */
  .hover-cards {
    grid-template-columns: 1fr;
  }

  .hover-card {
    height: 350px;
  }

  /* Product Detail */
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail .product-image img {
    max-height: 350px;
  }

  /* Tabs */
  .tab-nav {
    gap: 10px;
  }

  .tab-nav li a {
    font-size: 0.75rem;
    padding: 8px 15px;
  }

  /* Parallax */
  .parallax-section {
    background-attachment: scroll;
    padding: 80px 20px;
  }

  .parallax-content blockquote {
    font-size: 1.1rem;
  }

  /* Carousel */
  .carousel-slide {
    min-width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* Section */
  .section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }

  .hero-content h1,
  .hero-content h2 {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .hero-content p {
    font-size: 0.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.65rem;
  }

  .tab-nav {
    flex-direction: column;
    gap: 5px;
  }

  .section {
    padding: 40px 0;
  }
}
