.content .container {
	padding: 10px 40px !important;
} 


/* ============================================
   SEARCH RESULTS PAGE - Enhanced Design
   ============================================ */

/* Search Page Header */
.search-page-header {
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
  }
  
  .search-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .search-page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  
  .search-page-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    animation: searchIconRotate 20s linear infinite;
  }
  
  @keyframes searchIconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .search-page-icon i {
    font-size: 32px;
    color: #fff;
  }
  
  .search-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
  }
  
  .search-page-query {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    position: relative;
  }
  
  .search-query-text {
    color: var(--primary-bg, #1a1a2e);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 4px 12px;
    border-radius: 20px;
  }
  
  /* Search Form Panel */
  .search-form-panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
  }
  
  .search-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
  }
  
  .search-form-header i {
    font-size: 18px;
    opacity: 0.9;
  }
  
  .search-form-body {
    padding: 24px;
  }
  
  .search-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .search-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
  }
  
  .search-form-label i {
    color: #64748b;
    font-size: 14px;
  }
  
  /* Search Input Wrapper */
  .search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 6px 0 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    height: 48px;
    transition: all 0.25s ease;
  }
  
  .search-input-wrapper:hover {
    border-color: #cbd5e1;
  }
  
  .search-input-wrapper:focus-within {
    border-color: var(--primary-bg, #667eea);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: #fff;
  }
  
  .search-input-icon {
    color: #94a3b8;
    font-size: 16px;
    transition: color 0.2s ease;
  }
  
  .search-input-wrapper:focus-within .search-input-icon {
    color: var(--primary-bg, #667eea);
  }
  
  .search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
  }
  
  .search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
  }
  
  .search-input-clear {
    width: 32px;
    height: 32px;
    border: none;
    background: #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .search-input-clear:hover {
    background: #fee2e2;
    color: #dc2626;
  }
  
  /* Search Select Wrapper */
  .search-select-wrapper {
    position: relative;
  }
  
  .search-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    appearance: none;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .search-select:hover {
    border-color: #cbd5e1;
  }
  
  .search-select:focus {
    outline: none;
    border-color: var(--primary-bg, #667eea);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: #fff;
  }
  
  .search-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 12px;
    pointer-events: none;
  }
  
  /* Search Form Check */
  .search-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }
  
  .search-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    cursor: pointer;
    appearance: none;
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
  }
  
  .search-checkbox:checked {
    background: var(--primary-bg, #667eea);
    border-color: var(--primary-bg, #667eea);
  }
  
  .search-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
  }
  
  .search-check-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .search-check-label:hover {
    color: #374151;
  }
  
  .search-check-label i {
    font-size: 12px;
  }
  
  /* Search Form Actions */
  .search-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
  }
  
  .btn-search-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }
  
  .btn-search-submit:active {
    transform: translateY(0);
  }
  
  .btn-search-submit i {
    font-size: 14px;
  }
  
  /* Results Stats Bar */
  .search-results-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
  }
  
  .stats-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
  }
  
  .stats-count i {
    color: var(--primary-bg, #667eea);
    font-size: 16px;
  }
  
  .btn-compare {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    color: #374151;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  
  .btn-compare:hover {
    border-color: var(--primary-bg, #667eea);
    color: var(--primary-bg, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  }
  
  /* Search Controls */
  .search-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
  }
  
  .search-controls-left,
  .search-controls-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .view-toggle {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 10px;
  }
  
  .view-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .view-btn:hover {
    color: #374151;
    background: #e2e8f0;
  }
  
  .view-btn.active {
    background: var(--primary-bg, #667eea);
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  }
  
  .control-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .control-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
  }
  
  .control-label i {
    font-size: 12px;
  }
  
  .control-select-wrapper {
    position: relative;
  }
  
  .control-select {
    padding: 10px 36px 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
  }
  
  .control-select:hover {
    border-color: #cbd5e1;
  }
  
  .control-select:focus {
    outline: none;
    border-color: var(--primary-bg, #667eea);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }
  
  .control-select-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 10px;
    pointer-events: none;
  }
  
  /* Product Grid */
  .search-product-grid {
    margin-bottom: 30px;
  }
  
  /* Pagination */
  .search-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
  }
  
  .pagination-wrapper .pagination {
    margin: 0;
    gap: 6px;
  }
  
  .pagination-wrapper .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  
  .pagination-wrapper .page-link:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
  }
  
  .pagination-wrapper .page-item.active .page-link {
    background: var(--primary-bg, #667eea);
    border-color: var(--primary-bg, #667eea);
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  }
  
  .pagination-wrapper .page-item.disabled .page-link {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
  }
  
  .pagination-info {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
  }
  
  /* No Results State */
  .search-no-results {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    margin: 30px 0;
  }
  
  .no-results-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .no-results-icon i {
    font-size: 48px;
    color: #ef4444;
  }
  
  .no-results-x {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
  }
  
  .no-results-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
  }
  
  .no-results-message {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .no-results-suggestions {
    text-align: left;
    max-width: 350px;
    margin: 0 auto 30px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  
  .no-results-suggestions h4 {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .no-results-suggestions h4::before {
    content: '💡';
    font-size: 16px;
  }
  
  .no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .no-results-suggestions li {
    font-size: 13px;
    color: #64748b;
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .no-results-suggestions li:last-child {
    border-bottom: none;
  }
  
  .no-results-suggestions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-bg, #667eea);
    font-weight: 600;
  }
  
  .btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: #fff;
  }
  
  /* Responsive Search Page */
  @media (max-width: 768px) {
    .search-page-header {
      padding: 30px 16px 24px;
      margin-bottom: 20px;
    }
    
    .search-page-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 16px;
    }
    
    .search-page-icon i {
      font-size: 24px;
    }
    
    .search-page-title {
      font-size: 22px;
    }
    
    .search-page-query {
      font-size: 14px;
    }
    
    .search-form-body {
      padding: 16px;
    }
    
    .search-form-actions {
      margin-top: 16px;
      padding-top: 16px;
    }
    
    .btn-search-submit {
      width: 100%;
      justify-content: center;
    }
    
    .search-results-stats {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
    
    .search-controls {
      flex-direction: column;
      align-items: stretch;
      padding: 12px 16px;
    }
    
    .search-controls-left,
    .search-controls-right {
      justify-content: space-between;
    }
    
    .control-group {
      flex: 1;
    }
    
    .control-select {
      width: 100%;
      min-width: auto;
    }
    
    .search-pagination {
      flex-direction: column;
      text-align: center;
      padding: 16px;
      gap: 12px;
    }
    
    .pagination-wrapper {
      order: 1;
    }
    
    .pagination-info {
      order: 2;
    }
    
    .search-no-results {
      padding: 40px 20px;
    }
    
    .no-results-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 24px;
    }
    
    .no-results-icon i {
      font-size: 40px;
    }
    
    .no-results-title {
      font-size: 20px;
    }
    
    .no-results-message {
      font-size: 14px;
    }
  }
  