/* ===============================================
   OMEGAPRINT - COMPLETE IMPROVED STYLESHEET  
   Full responsive design & modern improvements
   =============================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f7f9fc;
  color: #1a1a1a;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* =============== HEADER =============== */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, .05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  padding: 0;
}

.logo img {
  height: 65px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c40000;
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-nav a:hover {
  color: #c40000;
}

.btn-nav {
  background: #c40000;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-nav::after {
  display: none;
}

.btn-nav:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 0, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 85px;
  right: -100%;
  width: 280px;
  height: calc(100vh - 85px);
  background: #fff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: right 0.3s ease;
  z-index: 999;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #f7f9fc;
  color: #c40000;
  padding-left: 30px;
}

.mobile-nav .btn-nav {
  margin-top: 20px;
  text-align: center;
  border: none;
  border-radius: 8px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* =============== HERO SECTION =============== */
.hero {
  position: relative;
  height: 82vh;
  min-height: 500px;
  color: white;
  overflow: hidden;
}

.hero-slider,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .45));
}

.hero-content {
  text-align: center;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.btn-primary {
  background: #c40000;
  padding: 14px 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease;
}

.btn-primary:hover {
  background: #a00000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(196, 0, 0, 0.4);
}

/* =============== SERVICES SECTION =============== */
.services {
  padding: 90px 0;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.section-sub {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #fff;
border:1px solid #eee;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .07);
  transition: all 0.4s ease;

  /* ⭐ FIX ΙΔΙΟΥ ΥΨΟΥΣ */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
  border-color:#c40000;
}

.icon {
  font-size: 42px;
  color: #e00000;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.15) rotate(5deg);
}

.card h3 {
  margin: 15px 0 10px;
  font-size: 22px;
  color: #1a1a1a;
}

.card p {
  margin: 15px 0 25px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  flex-grow: 1;
}

/* =============== FOOTER =============== */
.footer {
  background: #111;
  color: #bbb;
  padding: 60px 0 25px;
}

.footer-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 280px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-col p {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col i {
  color: #c40000;
  width: 20px;
}

.footer iframe {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  border: 0;
}

.footer a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #c40000 !important;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 14px;
}

/* =============== BANK SECTION =============== */
.bank-section {
  background: #111;
  padding: 20px 0 40px;   /* 🔴 ΜΕΙΩΣΑΜΕ ΠΟΛΥ το πάνω padding */
  margin-top: -40px;      /* 🔴 ΤΟ ΣΗΜΑΝΤΙΚΟ – ανεβάζει όλο το section */
  color: #ccc;
  text-align: center;
  border-top: 1px solid #222;
}

.bank-section h4 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 30px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.bank-card p {
  cursor: pointer;
  transition: all 0.2s ease;
}

.bank-card p:hover {
  color: #fff;
  transform: scale(1.05);
}

.bank-card:hover {
  background: #222;
  border-color: #c40000;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(196, 0, 0, 0.2);
}

.bank-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.bank-card h5 {
  color: #c40000;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.iban-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.iban-label {
  font-weight: 600;
  color: #aaa;
  font-size: 13px;
}

.iban-value {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #fff;
  background: #0a0a0a;
  padding: 6px 10px;
  border-radius: 5px;
}

.copy-btn {
  background: #c40000;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.copy-btn:hover {
  background: #a00000;
  transform: scale(1.05);
}

.copy-btn.copied {
  background: #1faa00;
}

.account-number {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

.bank-note{
  margin: 40px auto 160px;
  padding: 18px 25px;
  max-width: 900px;
  background: #1c1c1c;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  border: 1px solid #2a2a2a;
}

/* =============== BACK TO TOP BUTTON =============== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #c40000;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(196, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #a00000;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(196, 0, 0, 0.4);
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

/* Tablets and below (1024px) */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .services h2 {
    font-size: 2rem;
  }
}

/* Tablets portrait and below (768px) */
@media (max-width: 768px) {
  .header-inner {
    height: auto;
    padding: 15px 0;
  }

  .logo img {
    height: 70px;
  }

  /* Show hamburger, hide desktop nav */
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .slider-dots {
    bottom: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 12px;
    height: 12px;
  }

  /* Services */
  .services {
    padding: 60px 0;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    width: 100%;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
  }

  .footer iframe {
    height: 250px;
  }

  /* Bank section */
  .bank-grid {
    grid-template-columns: 1fr;
  }

  .iban-line {
    flex-direction: column;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Mobile phones (480px) */
@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 15px;
  }

  .services h2 {
    font-size: 1.8rem;
  }

  .card {
    padding: 25px 20px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .bank-section h4 {
    font-size: 1.5rem;
  }

  .iban-value {
    font-size: 11px;
  }
}

/* Very small screens (360px) */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }

  .logo img {
    height: 55px;
  }
}

/* ===============================================
   BREADCRUMBS
   =============================================== */

.breadcrumbs {
  background: #f7f9fc;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #c40000;
}

.breadcrumbs .separator {
  color: #ccc;
}

.breadcrumbs .current {
  color: #c40000;
  font-weight: 600;
}

/* ===============================================
   BRANDS SECTION
   =============================================== */

.brands-section {
  background: linear-gradient(135deg, #f7f9fc 0%, #e8ecf1 100%);
  padding: 80px 0;
  text-align: center;
}

.brands-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.brand-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #c40000, #a00000);
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.brand-badge {
  display: inline-block;
  background: #c40000;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-name {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 25px 0 15px;
  font-weight: 700;
}

.brand-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================================
   COOKIE NOTICE
   =============================================== */

.cookie-notice {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cookie-content i {
  color: #c40000;
  font-size: 24px;
}

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

.cookie-accept {
  background: #c40000;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  background: #a00000;
  transform: translateY(-2px);
}

.cookie-learn-more {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s ease;
}

.cookie-learn-more:hover {
  color: #c40000;
}

/* ===============================================
   LOADING SPINNER
   =============================================== */

.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.3s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #c40000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  margin-top: 20px;
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

/* ===============================================
   RESPONSIVE - BREADCRUMBS, BRANDS, COOKIES
   =============================================== */

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 13px;
  }

  .brands-section h2 {
    font-size: 2rem;
  }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brand-card h3 {
    font-size: 1.6rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-accept {
    width: 100%;
  }
}

/* ===============================================
   SLIDER DOTS
   =============================================== */

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: #c40000;
  border-color: #fff;
  width: 14px;
  height: 14px;
}

/* ===============================================
   SOCIAL MEDIA ICONS
   =============================================== */

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #c40000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(196, 0, 0, 0.4);
}

/* ===============================================
   NO RESULTS MESSAGE
   =============================================== */

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #666;
}

.no-results h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 15px 0 10px;
}

.no-results p {
  font-size: 1rem;
  color: #888;
}

/* ===============================================
   PRODUCTS PAGE STYLES
   =============================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.product-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
}

.specs {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
}

.specs li {
  margin: 8px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.specs strong {
  color: #1a1a1a;
  font-weight: 600;
}

.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-outline {
  border: 2px solid #c40000;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #c40000;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  font-size: 14px;
}

.btn-outline:hover {
  background: #c40000;
  color: #fff;
  transform: translateY(-2px);
}

.offer-btn {
  background: #c40000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.offer-btn:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 0, 0, 0.3);
}

/* Search Box */
.search-wrapper {
  max-width: 400px;
  margin: 30px auto;
  position: relative;
}

.search-wrapper input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border-radius: 25px;
  border: 2px solid #ddd;
  font-size: 15px;
  transition: all 0.3s ease;
}

.search-wrapper input:focus {
  outline: none;
  border-color: #c40000;
  box-shadow: 0 0 0 3px rgba(196, 0, 0, 0.1);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
}

/* Filter Bar */
.filter-bar {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.filter-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-group span {
  font-weight: 600;
  color: #333;
  margin-right: 10px;
  font-size: 15px;
}

.filter-group button {
  border: none;
  background: #c40000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-group button.active {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.filter-group button:hover {
  background: #a00000;
  transform: translateY(-2px);
}

/* Refurbished Badge */
.refurb-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  background: linear-gradient(145deg, #d28a2e, #b87333, #9c6428);
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
  vertical-align: middle;
  text-transform: uppercase;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  margin-top: 0;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.modal-content input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-size: 15px;
}

.modal-content input:focus {
  outline: none;
  border-color: #c40000;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-modal:hover {
  color: #c40000;
}

/* Products Page Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-bar {
    max-width: 100%;
    padding: 0 10px;
  }

  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-group span {
    margin-bottom: 8px;
  }

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

  .search-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 18px;
  }

  .specs li {
    font-size: 13px;
  }

  .modal-content {
    padding: 25px 20px;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }
}

@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(40,167,69,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(40,167,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}

.reset-btn{
  background:#222;
  color:#fff;
  padding:10px 18px;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.reset-btn:hover{
  background:#000;
  transform:translateY(-2px);
}

#contact{
  scroll-margin-top: 90px;
}

.hero-sub{
  font-size:18px;
  margin-top:15px;
  opacity:0.95;
}

.hero-sub2{
  font-size:17px;
  margin-top:5px;
  opacity:0.85;
}

.hero-buttons{
  margin-top:25px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-secondary{
  background:#ffffff;
  color:#000;
  padding:14px 22px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
}

.hero-trust{
  margin-top:20px;
  font-size:14px;
  opacity:0.9;
}


.card-link{
  text-decoration:none;
  color:inherit;
  display:block;
  transition:0.3s;
}

.card-link:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.card-btn{
  margin-top:18px;
  background:#e30613;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  font-weight:600;
  font-size:14px;
  display:inline-block;
  transition:0.3s;
letter-spacing:0.3px;
}

.card-link:hover .card-btn{
  background:#b8000f;
}

.btn-shop{
  background:#c40000;
  color:#fff !important;
  padding:12px 24px;
  border-radius:8px;
  font-weight:700;
  font-size:18px;
  margin-right:10px;
  transition:0.3s;
}

.btn-shop:hover{
  background:#a00000;
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(196,0,0,0.3);
}
.btn-shop {
  display: inline-block !important;
  background: #e30613 !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
/* HOME OFFER */

.home-offer{
  padding:70px 20px;
  background:#fff;
}

.home-offer-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.home-offer-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.offer-badge{
  display:inline-block;
  background:#c40000;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  font-size:14px;
  font-weight:700;
  margin-bottom:18px;
}

.home-offer-content h2{
  font-size:48px;
  color:#c40000;
  margin-bottom:10px;
}

.home-offer-content h3{
  font-size:26px;
  margin-bottom:18px;
  color:#222;
}

.offer-description{
  font-size:17px;
  line-height:1.7;
  color:#555;
  margin-bottom:24px;
}

.offer-price-box{
  background:linear-gradient(135deg,#d10000,#920000);
  color:#fff;
  padding:25px;
  border-radius:16px;
  margin-bottom:22px;
  max-width:320px;
}

.offer-price-box span{
  display:block;
  font-size:16px;
  font-weight:700;
}

.offer-price-box strong{
  display:block;
  font-size:68px;
  line-height:1;
  margin:10px 0;
}

.offer-price-box small{
  font-size:20px;
  font-weight:600;
}

.offer-included{
  background:#f5f5f5;
  border-left:5px solid #c40000;
  padding:16px;
  border-radius:8px;
  margin-bottom:22px;
}

.offer-included strong{
  color:#c40000;
  display:block;
  margin-bottom:6px;
}

.offer-features{
  list-style:none;
  padding:0;
  margin:0 0 28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.offer-features li{
  position:relative;
  padding-left:24px;
  color:#222;
  font-size:15px;
}

.offer-features li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#c40000;
  font-weight:bold;
}

.offer-contact{
  background:#f7f7f7;
  padding:20px;
  border-radius:12px;
}

.offer-contact p{
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
}

.offer-btn{
  display:inline-block;
  background:#c40000;
  color:#fff;
  text-decoration:none;
  padding:12px 18px;
  border-radius:8px;
  margin-right:10px;
  margin-top:5px;
  transition:0.3s;
}

.offer-btn:hover{
  background:#8f0000;
}

@media(max-width:900px){

  .home-offer-wrap{
    grid-template-columns:1fr;
  }

  .home-offer-content h2{
    font-size:38px;
  }

  .offer-price-box strong{
    font-size:60px;
  }

  .offer-features{
    grid-template-columns:1fr;
  }

}
.offer-more-btn{
  display:inline-block;
  margin-top:18px;
  background:#111;
  color:#fff;
  padding:14px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.offer-more-btn:hover{
  background:#c40000;
}
/* ===============================================
   OMEGAPRINT - FINAL OFFER / PRODUCT PAGE FIXES
   Βάλε αυτό το CSS στο ΤΕΛΟΣ του style.css
   =============================================== */

/* ---------- HOME OFFER SECTION ---------- */

.home-offer{
  padding:90px 20px 75px !important;
  background:#fff !important;
}

.home-offer-wrap{
  display:grid !important;
  grid-template-columns:0.95fr 1.05fr !important;
  gap:55px !important;
  align-items:center !important;
}

.home-offer-image{
  text-align:center !important;
}

.home-offer-image img{
  width:88% !important;
  max-width:520px !important;
  border-radius:18px !important;
  box-shadow:0 10px 30px rgba(0,0,0,0.12) !important;
}

.offer-badge{
  display:inline-block !important;
  background:#c40000 !important;
  color:#fff !important;
  padding:10px 18px !important;
  border-radius:6px !important;
  font-size:14px !important;
  font-weight:700 !important;
  margin-bottom:18px !important;
  letter-spacing:.3px !important;
}

.home-offer-content h2{
  font-size:46px !important;
  color:#c40000 !important;
  margin-bottom:10px !important;
  line-height:1.1 !important;
}

.home-offer-content h3{
  font-size:25px !important;
  margin-bottom:18px !important;
  color:#222 !important;
}

.offer-description{
  font-size:17px !important;
  line-height:1.7 !important;
  color:#555 !important;
  margin-bottom:24px !important;
}

.offer-price-box{
  position:relative !important;
  background:linear-gradient(135deg,#d10000,#920000) !important;
  color:#fff !important;
  padding:25px !important;
  border-radius:16px !important;
  margin:0 0 22px !important;
  max-width:320px !important;
  box-shadow:0 10px 25px rgba(0,0,0,.16) !important;
}

.offer-price-box .best-value{
  position:absolute !important;
  top:-14px !important;
  right:18px !important;
  background:#111 !important;
  color:#fff !important;
  padding:7px 12px !important;
  border-radius:999px !important;
  font-size:12px !important;
  font-weight:700 !important;
  letter-spacing:.4px !important;
}

.offer-price-box span{
  display:block !important;
  font-size:16px !important;
  font-weight:700 !important;
}

.offer-price-box strong{
  display:block !important;
  font-size:68px !important;
  line-height:1 !important;
  margin:10px 0 !important;
}

.offer-price-box small{
  font-size:20px !important;
  font-weight:600 !important;
}

.offer-included{
  background:#f5f5f5 !important;
  border-left:5px solid #c40000 !important;
  padding:16px !important;
  border-radius:8px !important;
  margin-bottom:22px !important;
}

.offer-included strong{
  color:#c40000 !important;
  display:block !important;
  margin-bottom:6px !important;
}

.offer-features{
  list-style:none !important;
  padding:0 !important;
  margin:0 0 28px !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:12px !important;
}

.offer-features li{
  position:relative !important;
  padding-left:24px !important;
  color:#222 !important;
  font-size:15px !important;
}

.offer-features li::before{
  content:"✓" !important;
  position:absolute !important;
  left:0 !important;
  color:#c40000 !important;
  font-weight:bold !important;
}

.offer-contact{
  background:#f7f7f7 !important;
  padding:20px !important;
  border-radius:12px !important;
}

.offer-contact p{
  font-size:18px !important;
  font-weight:700 !important;
  margin-bottom:16px !important;
}

.offer-contact .offer-btn,
.home-offer .offer-btn{
  display:inline-block !important;
  background:#c40000 !important;
  color:#fff !important;
  text-decoration:none !important;
  padding:12px 18px !important;
  border-radius:8px !important;
  margin-right:10px !important;
  margin-top:7px !important;
  transition:.3s !important;
  font-weight:700 !important;
  font-size:14px !important;
  border:0 !important;
}

.offer-contact .offer-btn:hover,
.home-offer .offer-btn:hover{
  background:#8f0000 !important;
  transform:translateY(-2px) !important;
}

.offer-contact .email-btn{
  background:#222 !important;
}

.offer-contact .email-btn:hover{
  background:#000 !important;
}

.offer-contact .pdf-btn{
  background:#555 !important;
}

.offer-contact .pdf-btn:hover{
  background:#333 !important;
}

.offer-more-btn{
  display:inline-block !important;
  margin-top:18px !important;
  background:#111 !important;
  color:#fff !important;
  padding:14px 22px !important;
  border-radius:8px !important;
  text-decoration:none !important;
  font-weight:700 !important;
  transition:.3s !important;
}

.offer-more-btn:hover{
  background:#c40000 !important;
  transform:translateY(-2px) !important;
}

/* ---------- PRODUCT PAGE FIXES ---------- */

.product-page .price-box strong{
  font-size:62px !important;
}

.product-page .cta-row{
  margin-bottom:18px !important;
  gap:12px !important;
}

.product-page .info-strip{
  grid-template-columns:repeat(3,1fr) !important;
}

.product-page .info-card{
  min-height:135px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  align-items:center !important;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:900px){

  .home-offer{
    padding:65px 18px !important;
  }

  .home-offer-wrap{
    grid-template-columns:1fr !important;
    gap:35px !important;
  }

  .home-offer-image img{
    width:100% !important;
    max-width:520px !important;
  }

  .home-offer-content h2{
    font-size:38px !important;
  }

  .offer-price-box strong,
  .product-page .price-box strong{
    font-size:60px !important;
  }

  .offer-features{
    grid-template-columns:1fr !important;
  }

  .product-page .info-strip{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:520px){

  .home-offer-content h2{
    font-size:32px !important;
  }

  .home-offer-content h3{
    font-size:21px !important;
  }

  .offer-price-box{
    max-width:100% !important;
  }

  .offer-price-box strong,
  .product-page .price-box strong{
    font-size:54px !important;
  }

  .offer-contact .offer-btn,
  .home-offer .offer-btn,
  .offer-more-btn{
    width:100% !important;
    text-align:center !important;
    margin-right:0 !important;
  }
}
/* PARTNER LOGOS */

.partner-logos{
  background:#fff;
  padding:90px 20px;
  text-align:center;
}

.partner-logos h2{
  font-size:2.4rem;
  margin-bottom:15px;
  color:#111;
}

.partner-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
  align-items:center;
}

.partner-item{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:30px 20px;
  transition:0.3s;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);

  display:flex;
  align-items:center;
  justify-content:center;

  min-height:140px;
}

.partner-item:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  border-color:#c40000;
}

.partner-item img{
  width:100%;
  max-width:160px;
  max-height:60px;
  object-fit:contain;
  transition:0.3s;
}

.partner-item:hover img{
  transform:scale(1.05);
}

@media(max-width:900px){

  .partner-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:520px){

  .partner-grid{
    grid-template-columns:1fr;
  }

}
/* FIX PARTNER LOGOS FINAL */

.partner-logos .partner-grid{
  display:grid !important;
  grid-template-columns:repeat(5, 1fr) !important;
  gap:25px !important;
  align-items:center !important;
}

.partner-logos .partner-item{
  height:140px !important;
  overflow:hidden !important;
  background:#fff !important;
  border:1px solid #eee !important;
  border-radius:16px !important;
  padding:25px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-shadow:0 8px 25px rgba(0,0,0,0.05) !important;
}

.partner-logos .partner-item img{
  display:block !important;
  width:auto !important;
  height:auto !important;
  max-width:150px !important;
  max-height:65px !important;
  object-fit:contain !important;
}

@media(max-width:900px){
  .partner-logos .partner-grid{
    grid-template-columns:repeat(2, 1fr) !important;
  }
}

@media(max-width:520px){
  .partner-logos .partner-grid{
    grid-template-columns:1fr !important;
  }
}