/* ===== responsive.css — All Media Queries ===== */

@media(max-width:768px) { .container { padding: 0 16px; } }

@media(max-width:900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    gap: 0;
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--secondary);
  }

  .nav-links.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    color: var(--text-medium);
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--primary); font-weight: 600; }

  .menu-toggle { display: flex; }
}

@media(max-width:900px) { .hero .container { grid-template-columns: 1fr; text-align: center; } .hero { padding: 80px 0 40px; min-height: auto; } .hero-content { max-width: 100%; margin-bottom: 40px; } .hero-subtitle { margin-left: auto; margin-right: auto; } }

@media(max-width:600px) { .hero-buttons { flex-direction: column; align-items: center; } }

@media(max-width:900px) { .hero-flower-circle { width: min(360px, 100%); } }

@media(max-width:600px) { .hero-flower-circle { width: min(300px, 100%); } }

@media(max-width:900px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

@media(max-width:600px) { .categories-grid { grid-template-columns: 1fr; } }

@media(max-width:1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

@media(max-width:800px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

@media(max-width:500px) { .products-grid { grid-template-columns: 1fr; } }

@media(max-width:900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

@media(max-width:600px) { .about-image-frame { width: 280px; height: 280px; } }

@media(max-width:800px) { .delivery-steps { flex-direction: column; gap: 32px; } }

@media(max-width:800px) { .step { text-align: left; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; } }

@media(max-width:800px) { .step-number { font-size: 32px; margin-bottom: 0; } }

@media(max-width:600px) { .testimonial-card { flex: 0 0 300px; padding: 24px; } }

@media(max-width:900px) { .contacts-grid { grid-template-columns: 1fr; gap: 48px; } }

@media(max-width:900px) { .contacts-map { height: 300px; } }

@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

@media(max-width:600px) { .footer-grid { grid-template-columns: 1fr; } }

@media(max-width:768px) {
  .orders-table thead { display: none; }
  .orders-table, .orders-table tbody, .orders-table tr, .orders-table td { display: block; width: 100%; }
  .orders-table tr { padding: 16px; border-bottom: 1px solid var(--gray-light); position: relative; }
  .orders-table td { padding: 4px 0; border: none; display: flex; align-items: center; gap: 8px; }
  .orders-table td::before { content: attr(data-label); font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; min-width: 90px; }
  .order-actions-cell::before { display: none; }
  .order-actions-cell { margin-top: 8px; justify-content: flex-end; }
}

@media(max-width:600px) {
  .hero-features { justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .order-actions { flex-direction: column; }
  .order-actions .btn { width: 100%; }
}

@media(max-width:600px) {
  .product-detail-image {
    height: 220px;
  }
  .product-detail-name {
    font-size: 20px;
  }
  .toast-container {
    left: 16px;
    right: 16px;
    top: 16px;
  }
  .toast {
    max-width: 100%;
  }
  .product-actions {
    flex-wrap: wrap;
  }
}