/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Products Main Section */
.products-main {
  padding: 60px 0;
  background: #f8f9fa;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.products-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #b34126;
  background: transparent;
  color: #b34126;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: #b34126;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(179, 65, 38, 0.3);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  position: relative;
  overflow: hidden;
  display: block;
  background: transparent;
}

.product-image:not(.has-image) {
  background: linear-gradient(135deg, #b34126 0%, #b34126 100%);
}

.product-image .product-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 10 !important;
  display: block !important;
  background: none !important;
}

.product-image .product-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.product-image .product-placeholder .product-icon {
  font-size: 3rem;
  opacity: 0.7;
}

.playground-bg {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}

.outdoor-bg {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.indoor-bg {
  background: linear-gradient(135deg, #b34126 0%, #b34126 100%);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-content {
  padding: 30px;
}

.product-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.product-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  margin-bottom: 25px;
}

.product-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.1rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #b34126;
  margin-bottom: 20px;
}

.product-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #b34126 0%, #b34126 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 65, 38, 0.3);
}

/* Pagination Container */
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  gap: 1.5rem;
}

.pagination-info {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-btn {
  background: linear-gradient(135deg, #b34126 0%, #c13415 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(179, 74, 35, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(167, 69, 34, 0.4);
}

.pagination-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 1rem;
}

.page-number {
  background: white;
  color: #333;
  border: 2px solid #e0e0e0;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}

.page-number:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-1px);
}

.page-number.active {
  background: linear-gradient(135deg, #b34126 0%, #c03e20 100%);
  color: white;
  border-color: #ff6b35;
}

.page-number.active:hover {
  color: white;
  transform: translateY(-1px);
}

.ellipsis {
  color: #666;
  font-weight: 600;
  padding: 0 0.5rem;
}

/* Responsive pagination */
@media (max-width: 768px) {
  .pagination-controls {
    gap: 0.25rem;
  }

  .pagination-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .pagination-numbers {
    margin: 0 0.5rem;
    gap: 0.1rem;
  }

  .page-number {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    min-width: 35px;
  }

  .pagination-info {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pagination-container {
    margin-top: 2rem;
    gap: 1rem;
  }

  .pagination-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .pagination-numbers {
    order: -1;
    margin: 0;
  }
}

/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  background: white;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-item h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #b34126 0%, #b34126 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-primary {
  background: white;
  color: #b34126;
}

.btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #b34126;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-header h1 {
    font-size: 2.2rem;
  }

  .products-header p {
    font-size: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .why-choose h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .products-main {
    padding: 40px 0;
  }

  .products-header {
    margin-bottom: 40px;
  }

  .product-content {
    padding: 20px;
  }

  .product-image {
    height: 200px;
  }

  .why-choose,
  .cta-section {
    padding: 60px 0;
  }

  .benefit-item {
    padding: 20px 15px;
  }
}

/* Animation for filtered products */
.product-card.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all 0.3s ease;
}

.product-card.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: all 0.3s ease;
}

/* Quote Modal Styles */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quote-modal.show {
  opacity: 1;
  visibility: visible;
}

.quote-modal-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.quote-modal.show .quote-modal-content {
  transform: scale(1);
}

.quote-modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #b34126 0%, #b34126 100%);
  color: white;
  border-radius: 15px 15px 0 0;
}

.quote-modal-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.close-modal {
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.close-modal:hover {
  opacity: 1;
}

.quote-modal-body {
  padding: 30px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b34126;
  box-shadow: 0 0 0 3px rgba(179, 65, 38, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}

.btn-cancel,
.btn-submit {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel {
  background: #95a5a6;
  color: white;
}

.btn-cancel:hover {
  background: #7f8c8d;
}

.btn-submit {
  background: linear-gradient(135deg, #b34126 0%, #b34126 100%);
  color: white;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 65, 38, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success Notification */
.success-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: bold;
}

.success-notification h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.4rem;
}

.success-notification p {
  margin: 0;
  color: #666;
  max-width: 300px;
  line-height: 1.5;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
  .quote-modal-content {
    width: 95%;
    margin: 20px;
  }

  .quote-modal-header {
    padding: 20px;
  }

  .quote-modal-header h3 {
    font-size: 1.2rem;
  }

  .quote-modal-body {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-cancel,
  .btn-submit {
    width: 100%;
  }

  .success-notification {
    width: 90%;
    padding: 30px 20px;
  }
}
/* Modern Product Card Styles */
.product-card-modern {
  border-radius: 0.5rem;
  border: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-modern:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-10px);
}

.product-image-modern {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.product-img-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-modern:hover .product-img-modern {
  transform: scale(1.1);
}

.product-placeholder-modern {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b34126 0%, #b34126 100%);
}

.product-icon-modern {
  font-size: 3rem;
  opacity: 0.7;
  color: white;
}

.product-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  opacity: 0.2;
  transition: opacity 0.5s ease;
}

.product-card-modern:hover .product-gradient-overlay {
  opacity: 0.3;
}

.product-badge-modern {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #b34126, #b34126);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-content-modern {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-description-modern {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.product-features-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-bullet {
  width: 0.375rem;
  height: 0.375rem;
  background: #b34126;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.4;
}

.product-price-modern {
  font-size: 1.25rem;
  font-weight: 700;
  color: #b34126;
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-button-container {
  margin-top: auto;
}

.product-btn-modern {
  width: 100%;
  background: linear-gradient(135deg, #b34126, #b34126);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.product-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.product-btn-modern:active {
  transform: translateY(0);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.product-btn-modern:hover .btn-arrow {
  transform: translateX(4px);
}

.product-btn-modern.product-btn-delete {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.product-btn-modern.product-btn-delete:hover {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Responsive adjustments for modern cards */
@media (max-width: 768px) {
  .product-features-modern {
    grid-template-columns: 1fr;
  }

  .product-image-modern {
    height: 12rem;
  }

  .product-content-modern {
    padding: 1rem;
  }

  .product-title-modern {
    font-size: 1.25rem;
  }
}

/* Cache bust: 1758469925 */
