/* ===================================================== */
/* ΒΑΣΙΚΑ RESET & GLOBAL ΡΥΘΜΙΣΕΙΣ (DEFAULT: LIGHT MODE) */
/* ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Default κατάσταση (Προεπιλογή το Light Mode) */
body {
  background-color: #ffffff;
  color: #111111; /* Σκούρο γκρίζο/μαύρο κείμενο για να διαβάζεται στο λευκό */
  font-family: Arial, sans-serif;
  padding-top: 80px; /* Μεταφέρθηκε εδώ για να είναι μαζευτά */
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.main-content {
  padding-bottom: 90px !important;
  
}

/* ===================================================== */
/* HEADER + NAVIGATION */
/* ===================================================== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #961010 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 30px;
}

.nav-menu.center-items {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.actions {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-left: auto !important; /* Αυτό είναι το κλειδί: σπρώχνει το .actions τέρμα δεξιά */
}

/* Στυλ για το link του καλαθιού μέσα στο header */
.actions .cart-link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 0.95rem !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.actions .cart-link:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
}

.logo {
  color: #ffffff !important;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-menu li a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ffffff !important;
  transition: width 0.3s;
}

.nav-menu li a:hover {
  color: #f2f2f2 !important;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu.open { 
    display: flex !important; 
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #961010;
  padding: 0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 1000;
  list-style: none;
  top: 100%;
  left: 0;
  border: none;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 0; 
  color: #222;
  transition: background 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.05); 
  color: #b31d1d;
  font-weight: 600;
  border-radius: 6px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a img {
  width: 20px;
  height: auto;
}

/* ===================================================== */
/* MEGA MENU - ΣΥΛΛΟΓΟΣ                                  */
/* ===================================================== */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  background-color: #961010;
  padding: 15px;
  z-index: 9998;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  border-top: 3px solid rgba(255,255,255,0.3);
}

.mega-dropdown:hover .mega-menu {
  display: block;
}

.mega-top-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.mega-top-row a {
  flex: 1;
  text-align: center;
  background: rgba(0,0,0,0.2);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
  border-bottom: none !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mega-top-row a:hover {
  background: rgba(0,0,0,0.35);
}

.mega-years-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 20px;
}

.mega-years-grid a {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 4px;
  transition: background 0.15s ease;
  border-bottom: none !important;
  white-space: nowrap;
}

.mega-years-grid a:hover {
  background: rgba(0,0,0,0.2);
  color: #ffffff !important;
}

.mega-years-label {
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  grid-column: 1 / -1; 
}

.mega-years-label span {
  color: #D4AF37;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  white-space: nowrap;
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */

/* Το block των χορηγών με απαλό fade (σβήσιμο) προς το κόκκινο */
.global-sponsors-fade-block {
  background: linear-gradient(to bottom, #ffffff 0%, #961010 100%); /* Fade από λευκό σε κόκκινο */
  padding: 50px 20px 20px 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-sponsors-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Μία ενιαία σειρά, κεντραρισμένη */
.footer-sponsors-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Μικρά, όμορφα και διακριτικά εικονίδια */
.footer-sponsor-item {
  width: 100px; /* Σταθερό μικρό μέγεθος */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer-sponsor-item:hover {
  transform: scale(1.08); /* Διακριτικό zoom στο hover */
}

.footer-sponsor-item a {
  display: block;
  width: 100%;
}

.footer-sponsor-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  /* Δημιουργεί ένα κομψό εφέ για να δένουν τα λογότυπα στο background */
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15)); 
}

/* Το παλιό καλό κόκκινο footer, πλέον σωστά relative */
.site-footer {
  position: relative !important; /* ΑΛΛΑΓΗ ΑΠΟ fixed ΣΕ relative */
  left: auto;
  bottom: auto;
  width: 100%;
  background-color: #961010 !important; /* Το επίσημο κόκκινο */
  color: #ffffff;
  text-align: center;
  padding: 15px 10px 30px 10px;
  font-size: 0.9rem;
  border-top: 1px solid #b31d1d;
  z-index: 999;
  font-weight: bold;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
}

.site-footer a:hover {
  color: #f2f2f2;
  text-decoration: underline;
}

/* Στυλ για την αναφορά δημιουργού */
.footer-credit {
  margin-top: 15px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5); /* Πολύ απαλό χρώμα για να είναι διακριτικό */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive προσαρμογή για μικρότερες οθόνες κινητών */
@media (max-width: 768px) {
  .global-sponsors-fade-block {
    padding: 30px 15px 15px 15px;
  }
  .footer-sponsors-row {
    gap: 12px;
  }
  .footer-sponsor-item {
    width: 75px; /* Ακόμα πιο μικρά στα κινητά για να χωράνε όμορφα */
  }
}

/* ===================================================== */
/* ΑΡΧΙΚΗ ΣΕΛΙΔΑ */
/* ===================================================== */
.intro-section {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/kerkida.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.about-summary {
  max-width: 600px;
  margin: 30px auto;
  padding: 15px 20px;
  font-size: 1rem;
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.50);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
}

.about-summary strong { color: #961010; }

/* ===================================================== */
/* ΤΙΤΛΟΣ BADGE */
/* ===================================================== */
.section-title-badge {
  display: inline-block;
  margin: 0 auto 35px auto;
  padding: 10px 30px;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-align: center;
  background: rgba(221, 44, 44, 0.1);
  color: #961010 !important;
  border: 2px solid #961010;
  box-shadow: 0 0 20px rgba(221, 44, 44, 0.65), inset 0 0 12px rgba(221, 44, 44, 0.5);
  text-shadow: 0 0 8px rgba(221, 44, 44, 0.8) !important;
}

.recent-articles-section {
  text-align: center;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid !important;
  gap: 30px;
  align-items: start;
}

/* ===================================================== */
/* ΕΝΟΠΟΙΗΜΕΝΕΣ ΚΑΡΤΕΣ - ΠΛΑΙΣΙΟ (DEFAULT LIGHT) */
/* ===================================================== */
.articles-grid { display: grid; width: 100%; }
.news-grid, .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.post-card {
  background: #ffffff !important;
  border: 2px solid #961010 !important;
  border-radius: 16px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px; 
  height: auto;      
  transition: all 0.3s ease !important;
  box-shadow: 0 0 0 1px rgba(221, 44, 44, 0.3), 0 5px 20px rgba(221, 44, 44, 0.2), 0 10px 40px rgba(221, 44, 44, 0.1) !important;
}

.post-card:hover {
  transform: translateY(-5px);
  background: #ffffff !important;
  border-color: #961010 !important;
  box-shadow: 0 0 0 2px rgba(221, 44, 44, 0.5), 0 8px 25px rgba(221, 44, 44, 0.3), 0 15px 50px rgba(221, 44, 44, 0.15) !important;
}

.article-image img, .article-image .wp-post-image {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease;
}

.news-thumb {
  width: 100%; height: 200px; flex-shrink: 0; overflow: hidden;
}

.news-thumb img, .article-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.article-image { width: 100%; height: 180px; overflow: hidden; }
.article-thumb { height: 220px; flex-shrink: 0; }

.article-content, .news-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-title {
  margin: 0 0 15px 0;
  min-height: 55px; 
  max-height: 80px; 
  overflow: hidden;
  font-size: 1.1rem;
  line-height: 1.3;
}

.article-content h3 a, .news-title a {
  color: #111 !important;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.article-content h3 a:hover, .news-title a:hover {
  color: #961010 !important;
}

.article-date, .news-meta {
  font-size: 0.8rem; color: #961010; font-weight: bold; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.5px; text-align: left;
}

.article-excerpt, .news-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2; 
}

.read-more, .news-more-btn {
  color: #961010 !important;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.read-more:hover, .news-more-btn:hover {
  text-decoration: underline;
}


/* ===================================================== */
/* ΣΕΛΙΔΑ ΑΡΘΡΟΥ (Single) */
/* ===================================================== */
body.single-page {
    background-color: #ffffff !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.single-page .main-content {
    flex: 1;
    padding-top: 100px;
}

.full-article {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;
    color: #b31d1d !important; 
}

.article-meta { color: #666; font-size: 0.9rem; margin-bottom: 30px; }

.article-banner {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.article-banner img { width: 100%; height: auto; display: block; }

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222 !important; 
}

.article-body p { margin-bottom: 20px; }

.back-to-home {
    margin-top: 40px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    padding-bottom: 40px;
}

.back-btn {
    color: #b31d1d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.back-btn:hover { color: #000; }

/* ===================================================== */
/* ΣΕΛΙΔΑ ΕΙΔΗΣΕΩΝ & ΚΑΤΗΓΟΡΙΩΝ (News Wrapper) */
/* ===================================================== */
body.news-page-wrapper, 
body.news-page-wrapper .main-content {
    background-color: #ffffff !important;
    min-height: 100vh;
    /* Χωρίς display: flex εδώ για να μην χαλάει το grid του HTML στο πλάγιο μενού */
}

/* ===================================================== */
/* SIDEBAR LAYOUT */
/* ===================================================== */
html, body, .page-wrapper, .main-content, .news-portal-container { overflow: visible !important; }

.news-portal-container { align-items: start; }

.news-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.623); /* Όπως ζήτησες στο αρχικό css */
  border-radius: 12px;
  padding: 20px;
}

.recent-news-widget {
  max-height: 480px; 
  overflow-y: auto;
  padding-right: 15px !important;
}

.recent-news-widget::-webkit-scrollbar, .sidebar-widget::-webkit-scrollbar, .sidebar-recent-posts::-webkit-scrollbar { width: 4px; }
.recent-news-widget::-webkit-scrollbar-thumb, .sidebar-widget::-webkit-scrollbar-thumb, .sidebar-recent-posts::-webkit-scrollbar-thumb { background-color: rgba(221, 44, 44, 0.5); border-radius: 10px; }

.widget-title {
  color: #111111;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #961010;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.widget-categories { list-style: none; padding: 0; margin: 0; }
.widget-categories li { margin-bottom: 8px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.widget-categories li a {
  color: #555555;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 8px 0;
  display: block;
  border-left: 3px solid transparent;
  padding-left: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-categories li a:hover {
  color: #961010 !important;
  background: rgba(221, 44, 44, 0.08);
  border-left-color: #961010;
}

.sidebar-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 5px;
}

.sidebar-post-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-post-item:last-child { border: none; padding-bottom: 0; }

.sidebar-post-thumb { width: 60px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-placeholder { width: 100%; height: 100%; background: #961010; }

.sidebar-post-info { display: flex; flex-direction: column; text-align: left; }
.sidebar-post-date { font-size: 0.75rem; color: #961010; margin-bottom: 4px; }
.sidebar-post-title { margin: 0; font-size: 0.85rem; line-height: 1.3; }

.sidebar-post-title a { color: #222222; text-decoration: none; transition: color 0.2s; }
.sidebar-post-title a:hover { color: #961010; }

.widget-categories li a.active-history-link {
  color: #ffffff !important;
  background: #961010;
  border-left-color: #fff;
  font-weight: 900;
  white-space: nowrap;
  font-size: 0.82rem;
}

/* ===================================================== */
/* FEATURED BANNER */
/* ===================================================== */
.news-featured-banner {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  height: 280px;
  border: 2px solid #961010 !important;
  box-shadow: 0 0 0 1px rgba(221, 44, 44, 0.3), 0 5px 20px rgba(221, 44, 44, 0.2), 0 10px 40px rgba(221, 44, 44, 0.1) !important;
}

.news-featured-banner img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.4s ease; }
.news-featured-banner:hover img { transform: scale(1.03); }

.featured-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.85)); padding: 20px; text-align: left; }
.featured-title { color: #ffffff; font-size: 1.3rem; margin: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); font-weight: 700; }

.no-thumb-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: linear-gradient(135deg, #b31d1d, #961010); color: #fff; text-decoration: none; font-weight: bold; font-size: 1.1rem; }

.news-pagination { text-align: center; margin-top: 50px; width: 100%; }
.news-pagination .page-numbers { display: inline-block; padding: 10px 18px; margin: 0 4px; background: #f1f1f1; color: #333; text-decoration: none; border-radius: 8px; font-weight: bold; transition: all 0.2s; border: 1px solid rgba(0, 0, 0, 0.05); }
.news-pagination .page-numbers.current, .news-pagination .page-numbers:hover { background: #961010; color: #fff; }

/* ===================================================== */
/* ΡΟΣΤΕΡ & STAFF */
/* ===================================================== */
.roster-title-container { display: flex; justify-content: center; align-items: center; width: 100%; margin-top: 50px; margin-bottom: 30px; padding-top: 40px; clear: both; }
.roster-group-title { font-size: 1.6rem; color: #961010; text-align: center; border-bottom: 2px solid #961010; padding-bottom: 10px; margin-top: 50px; margin-bottom: 30px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; width: 100%; }
.staff-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 50px; width: 100%; }
.staff-card { width: 280px; height: 280px; background: transparent !important; border: none !important; box-shadow: none !important; overflow: hidden; transition: transform 0.3s ease; }
.staff-card:hover { transform: translateY(-5px); }
.staff-image { width: 100%; height: 100%; }
.staff-image img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.staff-card .staff-info { display: none !important; }
.roster-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; width: 100%; }

.roster-page-view .player-card {
  position: relative;
  width: 240px;
  height: 320px;
  background: #ffffff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.roster-page-view .player-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 12px 28px rgba(221, 44, 44, 0.3); }
.roster-page-view .player-badge-overlay { position: absolute; top: 16px; right: -38px; transform: rotate(45deg); background: linear-gradient(135deg, #961010, #b31d1d); color: #fff; padding: 6px 40px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35); z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; gap: 1px; }
.roster-page-view .player-number { font-size: 1.15rem; font-weight: 900; color: #ffffff; line-height: 1; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.roster-page-view .player-position { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 1.5px; line-height: 1; }
.roster-page-view .player-image { width: 100%; height: 230px; position: relative; margin-top: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #f5f5f5; }
.roster-page-view .player-image img { max-width: 105%; max-height: 105%; object-fit: cover; object-position: center 20%; display: block; filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15)); transition: transform 0.3s ease; }
.roster-page-view .player-card:hover .player-image img { transform: scale(1.05); }

.roster-page-view .player-info-box { background: #ffffff; padding: 16px 12px; text-align: center; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; overflow: hidden; border-top: 2px solid #961010; }
.roster-page-view .player-name { color: #1e1e1e !important; font-size: 0.85rem; font-weight: 900; letter-spacing: 0.3px; margin: 0 0 10px 0; text-transform: uppercase; display: block; width: 100%; white-space: normal; overflow: visible; text-overflow: clip; line-height: 1.25; }

@keyframes marqueeText { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

.roster-page-view .player-name .first-name { font-size: 0.85rem; font-weight: 400; color: #888; letter-spacing: 1px; }
.roster-page-view .player-name .last-name { font-size: 1.2rem; font-weight: 900; color: #1e1e1e; }
.roster-page-view .player-meta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: rgba(221, 44, 44, 0.842); padding: 4px 14px; border-radius: 20px; margin: 0 auto; }
.player-nation { color: #ffffff !important; }
.roster-page-view .player-flag { width: 14px; height: auto; object-fit: contain; }
.roster-page-view .player-meta span { color: #961010; font-size: 0.7rem; font-weight: bold; letter-spacing: 1px; }

@media (max-width: 768px) {
  .roster-page-view .player-image {
    height: 155px !important;
  }

  .roster-page-view .player-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Γεμίζει πλήρως το διαθέσιμο χώρο χωρίς κενά */
    }

  .roster-grid {
    gap: 16px !important;
  }

  /* Roster cards μικρότερες */
    .roster-page-view .player-card {
        width: 170px !important;
        height: auto !important;
        min-height: 250px !important;
        border-radius: 14px !important; /* Εξασφαλίζει την καμπύλη στην κάρτα */
        overflow: hidden !important;     /* Αναγκάζει την εικόνα να "κοπεί" στις γωνίες του γονέα */
    }

    .roster-page-view .player-image {
        height: 140px !important;
        width: 100% !important;
        border-radius: 14px 14px 0 0 !important; /* Στρογγυλεύει μόνο τις πάνω γωνίες της εικόνας */
        overflow: hidden !important;
    }

    .roster-page-view .player-info-box {
        padding: 10px 8px !important; /* Μειώνουμε το padding για να χωράνε άνετα τα στοιχεία */
    }
    
    .roster-grid {
        gap: 16px !important;
    }

    /* Επικοινωνία - τίτλος πιο κάτω */
    .contact-page .main-content {
        padding-top: 100px !important;
    }
    .nav-menu.center-items .dropdown-menu {
        background-color: rgb(168, 42, 42) !important;
    }

    .nav-menu.center-items .dropdown-menu li a {
        color: #ffffff !important;
        padding: 12px 24px 12px 40px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    }
    .roster-page-view .player-name {
        font-size: 0.8rem !important; /* Ελαφρώς μικρότερη γραμματοσειρά για τα κινητά */
        margin-bottom: 5px !important;
    }
}
/* ===================================================== */
/* ΕΠΙΚΟΙΝΩΝΙΑ */
/* ===================================================== */
.contact-page, .contact-page body { background-color: #ffffff !important; }
.contact-page .main-content { min-height: 100vh !important; display: flex; flex-direction: column; justify-content: center; margin: 0 !important; padding: 60px 0 100px 0 !important; background-color: #ffffff !important; box-sizing: border-box; }
.contact-centered-wrapper { display: flex; justify-content: center; align-items: center; max-width: 1000px; margin: 0 auto; padding: 0 20px; width: 100%; }

.contact-info-card-full {
  width: 100%;
  max-width: 550px;
  background: rgba(250, 250, 250, 0.95);
  border-radius: 24px;
  padding: 45px;
  border: 2px solid rgba(221, 44, 44, 0.2);
  box-shadow: 0 20px 40px rgba(221, 44, 44, 0.05), 0 1px 5px rgba(0, 0, 0, 0.02);
  text-align: center;
}

.contact-info-card-full h3 { color: #961010; margin-bottom: 30px; font-size: 1.3rem; text-transform: uppercase; font-weight: 800; letter-spacing: 1.5px; }
.contact-details-list { display: flex; flex-direction: column; gap: 18px; }

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-detail-card:hover { transform: translateX(5px); border-color: rgba(221, 44, 44, 0.5); }
.contact-detail-card .icon-box { font-size: 1.6rem; background: rgba(221, 44, 44, 0.08); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 12px; color: #961010; }
.contact-detail-card .detail-text { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-card .detail-text strong { font-size: 0.8rem; color: #777777; text-transform: uppercase; letter-spacing: 1px; }
.contact-detail-card .detail-text span, .contact-detail-card .detail-text a { color: #1a1a1a; text-decoration: none; font-size: 1.05rem; font-weight: 600; transition: color 0.2s ease; }
.contact-detail-card .detail-text a:hover { color: #961010; }

.contact-social-grid { display: flex; gap: 15px; margin-top: 10px; }
.contact-social-item { flex: 1; text-align: center; padding: 14px; border-radius: 14px; text-decoration: none; color: #ffffff; font-weight: bold; font-size: 1rem; letter-spacing: 0.5px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.contact-social-item.fb { background: #3b5998; box-shadow: 0 6px 20px rgba(59, 89, 152, 0.2); }
.contact-social-item.ig { background: #e1306c; box-shadow: 0 6px 20px rgba(225, 48, 108, 0.2); }
.contact-social-item:hover { transform: translateY(-4px); filter: brightness(1.1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }

@media (max-width: 768px) {
  .contact-page .main-content {
    padding-top: 100px !important;
  }

  .tickets-page-wrapper .tickets-title-container,
  .contact-page .contact-centered-wrapper {
    margin-top: 30px !important;
  }
     .logo {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 220px !important;
    }

    /* Email να μην ξεχειλίζει */
    .contact-detail-card .detail-text span,
    .contact-detail-card .detail-text a {
        font-size: 0.85rem !important;
        word-break: break-all !important;
    }

    /* Contact card να χωράει στην οθόνη */
    .contact-info-card-full {
        padding: 25px 20px !important;
    }

    /* History pages - sidebar κάτω */
    .news-portal-container[style*="grid-template-columns"],
    div[style*="grid-template-columns: 280px"] {
        display: flex !important;
        flex-direction: column !important;
    }
    .edra-full-section {
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    .edra-text-block,
    .edra-text-block p {
        text-align: left !important;
    }

    /* History tables responsive */
    .edra-text-block table {
        font-size: 0.8rem !important;
    }

    .edra-text-block table td,
    .edra-text-block table th {
        padding: 5px 6px !important;
        word-break: break-word !important;
    }

    .edra-text-block div[style*="background: #1a1a1a"] {
        padding: 12px !important;
        overflow-x: auto !important;
    }
    
}
/* ===================================================== */
/* ΓΚΑΛΕΡΙ ΣΤΑΔΙΟΥ */
/* ===================================================== */
.edra-page .main-content { padding-top: 0px !important; }
.stadium-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; width: 100%; }

.gallery-item-box {
  position: relative;
  height: 160px;
  border: 2px solid #961010;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.gallery-item-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item-box:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(221, 44, 44, 0.25); }
.gallery-item-box:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 99999; justify-content: center; align-items: center; flex-direction: column; }
.lightbox-modal.active { display: flex !important; }
.lightbox-content { max-width: 85vw; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 0 30px rgba(221, 44, 44, 0.4); }
.lightbox-close { position: absolute; top: 20px; right: 35px; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; transition: color 0.3s; }
.lightbox-close:hover { color: #961010; }
#lightbox-caption { color: #ccc; margin-top: 15px; font-size: 0.95rem; text-align: center; }

/* ===================================================== */
/* ΒΑΘΜΟΛΟΓΙΑ — REDΕΣΙGΝΕD */
/* ===================================================== */

/* ===================================================== */
/* HAMBURGER */
/* ===================================================== */
.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 5px; z-index: 10000; }
.hamburger span { display: block; width: 25px; height: 3px; background: #ffffff; border-radius: 3px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================== */
/* FORMS & NEWSLETTER */
/* ===================================================== */
form { background-color: #ffffff; color: #000; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
input[type="text"], input[type="email"], input[type="password"] { background-color: #ffffff; color: #000; border: 1px solid #ccc; }
.msg { color: #111; }
button { background-color: #961010; color: #fff; border: none; }
button:hover { background-color: #b31d1d; }

.newsletter-section { background: #ffffff !important; backdrop-filter: blur(8px); width: 100%; padding: 20px 20px 30px 20px; }
.newsletter-section p { color: #1e1e1e !important; font-size: 0.95rem !important; margin-bottom: 10px !important; }
.custom-newsletter-form, .custom-newsletter-form .tnp-subscription, .custom-newsletter-form form { background: transparent !important; border: none !important; box-shadow: none !important; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
.custom-newsletter-form label { display: none !important; }
.custom-newsletter-form { margin-top: 25px; }

.custom-newsletter-form input[type="email"], .custom-newsletter-form .tnp-email { width: 100% !important; max-width: 320px !important; padding: 10px 15px !important; margin: 5px auto 15px auto !important; background: #fff !important; border: 1px solid #ccc !important; border-radius: 20px !important; color: #111 !important; font-size: 0.9rem !important; text-align: center !important; transition: all 0.3s ease !important; display: block !important; }
.custom-newsletter-form input[type="email"]:focus, .custom-newsletter-form .tnp-email:focus { outline: none !important; border-color: #961010 !important; box-shadow: 0 0 10px rgba(221, 44, 44, 0.3) !important; }
.custom-newsletter-form input[type="submit"], .custom-newsletter-form .tnp-submit { background: #961010 !important; color: #fff !important; border: none !important; padding: 10px 30px !important; font-size: 0.85rem !important; font-weight: bold !important; text-transform: uppercase !important; border-radius: 20px !important; cursor: pointer !important; transition: all 0.3s ease !important; box-shadow: 0 4px 10px rgba(221, 44, 44, 0.2) !important; display: inline-block !important; margin: 0 auto !important; letter-spacing: 0.5px; }
.custom-newsletter-form input[type="submit"]:hover, .custom-newsletter-form .tnp-submit:hover { background: #b31d1d !important; transform: translateY(-1px) !important; box-shadow: 0 5px 15px rgba(221, 44, 44, 0.4) !important; }

.noptin-newsletter-form-field input[type="email"], .noptin-newsletter-form input[type="email"] { background: transparent !important; border: 2px solid rgba(221, 44, 44, 0.5) !important; border-radius: 50px !important; color: #111 !important; padding: 12px 20px !important; font-size: 1rem !important; width: 100% !important; outline: none !important; transition: border-color 0.3s ease !important; }
.noptin-newsletter-form-field input[type="email"]::placeholder { color: rgba(0,0,0,0.35) !important; }
.noptin-newsletter-form-field button, .noptin-newsletter-form button[type="submit"] { background: #961010 !important; color: #ffffff !important; border: none !important; border-radius: 50px !important; padding: 12px 35px !important; font-size: 1rem !important; font-weight: bold !important; text-transform: uppercase !important; letter-spacing: 1px !important; cursor: pointer !important; width: 100% !important; transition: background 0.3s ease, box-shadow 0.3s ease !important; }

/* ===================================================== */
/* ΣΕΛΙΔΑ ΠΟΛΙΤΙΚΗΣ ΑΠΟΡΡΗΤΟΥ */
/* ===================================================== */
body.privacy-page-wrapper { background-color: #ffffff !important; display: flex !important; flex-direction: column !important; min-height: 100vh !important; }
body.privacy-page-wrapper .privacy-main { flex-grow: 1 !important; background-color: #ffffff !important; padding-top: 140px !important; padding-bottom: 60px !important; }
.privacy-content-box { max-width: 800px; margin: 0 auto; }
.privacy-title-wrapper { text-align: center; margin-bottom: 50px; }
.privacy-badge { margin: 0; display: inline-block; }
.privacy-text-block { line-height: 1.8; text-align: justify; font-size: 1.05rem; color: #111111; }
.privacy-text-block h3 { color: #961010; font-weight: bold; margin-top: 25px; margin-bottom: 10px; }
.privacy-signature { text-align: center; margin-top: 40px; font-weight: bold; font-size: 1.1rem; }
.privacy-highlight { color: #961010; font-style: italic; }

/* ===================================================== */
/* ΕΙΣΙΤΗΡΙΑ ΔΙΑΡΚΕΙΑΣ (Tickets)                         */
/* ===================================================== */
body.tickets-page-wrapper, body.tickets-page-wrapper .main-content { background-color: #ffffff !important; min-height: 100vh; }
.tickets-page-wrapper .tickets-title-container { margin-top: 80px !important; }

.tickets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 50px; width: 100%; }

.ticket-card {
    background: #380c0cf3;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(221, 44, 44, 0.2); border-color: rgba(221, 44, 44, 0.5); }
.ticket-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #961010; color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
.ticket-header { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.ticket-header h3 { font-size: 1.3rem; color: #ffffff; margin-bottom: 5px; }
.ticket-price { font-size: 2.2rem; font-weight: 900; color: #961010; }
.ticket-body { flex-grow: 1; }
.ticket-body ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.ticket-body ul li { font-size: 0.85rem; color: #cccccc; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.ticket-body ul li .check { color: #961010; font-weight: bold; }

.tier-silver { border: 2px solid #a9a9a9; background: linear-gradient(145deg, #380c0cf3, rgba(40,35,20,0.95)); border-color: rgba(169, 169, 169, 0.4); }
.tier-silver .ticket-price, .tier-silver .ticket-body ul li .check { color: #a9a9a9; }
.tier-silver:hover { box-shadow: 0 10px 30px rgba(169, 169, 169, 0.15); border-color: #a9a9a9; }
.tier-gold { border: 2px solid #d4af37; background: linear-gradient(145deg, #380c0cf3, rgba(40,35,20,0.95)); border-color: rgba(212, 175, 55, 0.6); }
.tier-gold .ticket-price, .tier-gold .ticket-body ul li .check { color: #d4af37; }
.tier-gold:hover { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); border-color: #d4af37; }
.tier-vip { border: 2px solid #d4af37; background: linear-gradient(145deg, #380c0cf3, rgba(40,35,20,0.95)); }
.tier-vip .ticket-price, .tier-vip .ticket-body ul li .check, .tier-vip .ticket-header h3 { color: #d4af37; }
.tier-vip:hover { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25); border-color: #fce883; }

.tickets-info-box { background: rgba(20, 20, 20, 0.863); border: 1px solid rgba(221, 44, 44, 0.3); border-radius: 16px; padding: 30px; }
.tickets-info-box p { margin-bottom: 10px; color: #eeeeee; }

.tickets-intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: #fafafa; padding: 40px; border-radius: 16px; border: 1px solid #961010; margin-bottom: 50px; }
.tickets-intro-text { text-align: left; }
.tickets-intro-image { display: flex; justify-content: center; }
.tickets-intro-image img { width: 100%; max-width: 500px; height: auto; border-radius: 12px; border: 2px solid #961010; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transition: transform 0.4s ease; }
.tickets-intro-image img:hover { transform: scale(1.03); }

@media (max-width: 768px) {

    /* ΙΣΤΟΡΙΑ + ΔΙΑΡΚΕΙΑΣ - Badge τίτλος */
    .section-title-badge {
        font-size: 1rem;
        padding: 8px 18px;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    /* ΔΙΑΡΚΕΙΑΣ - intro split σε στήλη */
    .tickets-intro-split {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .tickets-intro-text {
        text-align: center;
    }

    /* ΔΙΑΡΚΕΙΑΣ - grid καρτών σε 1 στήλη */
    .tickets-grid {
        grid-template-columns: 1fr;
    }

  /* Μειώνει το κενό πάνω από τον τίτλο badge */
    .tickets-page-wrapper .tickets-title-container,
    .recent-articles-section {
        padding-top: 10px !important;
        margin-top: 10px !important;
    }
    

}

/* ===================================================== */
/* ΙΣΤΟΡΙΑ ΣΥΛΛΟΓΟΥ */
/* ===================================================== */
.history-main-container { max-width: 900px; margin: 0 auto; padding: 40px 20px; line-height: 1.8; font-size: 1.1rem; background-color: #ffffff !important; color: #222222 !important; }
.history-main-container h3 { color: #961010 !important; font-size: 1.6rem; margin-top: 40px !important; margin-bottom: 20px !important; border-bottom: 2px solid #961010; display: inline-block; }
.history-main-container h4 { color: #961010 !important; font-size: 1.3rem; margin-top: 25px !important; margin-bottom: 15px !important; }
.history-main-container p { margin-bottom: 20px; text-align: justify; }

.history-years-widget { max-height: 800px; overflow-y: auto; padding-right: 12px; }
.history-years-widget::-webkit-scrollbar { width: 4px; }
.history-years-widget::-webkit-scrollbar-thumb { background-color: #961010; border-radius: 10px; }

/* ===================================================== */
/* CLUB LANDING - QUICK CARDS                            */
/* ===================================================== */
.club-quick-card { display: flex; align-items: center; gap: 15px; background: rgba(221, 44, 44, 0.05); border: 1px solid rgba(221, 44, 44, 0.3); border-radius: 12px; padding: 18px; transition: all 0.3s ease; color: #111; }
.club-quick-card:hover { background: rgba(221, 44, 44, 0.2); border-color: #961010; transform: translateY(-3px); }
.club-quick-icon { font-size: 2rem; flex-shrink: 0; }
.club-quick-card strong { display: block; font-size: 1rem; margin-bottom: 4px; color: #111; }
.club-quick-card p { font-size: 0.82rem; color: #666; margin: 0; }


/* ===================================================== */
/* RESPONSIVE - ΡΥΘΜΙΣΗ ΓΙΑ ΚΙΝΗΤΑ (STACK LAYOUT)       */
/* ===================================================== */
@media (max-width: 992px) {
    .tickets-intro-split { grid-template-columns: 1fr; padding: 20px; }
    .tickets-intro-text { text-align: center; }
}

@media (max-width: 768px) {
    .navbar { flex-wrap: wrap; padding: 0 15px; height: auto; min-height: 60px; }
    .hamburger { display: flex; }
    .nav-menu.center-items {
    position: fixed !important;
    top: 60px !important;
    right: 0 !important;
    width: 260px !important;
    height: calc(100vh - 60px) !important;
    background-color: #961010 !important;
    flex-direction: column !important;
    padding: 20px 0 !important;
    gap: 0 !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4) !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    display: flex !important; /* πάντα flex, το transform κρύβει */
    z-index: 9998 !important;
    overflow-y: auto !important;
  }

  .nav-menu.center-items.open {
    transform: translateX(0) !important;
  }
    .nav-menu.center-items.open { display: flex; }
    .actions { order: 2; }
    
    .nav-menu.center-items li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

    /* Προσθήκη για να "σπάει" το grid του HTML στα κινητά */
    .news-portal-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .nav-menu.center-items li a:hover {
    background: rgba(0,0,0,0.2) !important;
  }

    .nav-menu.center-items li a {
    display: block !important;
    padding: 16px 24px !important;
    font-size: 1rem !important;
    color: #ffffff !important;
  }
    
    .news-sidebar { order: 2; margin-top: 30px; width: 100% !important; }
    .news-main-content { order: 1; width: 100% !important; flex: 1 1 100% !important; }
    
    .site-footer { position: relative !important; margin-top: 30px; }
    .news-grid { grid-template-columns: 1fr !important; }
    .post-card { min-height: auto !important; }
    .news-featured-banner { height: 180px !important; }
    .player-card { width: 100% !important; height: auto !important; }
    .nav-menu li a.clicked + .dropdown-menu { display: block !important; }
    .tickets-info-box { grid-template-columns: 1fr !important; gap: 20px !important; }
    .tickets-info-box > div { border-left: none !important; padding-left: 0 !important; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

    /* Fix διπλό tap: απενεργοποίηση hover dropdowns σε mobile */
    .dropdown:hover .dropdown-menu,
    .mega-dropdown:hover .mega-menu,
    .mega-menu {
        display: none !important;
    }

    
}

/* ===================================================== */
/* PRODUCT SINGLE (page-product-view)                    */
/* ===================================================== */
.product-single-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  padding: 0 20px;
}

.product-single-media {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(221, 44, 44, 0.3);
  box-shadow: 0 0 0 1px rgba(221, 44, 44, 0.15), 0 10px 30px rgba(221, 44, 44, 0.15);
  background: #f9f9f9;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-single-media img:hover {
  transform: scale(1.03);
}

#prod-img-loader {
  color: #aaa;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.product-single-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.product-main-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-single-price-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #961010;
  padding: 10px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2rem;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(221, 44, 44, 0.3);
}

.product-single-price-label {
  font-size: 1.5rem;
  font-weight: 1000;
  letter-spacing: 1px;
  opacity: 1;
}

.product-single-price-value {
  font-size: 1.5rem;
  font-weight: 900;
}

.product-single-description {
  font-size: 1rem;
  font-weight: bolder;
  line-height: 1.8;
  color: #ffffffc7;
  border-top: 3px solid rgba(255, 255, 255, 0.938);
  padding-top: 20px;
}

.product-single-description p {
  margin-bottom: 15px;
}

.product-back-link-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 20px;
  margin-top: 5px;
}

.product-back-link {
  color: #961010;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.product-back-link:hover {
  color: #b31d1d;
  padding-left: 5px;
}

/* Error / not found */
.product-not-found {
  text-align: center;
  padding: 80px 20px;
  color: #555;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ===================================================== */
/* PRODUCT GRID (eshop landing page)                     */
/* ===================================================== */
.products-grid-wrapper {
  max-width: 1100px;
  margin: 50px auto 0 auto;
  padding: 0 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.product-card {
  background: #ffffff;
  border: 2px solid rgb(150, 16, 16);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(221, 44, 44, 0.1), 0 5px 20px rgba(221, 44, 44, 0.1);
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(221, 44, 44, 0.4), 0 10px 30px rgba(221, 44, 44, 0.2);
}

.product-card-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.05);
}

.product-card-no-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #b31d1d, #961010);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 2.5rem;
}

.product-card-body {
  padding: 18px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin: 0;
}

.product-card-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: #961010;
  margin-top: auto;
}

.product-card-cta {
  font-size: 0.75rem;
  font-weight: bold;
  color: #961010;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.product-card:hover .product-card-cta {
  opacity: 1;
}

/* ===================================================== */
/* RESPONSIVE PRODUCTS                                   */
/* ===================================================== */
@media (max-width: 768px) {
  .product-single-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .product-single-media {
    position: relative;
    top: auto;
    aspect-ratio: 4 / 3;
  }

  .product-main-title {
    font-size: 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}

/* ===================================================== */
/* PRODUCT MODAL                                         */
/* ===================================================== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.product-modal-box {
  background: #961010;
  box-shadow: 0 0 30px 10px rgba(212, 175, 55, 0.637);
  border: 3px solid #d4af37;
  border-radius: 35px;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  transition: color 0.2s;
}

.product-modal-close:hover { color: #000000; }

.product-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-modal-media {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal-info {
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 640px) {
  .product-modal-inner {
    grid-template-columns: 1fr;
  }
  .product-modal-media {
    border-radius: 20px 20px 0 0;
    aspect-ratio: 4 / 3;
  }
  .product-modal-info {
    padding: 25px 20px;
  }
}


/*membership*/

/* ============================================================
    Φόρμα Υποστηρικτών
   ============================================================ */

.ov-form-container {
    background-color: rgba(39, 38, 38, 0.747);
    max-width: 600px;
    margin: 140px auto 50px auto; /* 140px κενό από πάνω για να ξεκολλήσει από το μενού */
    padding: 20px;
    font-family: sans-serif;
    box-sizing: border-box;
    border-radius: 20px;
}

.ov-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.ov-form-header h1 {
    font-size: 2.5rem;
    color: #cc0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.ov-form-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.ov-form-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}

.ov-form-header .ov-highlight-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #cc0000;
    margin-top: 15px;
}

/* Η Δομή της Φόρμας */
.ov-custom-form {
    background: #e8ecef;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.ov-form-section-title {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #cc0000;
    padding-bottom: 5px;
    font-size: 1.3rem;
    color: #333;
}

.ov-form-section-title.text-dark {
    color: #333;
}

/* Πεδία Εισαγωγής (Form Groups) */
.ov-form-group {
    margin-bottom: 15px;
    box-sizing: border-box;
}

.ov-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.ov-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.ov-form-group input:focus {
    border-color: #cc0000;
    outline: none;
}

/* Grid για τα Κουμπιά των Ποσών */
.lb-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Στυλ Κουμπιών Ποσού */
.lb-amount-btn {
    padding: 12px;
    border: 1px solid #ccc !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Hover Κατάσταση */
.lb-amount-btn:hover {
    background-color: #f0f0f0 !important;
    border-color: #999 !important;
    color: #000000 !important;
}

/* Active Κατάσταση (Επιλεγμένο) */
.lb-amount-btn.active {
    background-color: #cc0000 !important;
    border-color: #cc0000 !important;
    color: #ffffff !important;
}

/* Το κουμπί "Άλλο ποσό" πιάνει 2 στήλες */
.lb-custom-btn-span {
    grid-column: span 2;
}

/* Κουμπί Υποβολής Φόρμας */
.ov-submit-btn {
    width: 100%;
    padding: 15px;
    background: #cc0000;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.ov-submit-btn:hover {
    background: #b30000;
}

.ov-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Helper Classes */
.m-bottom-25 {
    margin-bottom: 25px;
}

.display-none {
    display: none;
}


/*ΥΠΟΣΤΗΡΙΚΤΗΣ*/
.ov-hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/kerkida.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.ov-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(150, 16, 16, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.ov-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

.ov-hero-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 5px 18px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.08);
}

.ov-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.ov-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 36px auto;
}

.ov-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ov-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ov-btn-primary {
    background: #d4af37;
    color: #1a0000;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.ov-btn-primary:hover {
    background: #f0cc55;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
    color: #1a0000;
}

.ov-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.ov-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .ov-hero-title {
        font-size: 1.8rem;
    }

    .ov-hero-description {
        font-size: 1rem;
    }

    .ov-hero-container {
        padding: 50px 20px;
    }
}


/*info λαική βάση*/
/* ===================================================== */
/* ΛΑΪΚΗ ΒΑΣΗ - INFO PAGE                                */
/* ===================================================== */

/* HERO SECTION */
.lv-hero {
    background: url('images/kerkida.jpg') center center / cover no-repeat;
    position: relative;
    padding: 100px 20px 80px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(150,16,16,0.88) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.lv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.lv-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 5px 18px;
    border-radius: 20px;
    background: rgba(212,175,55,0.08);
    margin-bottom: 20px;
}

.lv-hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.lv-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* ΟΡΑΜΑ (VISARDS GRID) */
.lv-vision {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

.lv-vision-inner {
    max-width: 960px;
    margin: 0 auto;
}

.lv-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    align-items: stretch;
}

.lv-vision-card {
    background: #ffffff;
    border: 2px solid rgba(150,16,16,0.15);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.lv-vision-card:hover {
    border-color: #961010;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(150,16,16,0.12);
}

/* Η μεσαία κάρτα που είναι κόκκινη στην εικόνα image_e0a0d1.jpg */
.lv-vision-card--main {
    background: #961010;
    border-color: #961010;
    box-shadow: 0 8px 25px rgba(150,16,16,0.25);
}

.lv-vision-card--main:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(150,16,16,0.35);
    border-color: #b31d1d;
}

.lv-vision-card--main h3,
.lv-vision-card--main p {
    color: #ffffff !important;
}

.lv-vision-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(150,16,16,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.lv-vision-card--main .lv-vision-icon {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.lv-vision-card h3 {
    font-size: 1rem;
    font-weight: 900;
    color: #961010;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lv-vision-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* 3. CTA SECTION */
.lv-cta {
    padding: 60px 20px;
    text-align: center;
}

.lv-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.lv-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #961010; /* Απόλυτο λευκό για τέλεια αντίθεση */
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Το οβάλ χρυσό κουμπί όπως ακριβώς φαίνεται στο image_e0a0d1.jpg */
.lv-cta .ov-btn-primary {
    background-color: #c9a034; /* Το χρυσό χρώμα της εικόνας */
    color: #000000 !important; /* Μαύρα γράμματα */
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Οβάλ σχήμα */
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.lv-cta .ov-btn-primary:hover {
    background-color: #b0892b; /* Πιο σκούρο χρυσό στο hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE ΡΥΘΜΙΣΕΙΣ */
@media (max-width: 768px) {
    .lv-hero h1      { font-size: 1.8rem; }
    .lv-hero p       { font-size: 1rem; }
    .lv-hero         { padding: 80px 20px 60px; }

    .lv-vision-grid  { grid-template-columns: 1fr; }
    .lv-cta h2       { font-size: 1.4rem; }
    
    .lv-cta .ov-btn-primary {
        width: 100%;
        box-sizing: border-box;
    }
}
/* =============================================================================
   ΣΤΥΛ ΓΙΑ ΤΟ ΣΥΣΤΗΜΑ ΧΟΡΗΓΩΝ (ΠΛΗΡΩΣ RESPONSIVE & ΚΑΘΑΡΟ)
   ============================================================================= */

/* Ρυθμίσεις Κεντρικού Layout */
.sponsors-main-layout {
    padding-top: 50px;
    padding-bottom: 80px;
    background: #fafafa; /* Ελαφρύ σπασμένο λευκό φόντο για αντίθεση */
}

/* Κεντρικό Container της Σελίδας Λίστας */
.ov-sponsors-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Τίτλοι κατηγοριών στυλ Άρη (μικροί, γκρίζοι, κεφαλαίοι) */
.ov-sponsor-section-title {
    font-family: sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 40px 0 20px 0;
    text-align: left;
}

/* Διάταξη Flexbox για κεντραρισμένα λογότυπα */
.ov-sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

/* Κάρτα Χορηγού με το κίτρινο/χρυσό περίγραμμα */
.ov-sponsor-card {
    background: #fff;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.ov-sponsor-card:hover {
    transform: scale(1.03); /* Ελαφρύ μεγέθυνση στο hover */
}

/* Μεγέθη για premium (Μεγάλος Χορηγός) */
.ov-sponsors-grid.premium-grid .ov-sponsor-card {
    width: 240px;
    height: auto;
}

/* Μεγέθη για τις υπόλοιπες κατηγορίες */
.ov-sponsors-grid.standard-grid .ov-sponsor-card {
    width: 180px;
    height: auto;
}

.ov-sponsor-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 1. CSS για το Κορυφαίο Hero Banner */
.sponsors-hero-banner {
    margin-top: -20px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

.sponsors-hero-overlay {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(150, 16, 16, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
    text-align: center;
    color: #ffffff;
}

.sponsors-hero-overlay h1 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.sponsors-hero-overlay p {
    font-size: 1.2rem;
    color: #d4af37;
    margin: 12px 0 0 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 2. CSS για το Call To Action Box (Κάτω Μέρος) */
.sponsor-cta-box {
    background: #ffffff;
    border-top: 4px solid #961010;
    padding: 40px;
    margin-top: 300px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-cta-box h3 {
    margin: 0 0 15px 0;
    font-size: 1.6rem;
    color: #961010;
    font-weight: 800;
    text-transform: uppercase;
}

.sponsor-cta-box p {
    margin: 0 0 25px 0;
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Το Κουμπί του Call To Action Box */
.sponsor-cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #1a1a1a;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sponsor-cta-button:hover {
    background: #961010;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 16, 16, 0.3);
}

/* =============================================================================
   ΣΤΥΛ ΓΙΑ ΤΗΝ ΕΣΩΤΕΡΙΚΗ ΣΕΛΙΔΑ ΧΟΡΗΓΟΥ (SINGLE-SPONSOR.PHP)
   ============================================================================= */

.ov-sponsor-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ο Τίτλος του Χορηγού */
.ov-sponsor-title-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #961010; /* Ερυθρόλευκο theme */
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Το Flexbox Container της εσωτερικής σελίδας */
.ov-sponsor-flex-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Το Box του Λογοτύπου στην εσωτερική σελίδα */
.ov-sponsor-logo-box {
    flex: 0 0 300px;
    background: #ffffff;
    border: 2px solid #d4af37; /* Σταθερό χρυσό πλαίσιο */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ov-sponsor-logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Το Box του Κειμένου/Παρουσίασης */
.ov-sponsor-content-box {
    flex: 1;
}

.ov-sponsor-content-box .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 35px;
}

/* Το Κουμπί για την Επίσημη Ιστοσελίδα */
.ov-sponsor-link-click {
    display: inline-block;
    padding: 14px 28px;
    background-color: #961010;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(150, 16, 16, 0.2);
}

.ov-sponsor-link-click:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* =============================================================================
   MEDIA QUERIES ΓΙΑ ΚΙΝΗΤΑ ΚΑΙ TABLETS
   ============================================================================= */

@media (max-width: 768px) {
    /* Προσαρμογή του κεντρικού layout στα κινητά */
    .sponsors-main-layout {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    /* Μείωση μεγέθους γραμματοσειρών του Hero Banner για να μην κρύβουν την οθόνη */
    .sponsors-hero-overlay {
        padding: 40px 15px;
    }

    .sponsors-hero-overlay h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .sponsors-hero-overlay p {
        font-size: 1rem;
    }

    /* Στοίχιση των τίτλων κατηγορίας στο κέντρο για καλύτερη εμφάνιση στο κινητό */
    .ov-sponsor-section-title {
        text-align: center;
        margin-top: 30px;
    }

    /* Οι κάρτες των χορηγών γίνονται ελαστικές για να χωράνε σωστά σε μικρές οθόνες */
    .ov-sponsors-grid.premium-grid .ov-sponsor-card,
    .ov-sponsors-grid.standard-grid .ov-sponsor-card {
        width: calc(50% - 10px); /* 2 στήλες ανά σειρά στα κινητά */
        min-width: 140px;
        max-width: 100%;
    }

    /* Το Call to Action Box μαζεύεται σωστά για να μην κολλάει στα περιθώρια */
    .sponsor-cta-box {
        padding: 25px 15px;
        margin-top: 40px;
        border-radius: 6px;
    }

    .sponsor-cta-box h3 {
        font-size: 1.25rem;
    }

    .sponsor-cta-box p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .sponsor-cta-button {
        padding: 12px 20px;
        font-size: 0.8rem;
        width: 100%; /* Το κουμπί πιάνει όλο το πλάτος στο κινητό για ευκολότερο κλικ */
        box-sizing: border-box;
    }

    /* Μετατροπή του flex σε κάθετη διάταξη στην εσωτερική σελίδα χορηγού */
    .ov-sponsor-flex-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .ov-sponsor-logo-box {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .ov-sponsor-title-text {
        font-size: 1.8rem;
        text-align: center;
    }

    .ov-sponsor-link-click {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}