/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/shop/shop.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
/* Shop Page Specific Styles */

/* Shop Header */
.shop-header {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(92, 92, 92, 0.3) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  margin-top: 70px;
}

.shop-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(92, 92, 92, 0.4) 100%);
  opacity: 0.1;
  z-index: -1;
}

.shop-title {
  font-size: 4rem;
  color: var(--accent-2);
  text-shadow: 0 0 20px var(--accent-2);
  margin-bottom: 1rem;
  font-family: var(--font-header);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.shop-subtitle {
  font-size: 1.3rem;
  font-style: italic;
  opacity: 0.9;
  color: var(--secondary);
  font-family: var(--font-alt);
}

/* Shop Layout */
.shop-content {
  padding: 60px 0;
  background: var(--primary);
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 3rem;
  gap: 3rem;
  align-items: start;
}

/* Sidebar Styles */
.shop-sidebar {
  background: rgba(92, 92, 92, 0.1);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 203, 92, 0.2);
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.filter-section {
  margin-bottom: 2.5rem;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(245, 203, 92, 0.3);
  padding-bottom: 0.5rem;
  font-family: var(--font-header);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.filter-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-alt);
  font-size: 0.95rem;
  color: var(--secondary);
  transition: color 0.3s ease;
  position: relative;
  padding-left: 30px;
}

.filter-item:hover {
  color: var(--accent-1);
}

.filter-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 2px solid var(--accent-2);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.filter-item:hover .checkmark {
  border-color: var(--accent-1);
  box-shadow: 0 0 5px rgba(215, 38, 61, 0.3);
}

.filter-item input:checked ~ .checkmark {
  background-color: var(--accent-1);
  border-color: var(--accent-1);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--secondary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-item input:checked ~ .checkmark:after {
  display: block;
}

/* Price Range Slider */
.price-range {
  position: relative;
  margin: 1rem 0;
}

.price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(245, 203, 92, 0.3);
  outline: none;
  margin: 10px 0;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-1);
  cursor: pointer;
  border: 2px solid var(--accent-2);
  box-shadow: 0 0 5px rgba(215, 38, 61, 0.3);
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-1);
  cursor: pointer;
  border: 2px solid var(--accent-2);
  box-shadow: 0 0 5px rgba(215, 38, 61, 0.3);
}

.price-display {
  text-align: center;
  font-family: var(--font-alt);
  font-weight: 600;
  color: var(--accent-2);
  margin-top: 0.5rem;
}

/* Shop Controls */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(92, 92, 92, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(245, 203, 92, 0.2);
}

.sort-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-section label {
  font-family: var(--font-alt);
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.sort-dropdown {
  background: rgba(17, 17, 17, 0.8);
  color: var(--secondary);
  border: 2px solid var(--accent-2);
  padding: 8px 15px;
  border-radius: 5px;
  font-family: var(--font-alt);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-dropdown:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 10px rgba(215, 38, 61, 0.3);
}

.results-count,
.products-count {
  font-family: var(--font-alt);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Connection Status */
.connection-status {
  margin-top: 20px;
  text-align: center;
}

.api-connected {
  background: rgba(76, 175, 80, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  display: inline-block;
}

.api-connected small {
  color: #4caf50;
  font-weight: 500;
  font-family: var(--font-alt);
}

.api-disconnected {
  background: rgba(245, 203, 92, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(245, 203, 92, 0.3);
  display: inline-block;
}

.api-disconnected small {
  color: #f5cb5c;
  font-style: italic;
  font-family: var(--font-alt);
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
  font-style: italic;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 0;
}

.empty-state h3 {
  color: var(--accent-2);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.empty-state p {
  color: var(--muted);
  font-style: italic;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  background: linear-gradient(45deg, var(--accent-1), #ff4757);
  color: var(--secondary);
  border: 2px solid var(--accent-2);
  padding: 15px 30px;
  font-family: var(--font-header);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(215, 38, 61, 0.3);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.tommy-gun-loader {
  display: inline-block;
  margin-right: 10px;
  animation: spin 1s linear infinite;
}

.load-more-btn.loading .tommy-gun-loader {
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
  
  .shop-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .shop-sidebar {
    position: static;
    order: 2;
    margin-top: 2rem;
  }
  
  .shop-main {
    order: 1;
  }
  
  .shop-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .sort-section {
    justify-content: space-between;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .shop-title {
    font-size: 2.5rem;
  }
  
  .shop-header {
    padding: 100px 0 40px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .shop-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .shop-subtitle {
    font-size: 1rem;
  }
  
  .shop-header {
    padding: 80px 0 30px;
  }
  
  .shop-sidebar {
    padding: 1.5rem;
  }
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem auto;
  padding: 2rem 0;
}

.pagination-btn {
  background: transparent;
  color: var(--accent-2);
  border: 2px solid var(--accent-2);
  padding: 10px 20px;
  font-family: var(--font-header);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--accent-2);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 203, 92, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(245, 203, 92, 0.3);
  color: rgba(245, 203, 92, 0.5);
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-number {
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--muted);
  border: 2px solid rgba(245, 203, 92, 0.3);
  font-family: var(--font-alt);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-number:hover {
  background: rgba(245, 203, 92, 0.1);
  color: var(--accent-2);
  border-color: var(--accent-2);
  transform: scale(1.1);
}

.pagination-number.active {
  background: var(--accent-1);
  color: var(--secondary);
  border-color: var(--accent-1);
  box-shadow: 0 0 15px rgba(215, 38, 61, 0.5);
}

/* Responsive pagination */
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .pagination-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .pagination-numbers {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  .pagination-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pagination-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .pagination-number {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  
  .pagination-btn.prev {
    order: 1;
  }
  
  .pagination-btn.next {
    order: 2;
  }
}

/* Loading States */
.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
  min-height: 400px;
}

.loading-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tommy-gun-loader {
  font-size: 3rem;
  animation: bounce 1s ease-in-out infinite alternate;
}

.loading-state p {
  color: var(--accent-2);
  font-family: var(--font-alt);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}

.empty-state h3 {
  color: var(--accent-2);
  margin-bottom: 15px;
  font-family: var(--font-header);
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

/* Mobile Loading States */
@media (max-width: 768px) {
  .loading-state {
    padding: 60px 15px;
    min-height: 300px;
  }

  .tommy-gun-loader {
    font-size: 2.5rem;
  }

  .loading-state p {
    font-size: 1rem;
  }
}

/* Mobile Filters */
.mobile-filters-container {
  margin-bottom: 20px;
}

.filters-toggle-btn {
  background: rgba(92, 92, 92, 0.1);
  border: 2px solid var(--accent-2);
  color: var(--secondary);
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters-toggle-btn:hover {
  background: rgba(245, 203, 92, 0.1);
  border-color: var(--accent-1);
}

.filter-icon {
  margin-right: 8px;
  font-size: 1.1rem;
}

.filter-count {
  color: var(--accent-1);
  font-weight: 600;
  margin-left: 8px;
}

.filter-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.filter-arrow.open {
  transform: rotate(180deg);
}

.mobile-filters-dropdown {
  background: rgba(92, 92, 92, 0.05);
  border: 2px solid var(--accent-2);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.mobile-filters-dropdown.active {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
}

.mobile-filters-dropdown .filter-section {
  margin-bottom: 20px;
}

.mobile-filters-dropdown .filter-section:last-child {
  margin-bottom: 0;
}

.mobile-filters-dropdown .filter-title {
  font-size: 1rem;
  color: var(--accent-2);
  margin-bottom: 12px;
  font-family: var(--font-header);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Desktop/Mobile visibility helpers */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }
  
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
  .shop-main {
    width: 100%;
  }
  
  /* Adjust shop controls on mobile */
  .shop-controls {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .sort-section {
    order: 1;
  }
  
  .results-count {
    order: 2;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mobile-filters-dropdown {
    border-radius: 0 0 6px 6px;
  }
  
  .mobile-filters-dropdown.active {
    padding: 15px;
  }
  
  .filters-toggle-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .filter-icon {
    font-size: 1rem;
  }
}

