/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --header-overlay-offset: 0px;
}

body {
  margin: 0;
  font-family: Averta, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== Topbar ===== */
.topbar {
  position: relative;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
  overflow: hidden;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  position: relative;
  min-height: 2em;
  display: flex;
  align-items: center;
}

.topbar-text {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 200px);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.topbar-right {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  white-space: nowrap;
}

.topbar-phone-label {
  color: #fff;
  font-weight: 500;
}

.topbar-phone-number {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.topbar-phone-number:hover {
  text-decoration: underline;
}

/* Topbar rotating (μόνο mobile) */
.topbar-rotating {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.topbar-rotating-item {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.topbar-rotating-item.active {
  display: flex;
}

.topbar-rotating-item--phone .topbar-phone-number {
  color: #fff;
  font-weight: 700;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

/* Αρχική: διάφανο header πάνω στο hero video */
.header.header-overlay {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.header.header-overlay .nav-link,
.header.header-overlay .nav-link-dropdown,
.header.header-overlay .icon-btn,
.header.header-overlay .header-hamburger {
  color: #fff;
}

.header.header-overlay .logo-img {
  filter: brightness(0) invert(1);
}

.header.header-overlay.scrolled {
  background: #fff;
  border-bottom-color: #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.header.header-overlay.scrolled .nav-link,
.header.header-overlay.scrolled .nav-link-dropdown,
.header.header-overlay.scrolled .icon-btn,
.header.header-overlay.scrolled .header-hamburger {
  color: #1a1a1a;
}

.header.header-overlay.scrolled .logo-img {
  filter: none;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: Averta, Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-start;
  order: -1;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #666;
}

.nav-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.dropdown-arrow {
  transition: transform 0.2s;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  margin-top: 4px;
  border-radius: 4px;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1a1a;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown-sub {
  padding: 8px 20px 4px;
  border-top: 1px solid #eee;
  margin-top: 4px;
}

.dropdown-sub-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 6px;
}

.dropdown-sub a {
  padding: 6px 0 6px 8px;
}

/* ===== Mega menu (Ρούχα) – full width, άσπρο, καλύπτει όλη την οθόνη ===== */
.nav-dropdown--mega .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  min-height: 50vh;
  background: #ffffff;
  border-top: 1px solid #eee;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-dropdown--mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* Κάλυψη μόνο κάτω από το header – το header μένει πάνω και ορατό */
.nav-dropdown--mega.open .mega-menu {
  position: fixed;
  top: 115px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: calc(100vh - 115px);
  z-index: 200;
}

/* Νέο mega menu (2 στήλες) – συμπαγές popup όπως στη 2η εικόνα */
.nav-dropdown--mega.open .mega-menu.mega-menu--two {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  bottom: auto;
  width: auto;
  min-width: 320px;
  min-height: 0;
  margin-top: 4px;
  border-radius: 4px;
  border: 1px solid #eee;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.nav-dropdown--mega.open .mega-menu.mega-menu--two .mega-menu-inner {
  max-width: none;
}

.mega-menu-columns--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  padding: 24px 32px 28px;
}

.mega-menu-columns--two:has(.mega-menu-col:only-child) {
  grid-template-columns: 1fr;
}

.mega-menu-columns--two .mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega-menu-columns--two .mega-menu-col .mega-menu-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.mega-menu-columns--two .mega-menu-col > a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #444;
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.4;
  text-transform: uppercase;
}

.mega-menu-columns--two .mega-menu-col > a:hover {
  color: #1a1a1a;
}

.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.mega-menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 48px;
  padding: 40px 56px 48px;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
}

.mega-menu-block {
  margin-bottom: 28px;
}

.mega-menu-block:last-child {
  margin-bottom: 0;
}

.mega-menu-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}

.mega-menu-block a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #444;
  transition: color 0.15s;
  line-height: 1.4;
}

.mega-menu-block a:hover {
  color: #1a1a1a;
}

.mega-menu-block--links {
  margin-top: 12px;
  margin-bottom: 28px;
}

.mega-menu-cat-link {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: #1a1a1a !important;
  padding: 8px 0 !important;
}

.mega-menu-cat-link:hover {
  color: #333 !important;
}

@media (max-width: 1024px) {
  .mega-menu-columns {
    gap: 28px 32px;
    padding: 28px 32px 36px 40px;
  }
  .mega-menu-inner {
    min-height: auto;
  }
}

/* Header actions (εικονίδια) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
  order: 1;
}

@media (min-width: 1025px) {
  .header-inner {
    position: relative;
    max-width: none;
    width: 100%;
    padding-left: 12px;
    padding-right: 24px;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
  }

  .nav-center {
    order: 0;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    min-width: 0;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-actions {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1a1a1a;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: #666;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #e91e8c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-btn {
  position: relative;
}

.wishlist-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: #e91e8c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-badge[data-count="0"] {
  display: none !important;
}

/* ===== Hero full-screen video ===== */
.hero-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.has-overlay-header .hero-video-section {
  margin-top: calc(-1 * var(--header-overlay-offset));
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 400px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.25);
}

.hero-video-title {
  margin: 0 0 12px;
  font-family: Averta, Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-video-subtitle {
  margin: 0 0 24px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-video-cta {
  display: inline-block;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  background: #1a1a1a;
  border: 2px solid #fff;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.hero-video-cta:hover {
  background: #fff;
  color: #1a1a1a;
}

/* ===== Main content placeholder ===== */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

.products-placeholder {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.products-placeholder h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 600;
}

.products-placeholder p {
  margin: 0;
  color: #666;
}

/* ===== Νέες Αφίξεις & κατηγορίες – grid προϊόντων (λίγο πιο μεγάλα cards) ===== */
.products-section {
  padding: 0 0 48px;
}

.products-section-title {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px 24px;
}

.products-section-empty {
  text-align: center;
  color: #666;
  margin: 24px 0 0;
  display: none;
}

.products-section:not(:has(.product-card)) .products-section-empty {
  display: block;
}

/* ===== Σελίδες κατηγοριών: toolbar ΦΙΛΤΡΑ / ΤΑΞΙΝΟΜΗΣΗ / ΠΡΟΪΟΝΤΑ / view ===== */
.category-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 24px;
}

.category-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  background: none;
  border: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  cursor: pointer;
}

.category-filter-toggle svg {
  flex-shrink: 0;
}

.category-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-sort-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.category-sort-select {
  padding: 6px 28px 6px 10px;
  font-size: 0.875rem;
  color: #1a1a1a;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 8px center;
  appearance: none;
  cursor: pointer;
}

.category-toolbar-spacer {
  flex: 1;
  min-width: 16px;
}

.category-product-count {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.category-view-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.category-view-btn {
  padding: 8px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  border-radius: 4px;
}

.category-view-btn:hover {
  color: #666;
}

.category-view-btn.active {
  color: #1a1a1a;
}

.category-filters-inline {
  display: none;
  padding: 20px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.category-filters-inline[aria-hidden="false"] {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.category-filters-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.category-filters-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
}

.category-filters-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  border-radius: 4px;
}

.category-filters-close:hover {
  background: #f0f0f0;
  color: #000;
}

.category-filters-inline .category-filter-group {
  min-width: 180px;
}

.category-filter-group {
  border-bottom: 1px solid #e5e5e5;
}

.category-filter-group:last-child {
  border-bottom: none;
}

.category-filter-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
}

.category-filter-plus {
  font-size: 1.125rem;
  font-weight: 400;
  color: #1a1a1a;
}

.category-filter-group.open .category-filter-plus {
  transform: rotate(45deg);
}

.category-filter-options {
  display: none;
  padding-bottom: 16px;
}

.category-filter-group.open .category-filter-options {
  display: block;
}

.category-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: #333;
}

.category-filter-option input {
  width: 16px;
  height: 16px;
  accent-color: #1a1a1a;
  cursor: pointer;
}

.category-filter-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.category-grid-wrap {
  width: 100%;
}

.products-grid.products-grid--list {
  grid-template-columns: 1fr;
}

.products-grid.products-grid--list .product-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  text-align: left;
  align-items: center;
}

.products-grid.products-grid--list .product-card-image {
  aspect-ratio: 1;
}

.products-grid.products-grid--list .product-card-footer {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .category-toolbar {
    padding: 12px 0;
    gap: 12px;
  }
  .category-sort-label {
    display: none;
  }
  .category-filters-inline {
    flex-direction: column;
  }
  .category-filters-inline .category-filter-group {
    min-width: 0;
  }
}

/* Product card (όπως η εικόνα: εικόνα, τιμή, όνομα, καρδιά) – λίγο πιο μεγάλο */
.product-card {
  display: block;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.product-card:hover {
  opacity: 0.92;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f5f5f5;
  border-radius: 0;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-card-no-img {
  color: #999;
  font-size: 14px;
}

.product-card-price {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.product-card-price .price-old {
  color: #999;
  font-size: 13px;
  text-decoration: line-through;
}

.product-card-price .price-sale {
  color: #e91e8c;
  font-weight: 700;
}

.product-card-title {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-card-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #999;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.product-card-wishlist:hover,
.product-card-wishlist.active {
  color: #e91e8c;
}

.product-card-wishlist svg {
  width: 20px;
  height: 20px;
}

.product-card-add {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #e91e8c;
  background: #fff;
  border: 1px solid #e91e8c;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.product-card-add:hover {
  background: #e91e8c;
  color: #fff;
}

.page-content {
  max-width: 720px;
}

.page-title {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
}

.page-lead {
  margin: 0 0 24px;
  font-size: 1rem;
  color: #666;
}

.page-body p {
  margin: 0 0 16px;
  line-height: 1.65;
  color: #333;
}

.page-body p:last-child {
  margin-bottom: 0;
}

.page-body h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.page-body h3:first-child {
  margin-top: 0;
}

.page-body h4 {
  margin: 20px 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Πολιτική επιστροφών – full width, στίξη όπως στο mockup */
.page-content--returns {
  max-width: none;
  width: 100%;
}

.page-content--returns .page-title {
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
}

.page-content--returns .page-body p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #333;
}

.page-content--returns .page-body p:last-child {
  margin-bottom: 0;
}

.page-content--returns .page-body h3 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.page-content--returns .page-body h3:first-of-type {
  margin-top: 24px;
}

.page-content--returns .page-body h4 {
  margin: 24px 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.page-content--returns .page-body strong {
  font-weight: 700;
  color: #1a1a1a;
}

.page-body a {
  color: #1a1a1a;
  text-decoration: underline;
}

.page-body a:hover {
  color: #666;
}

/* Σχετικά με εμάς – layout δύο στηλών (κείμενο αριστερά, εικόνα δεξιά full height) */
.page-content--about {
  max-width: none;
  width: 100%;
  padding: 0;
}

.about-block {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 420px;
}

.about-text {
  padding: 40px 48px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text.page-body {
  max-width: none;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.75;
  color: #333;
  font-size: 0.9875rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  min-height: 360px;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .about-text {
    padding: 24px 0 32px;
    order: 2;
  }

  .about-image-wrap {
    order: 1;
    min-height: 320px;
    max-height: 420px;
  }

  .about-image {
    min-height: 320px;
    max-height: 420px;
  }
}

/* Κεντραρισμένο περιεχόμενο (π.χ. Ωράριο) */
.page-content--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-content--centered .page-title,
.page-content--centered .page-lead,
.page-content--centered .page-body,
.page-content--centered .page-body p {
  text-align: center;
}

/* ===== Contact form (Επικοινωνία) ===== */
.page-content--contact {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-content--contact .page-title,
.page-content--contact .page-lead {
  text-align: center;
}

.page-content--contact .contact-form {
  text-align: left;
}

.contact-form {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 32px;
  margin: 0 auto;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-group {
  display: block;
}

.contact-form-group--full {
  margin-bottom: 20px;
}

.contact-form-group--full:last-of-type {
  margin-bottom: 16px;
}

.contact-form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
}

.contact-form-label em {
  color: #c00;
  font-style: normal;
}

.contact-form-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #1a1a1a;
  background: #fff;
  box-sizing: border-box;
}

.contact-form-input:focus {
  outline: none;
  border-color: #1a1a1a;
}

.contact-form-input::placeholder {
  color: #999;
}

.contact-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.contact-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-note {
  margin: 0 0 20px;
  font-size: 0.875rem;
  color: #666;
  text-align: right;
}

.contact-form-submit {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1a1a1a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form-submit:hover {
  background: #333;
}

.contact-form-submit:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .contact-form {
    padding: 20px 16px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== Τετράγωνες καρτέλες κατηγοριών (εικόνα + κείμενο με υπογράμμιση) ===== */
.category-squares {
  background: #fff;
  padding: 48px 24px 56px;
}

.category-squares-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.category-square {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  background: #e0e0e0;
  padding: 24px 28px;
}

.category-square-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.category-square:hover .category-square-bg {
  transform: scale(1.05);
}

.category-square-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
  color: #1a1a1a;
  background: #fff;
  padding: 12px 20px;
}

.category-square::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

@media (max-width: 640px) {
  .category-squares-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .category-squares {
    padding: 24px 16px 40px;
  }
  .category-square {
    aspect-ratio: 3 / 4;
    padding: 20px 24px;
  }
}

/* ===== Insta looks section ===== */
.insta-section {
  background: #fff;
  padding: 48px 24px 56px;
}

.insta-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.insta-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.insta-hashtag {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 32px;
}

.insta-gallery {
  overflow: hidden;
  margin: 0 0 32px;
}

.insta-gallery-track {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.insta-card {
  display: block;
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.insta-card:hover img {
  transform: scale(1.05);
}

.insta-cta {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.insta-cta:hover {
  background: #333;
}

.insta-cta:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .insta-section {
    padding: 32px 16px 40px;
  }
  .insta-gallery-track {
    gap: 12px;
  }
  .insta-card {
    width: clamp(70px, 22vw, 140px);
  }
}

/* ===== Benefits bar (πάνω από το footer) ===== */
.benefits-bar {
  background: #fff;
  padding: 48px 24px 56px;
  border-top: 1px solid #eee;
}

.benefits-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.benefits-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefits-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
  color: #444;
  margin-bottom: 16px;
}

.benefits-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.benefits-desc {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .benefits-bar-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== Newsletter (πάνω από το footer) ===== */
.newsletter-bar {
  background: #fff;
  padding: 40px 24px 48px;
  border-top: 1px solid #eee;
}

.newsletter-bar-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-text {
  margin: 0 0 24px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.newsletter-form .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  padding: 12px 0 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: #888;
}

.newsletter-input:focus {
  border-bottom-color: #1a1a1a;
}

.newsletter-input-underline {
  display: none;
}

.newsletter-submit {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: #1a1a1a;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-submit:hover {
  background: #333;
}

.newsletter-submit:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-input {
    max-width: none;
  }
}

/* ===== Footer ===== */
.footer {
  margin-top: auto;
}

.footer-top {
  background: #f5f5f5;
  padding: 48px 0 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.footer-col h3 {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

.footer-col p,
.footer-col a {
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col--social .footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: #d81b60;
  transition: color 0.2s ease;
  margin: 0;
}

.footer-social-link:hover {
  color: #ad1457;
  text-decoration: none;
}

.footer-bottom {
  background: #333;
  color: #fff;
  padding: 16px 0;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom .copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.back-to-top {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  transition: opacity 0.2s;
}

.back-to-top:hover {
  opacity: 0.85;
}

.footer-bottom .credits {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

/* ===== Search overlay (pop-up) – full screen ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: #fff;
  cursor: pointer;
}

.search-overlay-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.search-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.search-overlay-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.search-overlay-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e91e8c;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.search-overlay-close:hover {
  opacity: 0.85;
}

.search-overlay-close-x {
  font-size: 1.4rem;
  line-height: 1;
}

.search-overlay-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.search-overlay-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.search-overlay-input {
  flex: 1;
  padding: 12px 0;
  font-size: 16px;
  font-family: inherit;
  color: #1a1a1a;
  background: none;
  border: none;
  outline: none;
}

.search-overlay-input::placeholder {
  color: #999;
}

.search-overlay-input-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #e91e8c;
  border-radius: 1px;
}

.search-overlay-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-overlay-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.search-overlay-icon-btn:hover {
  color: #e91e8c;
  background: #fdf2f8;
}

.search-overlay-categories {
  margin-bottom: 24px;
}

.search-overlay-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #888;
}

.search-overlay-cat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.search-cat-link {
  font-size: 14px;
  color: #1a1a1a;
  transition: color 0.2s;
}

.search-cat-link:hover {
  color: #e91e8c;
}

.search-overlay-results {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

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

.search-results-empty {
  margin: 0;
  font-size: 14px;
  color: #999;
  text-align: center;
  padding: 20px 0;
}

.search-overlay-results.has-results .search-results-empty {
  display: none;
}

.search-overlay-results:not(.has-results) .search-results-grid {
  display: none;
}

/* Product card inside search results */
.search-product-card {
  display: block;
  text-align: center;
  color: inherit;
  transition: opacity 0.2s;
}

.search-product-card:hover {
  opacity: 0.9;
}

.search-product-card-image {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  border-radius: 0;
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.search-product-card-price {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.search-product-card-price .price-old {
  color: #999;
  font-size: 12px;
  text-decoration: line-through;
}

.search-product-card-price .price-sale {
  color: #e91e8c;
  font-weight: 700;
}

.search-product-card-title {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.search-product-card-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #999;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.search-product-card-wishlist:hover,
.search-product-card-wishlist.active {
  color: #e91e8c;
}

.search-product-card-wishlist svg {
  width: 18px;
  height: 18px;
}

.search-product-card-add {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #e91e8c;
  background: #fff;
  border: 1px solid #e91e8c;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.search-product-card-add:hover {
  background: #e91e8c;
  color: #fff;
}

/* ===== Mobile header & slide-in menu ===== */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
}

.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}


.header-icon-phone {
  display: none;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.mobile-menu[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

/* Κρύψιμο κύριου header όταν το menu είναι ανοιχτό (χωρίς duplicate icons) */
body.mobile-menu-open .header {
  visibility: hidden;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu[aria-hidden="false"] .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
}

.mobile-menu-logo {
  font-family: Averta, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.mobile-menu-logo .logo-img {
  height: 32px;
  width: auto;
}

.mobile-menu-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-menu-icons .icon-btn {
  width: 40px;
  height: 40px;
}

.mobile-menu-nav {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-menu-link:hover {
  background: #f5f5f5;
}

.mobile-menu-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.mobile-menu-link--sale {
  color: #c41e3a;
  font-weight: 600;
}

/* Mobile menu – Προϊόντα dropdown */
.mobile-menu-dropdown {
  border: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-dropdown-toggle {
  cursor: pointer;
  font-family: inherit;
}

.mobile-menu-chevron {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.mobile-menu-dropdown.open .mobile-menu-chevron {
  transform: rotate(180deg);
}

.mobile-menu-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #f9f9f9;
}

.mobile-menu-dropdown.open .mobile-menu-dropdown-content {
  max-height: 500px;
}

.mobile-menu-dropdown-content[aria-hidden="false"] {
  max-height: 500px;
}

.mobile-menu-sublink {
  display: block;
  padding: 10px 20px 10px 28px;
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-menu-sublink:hover {
  background: #eee;
}

.mobile-menu-subtitle {
  display: block;
  padding: 12px 20px 4px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #888;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-hamburger {
    display: flex;
    order: -1;
    margin-right: 2px;
  }

  .logo {
    order: 0;
    flex: 0 0 auto;
    padding-left: 0;
    margin-right: 8px;
  }

  .nav-center {
    display: none;
  }

  .header-actions {
    order: 1;
    flex: 0 0 auto;
    gap: 2px;
    margin-left: auto;
  }

  .header-actions .icon-btn {
    width: 32px;
    height: 32px;
  }

  .header-actions .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .header-actions .cart-badge,
  .header-actions .wishlist-badge {
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    font-size: 10px;
    top: 0;
    right: 0;
  }

  .header-icon-phone {
    display: flex;
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 12px;
    gap: 0;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .topbar-text,
  .topbar-right {
    display: none !important;
  }

  .topbar-rotating {
    display: block;
    width: calc(100% - 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 4px;
    box-sizing: content-box;
    white-space: nowrap;
  }

  .topbar-rotating-item {
    padding: 0 8px;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 0.01em;
  }

  .hero-video-wrap {
    min-height: 100svh;
  }

  .hero-video-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 16px;
  }

  .hero-video-title {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.3);
  }

  .hero-video-subtitle {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 0, 0, 0.25);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }
}

/* ===== Cookie consent banner (κάτω της οθόνης) ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #f2f2f2;
  border-top: 1px solid #e0e0e0;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 24px 24px;
  max-width: 100%;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.cookie-banner-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #444;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.cookie-banner-reject {
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: underline;
  background: none;
  padding: 0;
  cursor: pointer;
}

.cookie-banner-reject:hover {
  color: #333;
}

.cookie-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #2c2c2c;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.cookie-banner-btn:hover {
  background: #1a1a1a;
}

.cookie-banner-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Cookie settings modal (όταν πατάς Ρυθμίσεις cookie) */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.cookie-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cookie-modal-header {
  padding: 24px 24px 0;
  position: relative;
}

.cookie-modal-title {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.cookie-modal-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555;
  padding-right: 32px;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #666;
  cursor: pointer;
  border-radius: 6px;
  padding: 0;
}

.cookie-modal-close:hover {
  background: #f0f0f0;
  color: #1a1a1a;
}

.cookie-modal-close svg {
  width: 18px;
  height: 18px;
}

.cookie-modal-list {
  padding: 16px 24px;
  overflow-y: auto;
}

.cookie-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

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

.cookie-modal-row-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
}

.cookie-modal-row-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-modal-row-locked {
  font-size: 0.75rem;
  color: #888;
}

.cookie-modal-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #ccc;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cookie-modal-toggle[aria-pressed="true"] {
  background: #2c2c2c;
}

.cookie-modal-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.cookie-modal-toggle[aria-pressed="true"]::after {
  transform: translateX(20px);
}

.cookie-modal-actions {
  padding: 20px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eee;
}

.cookie-modal-reject {
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: underline;
  background: none;
  padding: 0;
  border: none;
  cursor: pointer;
}

.cookie-modal-reject:hover {
  color: #333;
}

.cookie-modal-btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #2c2c2c;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-modal-btn:hover {
  background: #1a1a1a;
}
