/* Pelders Tweewielers - Main Stylesheet */

:root {
  --primary-color: #1a5f7a;
  --secondary-color: #ff6b35;
  --accent-color: #57c5b6;
  --dark-color: #002b3d;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --warning-color: #ffc107;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--secondary-color);
}

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

/* Header */
.header {
  background: var(--dark-color);
  color: white;
  padding: 10px 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-contact {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.header-contact a {
  color: white;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo-text span {
  color: var(--secondary-color);
}

.search-bar {
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
}

.search-bar form {
  display: flex;
}

.search-bar input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 14px;
}

.search-bar button {
  padding: 12px 20px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-bar button:hover {
  background: #e55a2b;
}

/* Navigation */
.nav {
  background: var(--primary-color);
}

.nav-list {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 5px;
}

.nav-list li a {
  display: block;
  color: white;
  padding: 15px 25px;
  font-weight: 500;
  transition: background 0.3s;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

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

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

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

.btn-disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* Categories Section */
.categories {
  padding: 60px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--dark-color);
}

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

.category-card {
  background: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.category-card h3 {
  padding: 20px;
  text-align: center;
  color: var(--dark-color);
}

/* Products Section */
.products {
  padding: 60px 0;
  background: var(--light-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-brand {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-size: 16px;
  margin: 8px 0;
  color: var(--dark-color);
}

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

.product-price .old-price {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 10px;
}

/* USP Section */
.usp {
  padding: 60px 0;
  background: white;
}

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

.usp-item {
  text-align: center;
  padding: 30px;
}

.usp-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.usp-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.usp-item p {
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
  display: flex;
  list-style: none;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb ul li::after {
  content: '/';
  margin-left: 10px;
  color: var(--text-light);
}

.breadcrumb ul li:last-child::after {
  content: '';
}

.breadcrumb ul li a {
  color: var(--text-light);
}

.breadcrumb ul li:last-child {
  color: var(--primary-color);
}

/* Product Detail Page */
.product-detail {
  padding: 40px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-gallery img {
  width: 100%;
  border-radius: 10px;
}

.product-detail-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.product-detail-price {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 20px 0;
}

.product-detail-desc {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.product-specs {
  background: var(--light-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.product-specs h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.product-specs table {
  width: 100%;
}

.product-specs td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.product-specs td:first-child {
  font-weight: 600;
  width: 40%;
}

/* Blog */
.blog-article {
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.blog-article h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.blog-article .meta {
  color: var(--text-light);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.blog-article h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--dark-color);
}

.blog-article h3 {
  font-size: 20px;
  margin: 25px 0 10px;
  color: var(--dark-color);
}

.blog-article p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.blog-article ul, .blog-article ol {
  margin: 15px 0 15px 30px;
}

.blog-article li {
  margin-bottom: 10px;
}

/* FAQ */
.faq {
  background: var(--light-color);
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
}

.faq h2 {
  margin-bottom: 25px;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--text-light);
}

/* ========================================
   ONLINE CASINO SECTION STYLES
   ======================================== */

/* Casino-specific variables */
.casino-section {
  --casino-primary: #1a365d;
  --casino-accent: #c9a227;
  --casino-dark: #0a1628;
  --casino-success: #28a745;
  --casino-danger: #dc3545;
}

/* Age Notice Bar */
.age-notice {
  background: linear-gradient(135deg, #dc3545, #b02a37);
  color: white;
  text-align: center;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: white;
  color: #dc3545;
  border-radius: 50%;
  font-weight: bold;
  font-size: 11px;
  margin-right: 8px;
}

/* Casino Navigation */
.casino-nav {
  background: linear-gradient(135deg, #1a365d, #0a1628);
}

.casino-nav .nav-list li a {
  color: rgba(255,255,255,0.9);
  padding: 15px 22px;
  font-weight: 500;
  transition: all 0.3s;
}

.casino-nav .nav-list li a:hover,
.casino-nav .nav-list li a.active {
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
}

/* Casino Hero */
.casino-hero {
  background: linear-gradient(135deg, #1a365d 0%, #0a1628 100%);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.casino-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
}

.casino-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.trust-badge img {
  height: 18px;
}

.trust-badge.ksa {
  background: rgba(40, 167, 69, 0.2);
  border-color: rgba(40, 167, 69, 0.4);
}

/* Casino Comparison Table */
.casino-table {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin: 30px 0;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-top: 3px solid #c9a227;
}

.casino-table-header {
  display: grid;
  grid-template-columns: 45px 1fr 120px 80px 200px;
  gap: 10px;
  padding: 15px 20px;
  background: var(--light-color);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-row {
  display: grid;
  grid-template-columns: 45px 1fr 120px 80px 200px;
  gap: 10px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
}

.casino-row:last-child {
  border-bottom: none;
}

.casino-row:hover {
  background: #f8f9fa;
}

.casino-rank {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: var(--text-light);
}

.casino-rank.gold { color: #c9a227; }
.casino-rank.silver { color: #8a8a8a; }
.casino-rank.bronze { color: #cd7f32; }

.casino-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.casino-logo {
  width: 60px;
  height: 40px;
  object-fit: contain;
  border-radius: 5px;
}

.casino-details h3 {
  font-size: 16px;
  color: var(--dark-color);
  margin-bottom: 3px;
}

.casino-highlight {
  font-size: 12px;
  color: var(--text-light);
}

.casino-bonus {
  text-align: center;
}

.bonus-amount {
  font-size: 14px;
  font-weight: bold;
  color: var(--success-color);
  white-space: nowrap;
}

.bonus-type {
  font-size: 11px;
  color: var(--text-light);
}

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

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

.rating-score {
  font-weight: 600;
  font-size: 13px;
  color: var(--dark-color);
}

.btn-casino {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-casino:hover {
  background: linear-gradient(135deg, #e55a2b, #d14a1b);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.casino-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.btn-review {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 7px 10px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.casino-details h3 a {
  color: var(--dark-color);
  text-decoration: none;
}

.casino-details h3 a:hover {
  color: var(--primary-color);
}

/* Casino Review Header */
.review-header {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 25px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  align-items: center;
}

.review-logo {
  width: 140px;
  height: 90px;
  object-fit: contain;
}

.review-info h1 {
  font-size: 26px;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.review-meta {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.fact-item {
  text-align: center;
  padding: 10px;
  background: var(--light-color);
  border-radius: 8px;
}

.fact-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-color);
  margin-top: 3px;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pros, .cons {
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.pros {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: none;
  box-shadow: inset 0 0 0 2px #28a745, 0 4px 12px rgba(40, 167, 69, 0.15);
}

.cons {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: none;
  box-shadow: inset 0 0 0 2px #dc3545, 0 4px 12px rgba(220, 53, 69, 0.15);
}

.pros h3, .cons h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.pros ul, .cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros ul li, .cons ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
}

.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
}

/* Bonus Table */
.bonus-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}

.bonus-table table {
  width: 100%;
  border-collapse: collapse;
}

.bonus-table th {
  background: var(--light-color);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-light);
}

.bonus-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
}

.bonus-table tr:last-child td {
  border-bottom: none;
}

/* Responsible Gambling Banner */
.responsible-gambling {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-radius: 8px;
  padding: 20px 25px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: inset 0 0 0 2px #ffc107;
}

.responsible-gambling-icon {
  font-size: 28px;
}

.responsible-gambling-content p {
  margin: 0;
  font-size: 14px;
  color: #856404;
}

.responsible-gambling-content a {
  color: #664d03;
  font-weight: 600;
}

/* Casino Card (for grids) */
.casino-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding: 25px;
  border-top: 3px solid #c9a227;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.2);
  border-top-color: #d4af37;
}

.casino-card img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.casino-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.casino-card .bonus {
  color: var(--success-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 15px;
}

/* Casino Footer */
.casino-footer {
  background: linear-gradient(135deg, #1a365d, #0a1628);
}

.casino-footer .footer-col h4 {
  color: #c9a227;
}

/* Related Casinos */
.related-casinos {
  padding: 40px 0;
  background: var(--light-color);
}

.related-casinos h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

/* Payment Methods Icons */
.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.payment-icon {
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: 500;
}

/* Casino Article Content */
.casino-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.casino-content h2 {
  font-size: 24px;
  margin: 35px 0 15px;
  color: var(--dark-color);
}

.casino-content h3 {
  font-size: 20px;
  margin: 25px 0 12px;
  color: var(--dark-color);
}

.casino-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.casino-content ul {
  margin: 15px 0 15px 25px;
}

.casino-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    gap: 15px;
  }

  .search-bar {
    margin: 0;
    max-width: 100%;
  }

  .nav-list {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 28px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  /* Casino Responsive */
  .casino-table-header {
    display: none;
  }

  .casino-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }

  .casino-info {
    flex-direction: column;
    gap: 10px;
  }

  .casino-rank {
    font-size: 18px;
  }

  .review-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .casino-hero h1 {
    font-size: 26px;
  }
}
