:root {
  --primary-blue: #1d4e89;
  --primary-blue-dark: #153d6e;
  --primary-blue-light: #2a6eb5;
  --accent-orange: #e87621;
  --text-dark: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #eeeeee;
  --success: #28a745;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
  margin: 0;
  padding: 0;
}

main {
  margin-top: 0;
  padding-top: 0;
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-blue-dark);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

main .container {
  padding-top: 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-light);
}

.btn-orange {
  background-color: var(--accent-orange);
  color: white;
}

.btn-orange:hover {
  background-color: #d46a1a;
}

.header {
  background-color: var(--primary-blue);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  padding: 10px 0;
  margin: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 5px 0;
  margin: 0;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.logo a span {
  color: var(--accent-orange);
}

.search-container {
  flex: 1;
  max-width: 600px;
}

.search-form {
  display: flex;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.search-form input {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  outline: none;
}

.search-form input::placeholder {
  color: var(--text-muted);
}

.search-form button {
  padding: 12px 24px;
  background-color: var(--accent-orange);
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.search-form button:hover {
  background-color: #d46a1a;
}

.header-nav {
  background-color: var(--primary-blue);
  padding: 0;
  margin: 0;
  border-top: none;
}

.hero-section {
  margin: 0;
  padding: 0;
  border-top: none;
}

.header-nav .container {
  padding: 0 20px;
}

.nav-container {
  display: flex;
  align-items: center;
}

.department-nav {
  position: relative;
  background-color: var(--primary-blue-dark);
}

.department-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: white;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

.department-btn:hover {
  background-color: var(--primary-blue-light);
}

.department-btn svg {
  width: 16px;
  height: 16px;
}

.main-nav {
  display: flex;
  gap: 5px;
  margin-left: 10px;
}

.main-nav a {
  padding: 12px 16px;
  color: white;
  font-weight: 500;
  transition: background 0.2s;
}

.main-nav a:hover {
  background-color: rgba(255,255,255,0.1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
  min-width: 800px;
  padding: 15px;
}

.department-nav:hover .dropdown-menu {
  display: block;
}

.dropdown-grid {
  display: flex !important;
  flex-direction: row !important;
}

.department-column {
  width: 18%;
  padding: 8px 12px;
  border-right: 1px solid #ddd;
}

.department-column:last-child {
  border-right: none;
}

.department-main {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #1d4e89;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 2px solid #1d4e89;
  text-decoration: none;
}

.department-main:hover {
  color: #153d6e;
}

.department-sub {
  display: block;
  font-size: 13px;
  color: #333;
  padding: 2px 0;
  text-decoration: none;
}

.department-sub:hover {
  color: #1d4e89;
}
  text-decoration: none;
}

.department-sub:hover {
  color: #1d4e89;
}

.dropdown-column h3 {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-blue);
}

.dropdown-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-column a {
  color: var(--text-dark);
  font-size: 13px;
}

.dropdown-column a:hover {
  color: var(--primary-blue);
}

.hero-carousel {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: white;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-nav button.active {
  background: white;
}

.hero-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 5px 10px;
  background: transparent;
}

.hero-thumbnails a {
  display: block;
  width: 80px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero-thumbnails a.active {
  border-color: var(--primary-blue);
}

.hero-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 10px 0;
}

.hero-banner-section {
  padding: 0;
  margin: 0;
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  background: #f5f5f5;
}

.banner-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.hero-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-banner-content h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-banner-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: bold;
  transition: background 0.3s;
}

.banner-btn:hover {
  background: #163d6e;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.section-title span {
  color: var(--primary-blue);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 120px;
  background: #f8f9fa;
}

.product-card-image img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.product-card-content {
  padding: 15px;
}

.product-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.product-card-merchant {
  font-size: 12px;
  color: var(--text-light);
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffc107;
  font-size: 12px;
}

.star.empty {
  color: var(--border-color);
}

.rating-count {
  font-size: 11px;
  color: var(--text-muted);
}

.popular-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 30px 0;
}

.brands-section {
  background: white;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.brand-item:hover {
  background: var(--border-light);
  transform: scale(1.05);
}

.brand-item img {
  max-width: 80px;
  max-height: 40px;
}

.brand-placeholder {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-light);
}

.featured-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.featured-category {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-category-header {
  padding: 15px 20px;
  background: var(--primary-blue);
  color: white;
}

.featured-category-header h3 {
  font-size: 18px;
  font-weight: bold;
}

.featured-category-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.featured-category-products .product-card {
  border-radius: 0;
  border: none;
  background: white;
}

.featured-searches {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-lg);
}

.featured-searches h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-tags a {
  display: inline-block;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-dark);
  transition: all 0.2s;
}

.search-tags a:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.merchant-section {
  background: linear-gradient(135deg, #2a6eb5 0%, #1d4e89 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin: 30px 0;
  color: white;
}

.merchant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.merchant-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.merchant-item p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

.merchant-item a {
  color: white;
  text-decoration: underline;
}

.footer {
  background: #222;
  color: white;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  color: #bbb;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 12px;
  color: #888;
}

.search-page {
  background: var(--bg-light);
  min-height: 100vh;
}

.search-page-header {
  background: var(--primary-blue);
  padding: 20px 0;
  position: relative;
  z-index: 50;
}

.search-page .header {
  position: relative;
  z-index: 100;
}

.search-page .dropdown-menu {
  z-index: 200;
}

.search-page-header .search-form {
  max-width: 800px;
  margin: 0 auto;
}

.search-page-content {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.filters-sidebar {
  width: 250px;
  flex-shrink: 0;
}

.filter-section {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.filter-section h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.filter-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-blue);
}

.filter-option label {
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
}

.price-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-inputs input {
  width: 80px;
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.price-inputs span {
  color: var(--text-muted);
}

.results-section {
  flex: 1;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.results-count {
  font-size: 14px;
  color: var(--text-light);
}

.results-count strong {
  color: var(--text-dark);
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-options label {
  font-size: 13px;
  color: var(--text-light);
}

.sort-options select {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--primary-blue);
  color: white;
  border-radius: 20px;
  font-size: 12px;
}

.filter-tag button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  line-height: 1;
}

.filter-tag button:hover {
  color: var(--accent-orange);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: var(--radius-md);
}

.no-results h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.no-results p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-page {
  background: var(--bg-light);
  padding: 30px 0;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  width: 100%;
  aspect-ratio: 1;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
}

.thumbnail.active {
  border-color: var(--primary-blue);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px 0;
}

.product-info h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-light);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-rating .stars {
  font-size: 16px;
}

.product-rating .rating-text {
  font-size: 14px;
  color: var(--text-light);
}

.product-price-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}

.product-price {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.product-price-note {
  font-size: 12px;
  color: var(--text-muted);
}

.merchant-offers {
  margin-bottom: 25px;
}

.merchant-offers h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.offer-item:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.offer-merchant {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-merchant-name {
  font-weight: bold;
  color: var(--text-dark);
}

.offer-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-blue);
}

.offer-btn {
  padding: 8px 20px;
  background: var(--accent-orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.offer-btn:hover {
  background: #d46a1a;
}

.offer-btn.argos-btn {
  background: #00539f;
}

.offer-btn.argos-btn:hover {
  background: #003d70;
}

.argos-alternatives {
  margin-top: 10px;
  font-size: 14px;
}

.argos-alternatives a {
  color: #00539f;
  text-decoration: none;
}

.argos-alternatives a:hover {
  text-decoration: underline;
}

.product-description {
  margin-bottom: 25px;
}

.product-description h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-description p {
  color: var(--text-light);
  line-height: 1.6;
}

.product-specs {
  margin-bottom: 25px;
}

.product-specs h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.spec-label {
  color: var(--text-light);
  font-size: 13px;
}

.spec-value {
  font-weight: 500;
  font-size: 13px;
}

.related-products {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
}

.related-products h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.related-products .product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  padding: 15px 0;
  font-size: 12px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-blue);
}

.breadcrumb span {
  color: var(--text-muted);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .featured-categories {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .search-page-content {
    flex-direction: column;
  }
  
  .filters-sidebar {
    width: 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .filter-section {
    min-width: 200px;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
  }
  
  .related-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    gap: 15px;
  }
  
  .logo a {
    font-size: 24px;
  }
  
  .search-container {
    width: 100%;
  }
  
  .department-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-carousel {
    height: 250px;
  }
  
  .hero-thumbnails {
    display: none;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .merchant-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .results-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .active-filters {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-category-products {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .related-products .product-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeIn 0.3s ease-out forwards;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.pagination button {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
}

.pagination button:hover {
  background: #1d4e89;
  color: #fff;
  border-color: #1d4e89;
}

.pagination .current-page {
  padding: 8px 14px;
  background: #1d4e89;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
}

.pagination span {
  color: #999;
  padding: 0 5px;
}

.hidden {
  display: none !important;
}