/*
Theme Name:   Novum Optical – Your Voucher Partner
Theme URI:    https://novumoptical.gr
Author:       Novum Optical
Author URI:   https://novumoptical.gr
Description:  Landing page theme for Novum Optical – ΕΟΠΥΥ voucher partner stores across Greece.
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  novum-optical
Tags:         one-page, custom-menu, translation-ready
*/

/* ========================================================================
   0. CSS CUSTOM PROPERTIES
   ======================================================================== */
:root {
  --primary: #2E2E2E;
  --primary-fg: #ffffff;
  --foreground: #262626;
  --muted-fg: #737373;
  --background: #ffffff;
  --warm-gray: #f6f5f4;
  --secondary: #f5f5f5;
  --border: #e5e5e5;
  --card: #ffffff;
  --ring: #2E2E2E;
  --charcoal-light: #4D4D4D;
  --radius: 0.5rem;
  --container: 1200px;
  /* Fixed header: sync with .novum-navbar .container min-height */
  --novum-navbar-h: 5rem;
}

/* ========================================================================
   1. RESET & BASE
   ======================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* WP sets --wp-admin--admin-bar--height when the toolbar is shown (32px / 46px). */
  scroll-padding-top: calc(
    var(--wp-admin--admin-bar--height, 0px) + var(--novum-navbar-h) + 0.75rem
  );
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

button,
input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ========================================================================
   2. UTILITY CLASSES
   ======================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.heading-display {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.body-text {
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
}

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

/* Inner pages: clear fixed navbar (admin bar offset is handled by WP on html + navbar top). */
.novum-main--padded {
  padding-top: calc(var(--novum-navbar-h) + 2.75rem);
  padding-bottom: 4rem;
  min-height: 60vh;
}

/* ========================================================================
   3. NAVBAR
   ======================================================================== */
.novum-navbar {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--primary);
  color: var(--primary-fg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.novum-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--novum-navbar-h);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.novum-navbar__logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.novum-navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.novum-navbar__links > li {
  position: relative;
}

.novum-navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.novum-navbar__links a:hover {
  color: var(--primary-fg);
}

.novum-navbar__cta {
  display: none;
  padding: 0.625rem 1.5rem;
  background: var(--primary-fg);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s;
}

.novum-navbar__cta:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Mobile toggle */
.novum-navbar__toggle {
  display: flex;
  color: var(--primary-fg);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.novum-navbar__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.novum-navbar__mobile {
  display: none;
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1.5rem 1.5rem;
}

.novum-navbar__mobile.is-open {
  display: block;
}

.novum-navbar__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.novum-navbar__mobile-menu .novum-navbar__submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.novum-navbar__mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.novum-navbar__mobile a:hover {
  color: var(--primary-fg);
}

.novum-navbar__mobile-cta {
  display: block;
  margin-top: 1rem;
  text-align: center;
  padding: 0.625rem 1.5rem;
  background: var(--primary-fg);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s;
}

.novum-navbar__mobile-cta:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .novum-navbar__links {
    display: flex;
  }

  .novum-navbar__links .novum-navbar__submenu {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 12rem;
    padding: 0.5rem 0;
    margin: 0;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    z-index: 60;
  }

  .novum-navbar__links .novum-navbar__submenu a {
    display: block;
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
  }

  .novum-navbar__links > li:hover > .novum-navbar__submenu,
  .novum-navbar__links > li:focus-within > .novum-navbar__submenu {
    display: block;
  }

  .novum-navbar__cta {
    display: inline-flex;
  }
  .novum-navbar__toggle {
    display: none;
  }
}

/* ========================================================================
   4. HERO SECTION
   ======================================================================== */
.novum-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--novum-navbar-h);
  overflow: hidden;
}

.novum-hero__bg {
  position: absolute;
  inset: 0;
}

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

.novum-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(46, 46, 46, 0.9), rgba(46, 46, 46, 0.7), rgba(46, 46, 46, 0.4));
}

.novum-hero .container {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.novum-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.novum-hero__content {
  order: 2;
  max-width: 42rem;
  flex: 1;
}

.novum-hero__content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-fg);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.novum-hero__content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  line-height: 1.75;
}

.novum-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.novum-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--primary-fg);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 2px;
  transition: background 0.2s;
}

.novum-hero__btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.novum-hero__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 2px;
  transition: background 0.2s;
}

.novum-hero__btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.novum-hero__badge {
  order: 1;
  background: var(--primary-fg);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.novum-hero__badge img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.novum-hero__badge p {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .novum-hero__buttons {
    flex-direction: row;
  }
  .novum-hero__badge {
    max-width: none;
    width: auto;
  }
}

@media (min-width: 768px) {
  .novum-hero__content h1 {
    font-size: 3rem;
  }
  .novum-hero__content p {
    font-size: 1.25rem;
  }
  .novum-hero__badge img {
    max-width: 240px;
  }
  .novum-hero__badge p {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .novum-hero__inner {
    flex-direction: row;
    align-items: center;
  }
  .novum-hero__content {
    order: 1;
  }
  .novum-hero__badge {
    order: 2;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
    min-width: 280px;
  }
  .novum-hero__content h1 {
    font-size: 3.75rem;
  }
}

/* ========================================================================
   5. STORES SECTION
   ======================================================================== */
.novum-stores {
  padding: 6rem 0;
  background: var(--warm-gray);
}

.novum-stores__header {
  text-align: center;
  margin-bottom: 4rem;
}

.novum-stores__header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.novum-stores__header p {
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.75;
}

.novum-stores__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.novum-stores__card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.novum-stores__card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.novum-stores__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.novum-stores__card-info {
  margin-bottom: 1.5rem;
}

.novum-stores__card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}

.novum-stores__card-row:last-child {
  margin-bottom: 0;
}

.novum-stores__card-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.novum-stores__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.novum-stores__card-btn:hover {
  background: var(--primary);
  color: var(--primary-fg);
}

.novum-stores__footer {
  text-align: center;
  color: var(--muted-fg);
}

.novum-stores__footer strong {
  color: var(--foreground);
  font-weight: 600;
}

@media (min-width: 768px) {
  .novum-stores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .novum-stores__header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .novum-stores__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .novum-stores__header h2 {
    font-size: 3rem;
  }
}

/* ========================================================================
   6. VOUCHER SECTION
   ======================================================================== */
.novum-voucher {
  padding: 6rem 0;
  background: var(--background);
}

.novum-voucher__header {
  text-align: center;
  margin-bottom: 4rem;
}

.novum-voucher__header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.novum-voucher__steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.novum-voucher__step {
  text-align: center;
}

.novum-voucher__step-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.novum-voucher__step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--foreground);
}

.novum-voucher__step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.novum-voucher__step p {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.novum-voucher__callout {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.novum-voucher__callout p {
  font-size: 1.125rem;
  font-weight: 500;
}

.novum-voucher__callout strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .novum-voucher__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .novum-voucher__header h2 {
    font-size: 2.25rem;
  }
  .novum-voucher__callout p {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .novum-voucher__header h2 {
    font-size: 3rem;
  }
}

/* ========================================================================
   7. WHY US SECTION
   ======================================================================== */
.novum-whyus {
  padding: 6rem 0;
  background: var(--warm-gray);
}

.novum-whyus h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 4rem;
}

.novum-whyus__grid {
  display: grid;
  gap: 1.5rem;
}

.novum-whyus__card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.novum-whyus__card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.novum-whyus__card-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.novum-whyus__card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--foreground);
}

.novum-whyus__card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .novum-whyus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .novum-whyus h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .novum-whyus__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .novum-whyus h2 {
    font-size: 3rem;
  }
}

/* ========================================================================
   8. STORE LOCATOR
   ======================================================================== */
.novum-locator {
  padding: 6rem 0;
  background: var(--background);
}

.novum-locator__header {
  text-align: center;
  margin-bottom: 3rem;
}

.novum-locator__header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.novum-locator__search {
  max-width: 28rem;
  margin: 0 auto 3rem;
  position: relative;
}

.novum-locator__search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-fg);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.novum-locator__search input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: box-shadow 0.2s;
}

.novum-locator__search input::placeholder {
  color: var(--muted-fg);
}

.novum-locator__search input:focus {
  box-shadow: 0 0 0 2px var(--ring);
}

.novum-locator__grid {
  display: grid;
  gap: 1.5rem;
}

.novum-locator__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.novum-locator__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.novum-locator__card-info {
  margin-bottom: 1.5rem;
}

.novum-locator__card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 0.75rem;
}

.novum-locator__card-row:last-child {
  margin-bottom: 0;
}

.novum-locator__card-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.novum-locator__hours-wrap {
  flex: 1;
  min-width: 0;
}

.novum-locator__hours {
  margin: 0;
  padding-left: 1rem;
  list-style: disc;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted-fg);
}

.novum-locator__hours li {
  margin-bottom: 0.2rem;
}

.novum-locator__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s;
}

a.novum-locator__card-btn:visited {
  color: var(--primary-fg);
}

.novum-locator__card-btn:hover {
  background: var(--charcoal-light);
}

.novum-locator__empty {
  text-align: center;
  color: var(--muted-fg);
  margin-top: 2rem;
  display: none;
}

@media (min-width: 768px) {
  .novum-locator__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .novum-locator__header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .novum-locator__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .novum-locator__header h2 {
    font-size: 3rem;
  }
}

/* ========================================================================
   9. FAQ SECTION
   ======================================================================== */
.novum-faq {
  padding: 6rem 0;
  background: var(--warm-gray);
}

.novum-faq h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 4rem;
}

.novum-faq__list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.novum-faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.novum-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.novum-faq__question::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--foreground);
  border-bottom: 2px solid var(--foreground);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}

.novum-faq__item.is-open .novum-faq__question::after {
  transform: rotate(-135deg);
}

.novum-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.novum-faq__item.is-open .novum-faq__answer {
  max-height: 300px;
}

.novum-faq__answer p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.75;
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .novum-faq h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .novum-faq h2 {
    font-size: 3rem;
  }
}

/* ========================================================================
   10. FOOTER
   ======================================================================== */
.novum-footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 4rem 0;
}

.novum-footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.novum-footer__logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.novum-footer__about {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.novum-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.novum-footer__links li {
  margin-bottom: 0.5rem;
}

.novum-footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.novum-footer__links a:hover {
  color: var(--primary-fg);
}

.novum-footer__contact li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.novum-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.novum-footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .novum-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================================================
   10a. SINGLE PORTFOLIO (κατάστημα)
   ======================================================================== */
.novum-portfolio-page {
  min-height: 50vh;
}

.novum-portfolio__hero {
  position: relative;
  padding: calc(var(--novum-navbar-h) + 2.25rem) 0 2.75rem;
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    #252525 42%,
    var(--charcoal-light) 100%
  );
  color: var(--primary-fg);
  overflow: hidden;
}

.novum-portfolio__hero-inner {
  position: relative;
  z-index: 1;
}

.novum-portfolio__crumb {
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
}

.novum-portfolio__crumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.novum-portfolio__crumb a:hover {
  color: #fff;
}

.novum-portfolio__crumb-sep {
  margin: 0 0.5rem;
  opacity: 0.45;
}

.novum-portfolio__region {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.novum-portfolio__body {
  background: var(--warm-gray);
  padding: 2.5rem 0 4rem;
}

.novum-portfolio__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .novum-portfolio__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }
}

.novum-portfolio__figure {
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(46, 46, 46, 0.12);
  border: 1px solid var(--border);
  background: var(--card);
}

.novum-portfolio__figure--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  color: rgba(46, 46, 46, 0.2);
  background: linear-gradient(160deg, var(--card) 0%, var(--secondary) 100%);
}

.novum-portfolio__figure--top {
  margin-bottom: 2rem;
  max-height: 28rem;
}

.novum-portfolio__figure--top img {
  width: 100%;
  height: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.novum-portfolio__cover {
  display: block;
  width: 100%;
  height: auto;
}

.novum-portfolio__map {
  position: relative;
  width: 100%;
  margin-top: 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(46, 46, 46, 0.1);
  border: 1px solid var(--border);
  background: var(--card);
  aspect-ratio: 16 / 10;
  max-height: 28rem;
}

.novum-portfolio__map--fallback {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.novum-portfolio__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.novum-portfolio__panels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.novum-portfolio__panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 4px 20px rgba(46, 46, 46, 0.05);
}

.novum-portfolio__panel-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 0.65rem;
}

.novum-portfolio__panel-title svg {
  flex-shrink: 0;
  color: var(--foreground);
  opacity: 0.85;
}

.novum-portfolio__panel-text {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--foreground);
  margin: 0;
}

.novum-portfolio__muted {
  color: var(--muted-fg);
  font-weight: 500;
}

.novum-portfolio__phone-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.novum-portfolio__phone-link:hover {
  color: var(--charcoal-light);
  border-bottom-color: var(--charcoal-light);
}

.novum-portfolio__panel--hours .novum-portfolio__panel-title {
  margin-bottom: 0.85rem;
}

.novum-portfolio__hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.novum-portfolio__hours li {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--muted-fg);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.novum-portfolio__hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.novum-portfolio__fallback {
  max-width: 44rem;
  margin: 0 auto;
}

.novum-portfolio__article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.75rem 2.5rem;
  box-shadow: 0 12px 40px rgba(46, 46, 46, 0.06);
}

.novum-portfolio__fallback-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.novum-portfolio__prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--foreground);
}

.novum-portfolio__prose strong {
  font-weight: 600;
  color: var(--foreground);
}

.novum-portfolio__prose ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.novum-portfolio__prose ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--muted-fg);
}

.novum-portfolio__prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.55;
}

/* ========================================================================
   10b. ABOUT PAGE
   ======================================================================== */
.novum-about-page {
  min-height: 60vh;
}

/* Contact / stores page: hero matches about; single locator grid below intro */
.novum-contact-page__body {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.novum-contact-page__intro {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.novum-contact-page .novum-locator {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

/* ========================================================================
   10c. ΚΑΤΑΣΤΗΜΑΤΑ (stores) PAGE
   ======================================================================== */
.novum-stores-page__hero-tagline {
  max-width: 36rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.novum-stores-page__stats {
  position: relative;
  margin-top: -1.5rem;
  z-index: 2;
  padding: 0 1.5rem 2.5rem;
}

.novum-stores-page__stats-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .novum-stores-page__stats-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.novum-stores-page__stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 12px 40px rgba(46, 46, 46, 0.08);
  text-align: center;
  border-top: 3px solid var(--primary);
}

.novum-stores-page__stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.novum-stores-page__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-fg);
}

.novum-stores-page__intro-section {
  padding: 0 0 2.5rem;
  background: var(--background);
}

.novum-stores-page__intro-card {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: var(--warm-gray);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.novum-stores-page__intro-copy {
  color: var(--foreground);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.novum-stores-page__intro-copy > *:last-child {
  margin-bottom: 0;
}

/* Storefront photo grid (Καταστήματα page) */
.novum-store-gallery-wrap {
  --novum-gallery-accent: #c8102e;
  padding: 3rem 0 3.5rem;
  background: var(--background);
}

.novum-store-gallery-wrap__title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 600;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.novum-store-gallery-wrap__subtitle {
  text-align: center;
  color: var(--muted-fg);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.novum-store-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .novum-store-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .novum-store-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem 0.75rem;
  }
}

.novum-store-gallery__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.novum-store-gallery__visual {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.novum-store-gallery__deco-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(230, 230, 230, 0.5) 0%,
    rgba(245, 245, 245, 0.15) 50%,
    transparent 72%
  );
  z-index: 0;
}

.novum-store-gallery__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--card);
  box-shadow: 0 2px 16px rgba(46, 46, 46, 0.06);
  border: 2px solid var(--card);
  overflow: hidden;
  outline: 1px solid var(--border);
  outline-offset: -1px;
}

.novum-store-gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.novum-store-gallery__thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  background: linear-gradient(145deg, var(--warm-gray) 0%, var(--border) 100%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 600;
  color: var(--muted-fg);
  transition: transform 0.35s ease;
}

.novum-store-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 46, 46, 0);
  transition: background 0.25s ease;
  pointer-events: none;
}

.novum-store-gallery__accent-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: var(--novum-gallery-accent);
  transition: height 0.25s ease;
  pointer-events: none;
}

.novum-store-gallery__item:hover .novum-store-gallery__overlay,
.novum-store-gallery__item:focus-visible .novum-store-gallery__overlay {
  background: rgba(46, 46, 46, 0.35);
}

.novum-store-gallery__item:hover .novum-store-gallery__accent-bar,
.novum-store-gallery__item:focus-visible .novum-store-gallery__accent-bar {
  height: 5px;
}

.novum-store-gallery__item:hover .novum-store-gallery__thumb,
.novum-store-gallery__item:focus-visible .novum-store-gallery__thumb,
.novum-store-gallery__item:hover .novum-store-gallery__thumb-placeholder,
.novum-store-gallery__item:focus-visible .novum-store-gallery__thumb-placeholder {
  transform: scale(1.04);
}

.novum-store-gallery__item:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
  border-radius: 4px;
}

.novum-store-gallery__label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--foreground);
  max-width: none;
  width: 100%;
  margin: 0.375rem 0 0;
  padding: 0;
}

@media (min-width: 768px) {
  .novum-stores-page__stats {
    margin-top: -2.25rem;
    padding-bottom: 3rem;
  }
}

.novum-about__hero {
  position: relative;
  padding: calc(var(--novum-navbar-h) + 3rem) 0 3.25rem;
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    #252525 42%,
    var(--charcoal-light) 100%
  );
  color: var(--primary-fg);
  overflow: hidden;
}

.novum-about__hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: min(55vw, 28rem);
  height: 100%;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.novum-about__hero-inner {
  position: relative;
  z-index: 1;
}

.novum-about__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.novum-about__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--primary-fg);
}

.novum-about__body {
  background: var(--warm-gray);
  padding: 3rem 0 4.5rem;
}

.novum-about__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.novum-about__panel {
  background: var(--card);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(46, 46, 46, 0.06);
  padding: 2rem 1.75rem;
  position: relative;
}

.novum-about__panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--charcoal-light) 100%);
}

.novum-about__prose {
  padding-left: 1rem;
}

.novum-about__prose p {
  color: var(--foreground);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.novum-about__prose p + p {
  margin-top: 1.25rem;
}

.novum-about__editor {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  padding-left: 1rem;
  color: var(--muted-fg);
}

.novum-about__video-block {
  text-align: center;
}

.novum-about__video-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.novum-about__video-shell {
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--primary);
  box-shadow: 0 24px 56px rgba(46, 46, 46, 0.12);
  aspect-ratio: 16 / 9;
}

.novum-about__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.novum-about__cta {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.novum-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-fg);
  background: var(--primary);
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(46, 46, 46, 0.2);
}

.novum-about__btn:hover {
  background: var(--charcoal-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(46, 46, 46, 0.18);
}

@media (min-width: 768px) {
  .novum-about__hero {
    padding: calc(var(--novum-navbar-h) + 3.5rem) 0 4rem;
  }

  .novum-about__panel {
    padding: 2.5rem 2.5rem 2.5rem 2rem;
  }

  .novum-about__prose,
  .novum-about__editor {
    padding-left: 1.25rem;
  }

  .novum-about__video-heading {
    font-size: 1.75rem;
  }
}

/* ========================================================================
   11. ANIMATIONS (scroll-reveal via IntersectionObserver)
   ======================================================================== */
.novum-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.novum-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.novum-reveal--delay-1 { transition-delay: 0.1s; }
.novum-reveal--delay-2 { transition-delay: 0.2s; }
.novum-reveal--delay-3 { transition-delay: 0.3s; }
.novum-reveal--delay-4 { transition-delay: 0.4s; }

/* ========================================================================
   12. WORDPRESS OVERRIDES
   ======================================================================== */
.wp-block-image img {
  border-radius: var(--radius);
}

.entry-content > * + * {
  margin-top: 1.5rem;
}
