/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM - DeepLaxmi Textiles
   Mobile-first & Desktop-first responsive layout breakpoints
   ========================================================================== */

/* Laptop & Large Tablets (Max 1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px 20px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-container {
    gap: 32px;
  }

  .about-container {
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Medium Tablets & iPads (Max 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 48px 16px;
  }

  /* Sticky Navigation adjustments */
  .navbar-links-desktop,
  .navbar-actions .nav-cta-btn {
    display: none;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .navbar-actions {
    gap: 8px;
  }

  .action-icon-btn {
    display: flex; /* Show circular phone & wa buttons on mobile header */
  }

  /* Hero adjustments */
  .hero-section {
    padding-top: 100px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-tag {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-button-group {
    justify-content: center;
  }

  .experience-badge {
    left: 10px;
  }

  /* About Us adjustments */
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: 2; /* Move image below text for clean flow */
  }

  .about-content {
    text-align: center;
    align-items: center;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-features-row {
    align-items: center;
    text-align: left;
  }

  /* Collections page */
  .tabs-container {
    gap: 8px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .subcategory-grid {
    grid-template-columns: 1fr;
  }

  /* Why Choose Us page */
  .whychoose-grid {
    grid-template-columns: 1fr;
  }

  /* Best Sellers slide adjustment */
  .slider-container {
    gap: 12px;
  }

  .slider-item {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
    text-align: center;
  }

  .item-details-col {
    align-items: center;
    text-align: center;
  }

  .item-details-col h3 {
    font-size: 1.8rem;
  }

  .image-frame {
    height: 240px;
  }

  .slider-nav-btn {
    width: 40px;
    height: 40px;
  }

  /* Festival grid options */
  .festive-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Screen Smartphones (Max 480px) */
@media (max-width: 480px) {
  .brand-title {
    font-size: 1.25rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-button-group .btn {
    width: 100%; /* Force buttons block on small screen */
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-img-main {
    height: 340px;
  }

  .about-badge-card {
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .tab-btn::after {
    bottom: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .bottom-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
