/* --- 1. Βασικές Ρυθμίσεις & Η "Καθαρή" Παλέτα --- */
:root {
    --brand-blue: #004a99;
    --brand-light-blue: #007bff;
    --brand-dark: #212529;
    --text-color: #495057;
    --white: #FFFFFF;
    --border-color: #dee2e6;
    --gradient-start: #a8c8e8;
    --gradient-end: #ffffff;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', -apple-system, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    /* ΟΧΙ background-attachment: fixed; (Προκαλεί lag) */
    color: var(--text-color);
    padding-top: 71px;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga" 1, "lnum" 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: scroll;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
main {
   flex-grow: 1;
}

/* --- 2. Header (Λευκό & Καθαρό) --- */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
/* ΣΩΣΤΗ ΔΟΜΗ: Grid (Όπως το ήθελες) */
header .container {
    display: grid;
    grid-template-columns: auto 1fr auto auto; /* Logo | Nav (center) | Social | Hamburger */
    align-items: center;
    position: relative;
    gap: 20px;
}
header .logo {
     grid-column: 1 / 2;
}
header .logo a {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brand-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* --- ΚΑΝΟΝΙΚΟ ΜΕΝΟΥ (Desktop) --- */
header nav#main-nav {
    grid-column: 2 / 3;
    justify-self: center; /* Κεντράρισμα */
    display: flex;
}
header nav#main-nav ul {
    display: flex;
    list-style: none;
    padding-left: 0;
}
header nav#main-nav li {
    margin-left: 25px;
}
header nav#main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
header nav#main-nav a:hover,
header nav#main-nav a.active {
    color: var(--brand-light-blue);
}

/* --- 9. Header Social Icons (Desktop) --- */
.header-social-icons {
    grid-column: 3 / 4; /* Στήλη 3 */
    display: flex;
    align-items: center;
    padding-left: 0;
}
.header-social-icons a {
    color: var(--text-color);
    margin-left: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}
.header-social-icons a:hover { color: var(--brand-blue); }

/* --- ΚΟΥΜΠΙ HAMBURGER (Μόνο για Κινητά) --- */
.hamburger {
    grid-column: 4 / 5; /* Στήλη 4 */
    display: none; /* Κρυφό στο desktop */
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--brand-blue);
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
    justify-self: end;
}

/* --- ΜΕΝΟΥ ΓΙΑ ΚΙΝΗΤΑ (Όταν ανοίγει) --- */
nav#mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}
 nav#mobile-nav ul { list-style: none; padding: 0; margin: 0; text-align: center; }
 nav#mobile-nav li { margin: 0; }
 nav#mobile-nav a { display: block; padding: 0.8rem 1rem; text-decoration: none; color: var(--brand-dark); font-weight: 700; border-bottom: 1px solid var(--border-color); transition: background-color 0.3s ease, color 0.3s ease; }
 nav#mobile-nav li:last-child a { border-bottom: none; }
 nav#mobile-nav a:hover { background-color: var(--gradient-start); color: var(--brand-blue); }
.mobile-nav-open nav#mobile-nav { display: block; }

/* --- 3. Hero Section (Index) --- */
.hero { padding: 6rem 0; text-align: center; border-bottom: 1px solid var(--border-color); position: relative; background-size: cover; background-position: center; background-color: var(--white); color: var(--text-color); }
.hero-texture { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero-texturelarge.webp'); color: var(--white); }
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-family: 'Inter', sans-serif; font-size: 3.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem; }
.hero:not(.hero-texture) h1 { color: var(--brand-blue); }
.hero-texture h1 { color: var(--white); text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.5rem auto; font-weight: 400; }
.hero:not(.hero-texture) p { color: var(--text-color); font-weight: 300; }
.hero-texture p { color: rgba(255,255,255,0.9); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.cta-button { text-decoration: none; padding: 14px 30px; font-size: 1rem; font-weight: 700; border-radius: 5px; transition: all 0.3s ease; margin-bottom: 1rem; display: inline-block; border: none; cursor: pointer; }
.hero:not(.hero-texture) .cta-button { background: var(--brand-blue); color: var(--white); box-shadow: 0 5px 20px rgba(0, 74, 153, 0.3); }
.hero:not(.hero-texture) .cta-button:hover { background: #003366; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 74, 153, 0.4); }
.hero-texture .cta-button { background: var(--white); color: var(--brand-blue); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); }
.hero-texture .cta-button:hover { background-color: var(--brand-light-blue); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4); }
.call-us { margin-top: 0.5rem; font-size: 1rem; font-weight: 400; }
.hero:not(.hero-texture) .call-us { color: var(--text-color); }
.hero-texture .call-us { color: rgba(255,255,255,0.8); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.phone-link { font-weight: 700; text-decoration: underline; transition: color 0.3s ease; font-size: 1.15rem; }
.hero:not(.hero-texture) .phone-link { color: var(--brand-blue); }
.hero:not(.hero-texture) .phone-link:hover { color: var(--brand-light-blue); }
.hero-texture .phone-link { color: var(--brand-light-blue); text-shadow: 0 1px 1px rgba(0,0,0,0.4); }
.hero-texture .phone-link:hover { color: var(--white); }
.hero-texture .phone-link:active { color: var(--brand-light-blue); }
.hero-subtitle { font-size: 1.2rem; font-weight: 400; margin-top: -0.5rem; margin-bottom: 2rem; }
.hero:not(.hero-texture) .hero-subtitle { color: var(--brand-blue); }
.hero-texture .hero-subtitle { color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.4); }

/* --- 4. Product Boxes (Index) --- */
.product-categories { padding: 4rem 0 5rem 0; border-top: 1px solid var(--border-color); }
.product-categories h2 { font-family: 'Inter', sans-serif; text-align: center; font-size: 2.5rem; font-weight: 900; color: var(--brand-dark); margin-bottom: 3rem; }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
a.category-box-link { text-decoration: none; color: inherit; display: block; height: 100%; transition: transform 0.3s ease; }
a.category-box-link:hover { transform: translateY(-8px); }
.category-box { background: var(--white); border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.04); height: 100%; display: flex; flex-direction: column; border-color: var(--border-color); transition: box-shadow 0.3s ease, border-color 0.3s ease; }
a.category-box-link:hover .category-box { box-shadow: 0 15px 35px rgba(0, 74, 153, 0.2); border-color: var(--brand-blue); }
.category-box .img-container { border-bottom: 1px solid var(--border-color); flex-shrink: 0; height: 160px; display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: var(--white); }
.category-box img { width: auto; max-width: 90%; display: block; object-fit: contain; max-height: 100%; padding: 0.8rem; }
.category-box h3 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--brand-dark); margin: 1.5rem 1.5rem 0.5rem 1.5rem; }
.category-box p { font-size: 1rem; padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-color); flex-grow: 1; }

/* --- 5. Footer --- */
footer { background: var(--brand-dark); color: #aaa; padding: 2rem 0; text-align: center; font-size: 0.9rem; margin-top: auto; }
footer a { color: #ccc; text-decoration: none; transition: color 0.3s ease; }
footer a:hover { color: var(--white); text-decoration: underline; }

/* --- 8. Footer Social Icons --- */
.social-icons { margin-bottom: 1rem; }
.social-icons a { color: #aaa; margin: 0 10px; font-size: 1.5rem; transition: color 0.3s ease; text-decoration: none; }
.social-icons a:hover { color: var(--brand-blue); }
footer p.copyright { margin-top: 0; font-size: 0.9rem; color: #aaa; }
footer p.copyright a { color: #ccc; }
footer p.copyright a:hover { color: var(--white); }

/* --- 7. Contact Page Styles --- */
.page-hero { padding: 1.5rem 0; text-align: center; background-color: var(--gradient-start); border-bottom: 3px solid var(--brand-blue); }
.page-hero h1 { font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--brand-blue); margin-bottom: 0.5rem; }
.page-hero p { font-size: 1.1rem; color: var(--text-color); font-weight: 300; max-width: 600px; margin: 0 auto; }
.contact-page-content { padding: 1.5rem 0 3rem 0; border-top: 1px solid var(--border-color); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-map h2 { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--brand-dark); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--brand-blue); display: inline-block; }
.contact-info-map p { margin-bottom: 1.5rem; line-height: 1.7; }
.contact-info-map strong { color: var(--brand-dark); }
.phone-link-inline, .email-link-inline { color: var(--brand-blue); text-decoration: none; font-weight: 700; }
.phone-link-inline:hover, .email-link-inline:hover { color: var(--brand-light-blue); text-decoration: underline; }
.map-container { border: 1px solid var(--border-color); margin-top: 1rem; line-height: 0; }
.contact-form-section h2 { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--brand-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 700; color: var(--brand-dark); margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-group input[type="text"], .form-group input[type="email"], .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; font-size: 1rem; font-family: inherit; background-color: var(--white); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group input[type="text"]:hover, .form-group input[type="email"]:hover, .form-group textarea:hover { border-color: var(--brand-light-blue); }
.form-group input[type="text"]:focus, .form-group input[type="email"]:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 2px rgba(0, 74, 153, 0.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.gdpr-check { display: flex; align-items: flex-start; margin-top: 2rem; }
.gdpr-check input[type="checkbox"] { margin-top: 0.2em; margin-right: 0.8em; flex-shrink: 0; width: 1.2em; height: 1.2em; }
.gdpr-check label { font-weight: 400; font-size: 0.85rem; color: var(--text-color); margin-bottom: 0; line-height: 1.5; }
.form-submit-button { display: inline-block; width: auto; cursor: pointer; margin-top: 1rem; }
.form-submit-button:hover { background-color: var(--brand-light-blue); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4); }

/* --- 10. Products Page Styles --- */
.product-listing-content { padding: 1.5rem 0 3rem 0; border-top: 1px solid var(--border-color); }
.product-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 30px; } /* Added grid */

/* --- 11. Product Detail Page Styles (Kitchen Sponges) --- */
.category-nav {
    text-align: center;
    margin-bottom: 3rem;
    position: sticky;
    top: 71px;
    padding: 1rem 0;
    z-index: 900;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.00);
}
.category-nav-button { display: inline-block; padding: 0.2rem 1rem; margin: 0 0.5rem; text-decoration: none; font-weight: 700; color: var(--text-color); border: 2px solid transparent; border-radius: 50px; transition: all 0.3s ease; background-color: #e9ecef; }
.category-nav-button:hover { color: var(--brand-blue); background-color: #dde4eb; }
.category-nav-button.active { color: var(--white); background-color: var(--brand-blue); border-color: var(--brand-blue); }

.product-category-section { padding-top: 2rem; margin-bottom: 4rem; scroll-margin-top: 161px; }
.product-category-section h2 { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 900; color: var(--brand-dark); margin-bottom: 0.5rem; text-align: center; }
.category-description { text-align: center; margin-bottom: 2.5rem; color: var(--text-color); font-size: 1rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background: #fdfdfd;
  border: 1.5px solid rgba(0, 120, 255, 0.15); /* απαλό μπλε περίγραμμα */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  border-color: rgba(0, 120, 255, 0.35); /* πιο έντονο στο hover */
}
.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
  padding: 0.6rem;
  max-height: 200px;
}
.product-image-container a { display: block; cursor: zoom-in; text-decoration: none; }
.product-image-container img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.product-card:hover .product-image-container:hover img {
  transform: scale(1.04);
}
.product-code {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 120, 255, 0.85);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0px 3px;
  border-radius: 6px;
  letter-spacing: 0.2px;
}
.product-tag {
    position: absolute;
    top: 10px; /* Πάνω */
    left: 20px; /* Αριστερά αντί για δεξιά */
    background-color: var(--brand-blue);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0px 3px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.product-info-tag {
    display: inline-block; /* Για να συμπεριφέρεται σαν "κουμπί" */
    background-color: var(--brand-blue);
    color: var(--white);
    font-size: 0.9rem; /* Ίδιο μέγεθος με το .product-tag */
    font-weight: 600;
    padding: 2px 3px; /* Λίγο padding για να "αναπνέει" */
    border-radius: 4px;
    margin-bottom: 1rem; /* Κενό πριν την επόμενη γραμμή ("Διάσταση:") */
}
.product-info {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: #222;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.product-info p { margin-bottom: 0.6rem; }
.product-info p:last-child { margin-bottom: 0; }
.product-info strong { color: var(--brand-dark); margin-right: 0.3em; }

.private-label-card { background-color: var(--white); border: 1px solid var(--border-color); border-radius: 8px; box-shadow: 0 6px 15px rgba(0,0,0,0.06); padding: 2rem; display: flex; align-items: center; gap: 2rem; margin-top: 2rem; }
.private-label-icon-container { flex-basis: 220px; flex-shrink: 0; text-align: center; }
.private-label-icon-container img { max-width: 100%; height: auto; max-height: 200px; }
.private-label-content h3 { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--brand-blue); margin-bottom: 1rem; }
.private-label-content p { margin-bottom: 1rem; line-height: 1.6; }
.private-label-content ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.private-label-content li { margin-bottom: 0.7rem; padding-left: 0; font-size: 0.95rem; }
.private-label-content li i.fa-check { color: var(--brand-blue); margin-right: 0.6rem; font-size: 0.9em; }
.lightbox-trigger { margin-top: 1.5rem; }
.cta-button.small-button { padding: 10px 20px; font-size: 0.9rem; }

/* --- 12. Lightbox Customizations --- */
body.hide-lightbox-arrows .lb-prev {
    display: none !important;
}
body.hide-lightbox-arrows .lb-next {
    display: none !important;
}

/* --- Fix for Anchor Links with Fixed Header --- */
[id] {
  scroll-margin-top: 90px; /* Default for desktop */
}

/* --- 13. Text Content Page Styles (Privacy, Terms) --- */
.text-content-page { padding: 1.5rem 0 3rem 0; border-top: 1px solid var(--border-color); }
.text-content-box { background-color: var(--white); border-radius: 8px; padding: 2rem 2.5rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.text-content-box h2 { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 900; color: var(--brand-blue); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border-color); }
.text-content-box h3 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--brand-dark); margin-top: 2rem; margin-bottom: 0.5rem; }
.text-content-box p, .text-content-box li { font-size: 1rem; line-height: 1.7; color: var(--text-color); margin-bottom: 1rem; }
.text-content-box ul { padding-left: 20px; margin-bottom: 1rem; }

/* --- 6. RESPONSIVE (ΕΝΙΑΙΑ ΕΝΟΤΗΤΑ) --- */

/* == Tablet Styles == */
@media (max-width: 991px) {
    /* --- Header / Nav --- */
    /* Κρύβουμε το ΚΑΝΟΝΙΚΟ μενού (desktop) */
    header nav#main-nav {
        display: none;
    }
    /* Κρύβουμε τα social icons (desktop) */
    .header-social-icons {
        display: none;
    }
    /* Εμφανίζουμε το hamburger */
    .hamburger {
        display: block;
        grid-column: 4 / 5; /* Το hamburger στην τέταρτη στήλη */
        justify-self: end; /* Το σπρώχνει τέρμα δεξιά στη στήλη του */
    }
    header .container {
        /* Επιστροφή στο Flexbox για Mobile για απλότητα */
        display: flex;
        justify-content: space-between;
        gap: 0; /* Αφαίρεση gap */
        grid-template-columns: none; /* Ακύρωση grid */
    }
    body { padding-top: 61px; }

    /* --- Product Grid --- */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .product-image-container img { max-height: 250px; padding: 0.4rem; }

    /* --- Contact Page --- */
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* == Mobile Styles == */
@media (max-width: 768px) {
    /* --- Header --- */
    header { padding: 0.5rem 0; }
    header .logo a { font-size: 1.3rem; }
    .hamburger { font-size: 1.6rem; } /* ΟΧΙ ::before */
    body { padding-top: 55px; }

    /* --- Hero --- */
    .hero h1 { font-size: 2.5rem; }

    /* --- Index Boxes --- */
    .categories-grid { grid-template-columns: 1fr; }
    a.category-box-link { height: auto; display: block; max-width: 380px; margin-left: auto; margin-right: auto; }
    .category-box .img-container { height: 120px; }
    .category-box img { max-width: 60%; }
    .category-box h3 { font-size: 1.2rem; margin: 1rem 1rem 0.5rem 1rem; }
    .category-box p { font-size: 0.9rem; padding: 0 1rem 1rem 1rem; }

    /* --- Contact Page --- */
    .page-hero { padding: 2rem 0; }
    .page-hero h1 { font-size: 2rem; }
    .contact-page-content { padding: 2rem 0; }
    .contact-info-map h2, .contact-form-section h2 { font-size: 1.6rem; }

    /* --- Product Page Grid (για products.html) --- */
    .product-page-grid { grid-template-columns: 1fr; }
    .product-page-grid a.category-box-link { max-width: 380px; margin-left: auto; margin-right: auto; }
    .product-page-grid .category-box .img-container { height: 120px; }
    .product-page-grid .category-box img { max-width: 60%; }
    .product-page-grid .category-box h3 { font-size: 1.2rem; margin: 1rem 1rem 0.5rem 1rem; }
    .product-page-grid .category-box p { font-size: 0.9rem; padding: 0 1rem 1rem 1rem; }

    /* --- Product Detail Page (kitchen-sponges.html) --- */
    .product-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-image-container img { max-height: 250px; padding: 0.4rem; }
    .product-info { padding: 1rem; font-size: 0.85rem; }
    .product-code { font-size: 0.95rem; padding: 0px 3px; }
    .product-tag {
        font-size: 0.85rem; /* μικρότερο μέγεθος */
        padding: 0px 3px; /* πιο "σφιχτό" padding */
        top: 5px; /* πιο κοντά στην άκρη */
        left: 5px; /* αριστερά αντί δεξιά */
    }
    
    .category-nav {
        top: 54px;
        padding: 0.5rem 0.2rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .category-nav-button {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        margin: 0.2rem;
    }
    .product-category-section h2 { font-size: 1.8rem; }
    .category-description { font-size: 0.95rem; margin-bottom: 2rem; }
    .product-category-section { scroll-margin-top: 120px; } /* Νέο offset για mobile */

    /* --- Private Label Card --- */
    .private-label-card { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1rem; }
    .private-label-icon-container { flex-basis: auto; margin-bottom: 1rem; }
    .private-label-icon-container img { max-height: 180px; }
    .private-label-content ul { text-align: center; display: block; }
    .private-label-content li { padding-left: 0; text-align: center; }
    .private-label-content h3 { font-size: 1.5rem; }
}
/* --- End of Responsive Styles --- */

/* =========================================
   GALLERY PAGE STYLES
   ========================================= */

/* Κάνει το grid να προσαρμόζεται αυτόματα */
.gallery-grid {
    display: flex;          
    flex-wrap: wrap;         
    justify-content: center;
    gap: 20px; 
    margin-bottom: 30px;
}

.gallery-grid .gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* --- ΑΛΛΑΓΜΕΝΑ --- */
    flex-basis: 280px; /* Το μίκρυνα από 300px */
    flex-grow: 1;      
    max-width: 400px;  /* Το μίκρυνα από 450px */
    /* ---------------------- */
}

.gallery-grid .gallery-item:hover {
    transform: scale(1.03); /* Εφέ zoom στο hover */
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Καλύπτει τον χώρο χωρίς να παραμορφώνεται */
    display: block;
}

/* Χρησιμοποιούμε το ίδιο section με τις άλλες σελίδες,
   αλλά ίσως θέλουμε έναν υπότιτλο */
.gallery-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center;
}

/* =========================================
   CONTENT PAGE STYLES (Etaireia, etc.)
   ========================================= */

/* Κεντράρει το κείμενο και του δίνει μέγιστο πλάτος */
.content-page-wrapper .page-content {
    max-width: 800px; /* Ιδανικό πλάτος για διάβασμα */
    margin: 0 auto;   /* Κεντράρισμα */
    padding: 20px 0 40px 0; /* Κενά πάνω/κάτω */
}

.content-page-wrapper .page-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    margin-top: 30px; /* Δημιουργεί κενό μεταξύ των ενοτήτων */
    padding-bottom: 10px;
}

/* Ο πρώτος τίτλος να μην έχει κενό από πάνω */
.content-page-wrapper .page-content h2:first-of-type {
    margin-top: 0;
}

.content-page-wrapper .page-content p {
    font-size: 1.1rem; /* Λίγο μεγαλύτερο γράμμα για άνεση */
    line-height: 1.7;  /* Απόσταση γραμμών */
    color: #555;      /* Πιο "μαλακό" μαύρο */
    margin-bottom: 20px;
}

.content-page-wrapper .page-content p strong {
    color: #333;
}

/* --- 14. Cookie Consent Banner --- */
#cookie-consent-banner {
    position: fixed;
    bottom: 50;
    left: 0;
    width: 100%;
    background-color: var(--brand-dark); /* Σκούρο φόντο, όπως το footer */
    color: #ccc;
    padding: 1rem 0;
    z-index: 10000; /* Πάνω από όλα */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-size: 0.9rem;
    
    /* Κρυφό αρχικά */
    display: none; 
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

/* Κλάση που προσθέτει το JS για να εμφανιστεί */
#cookie-consent-banner.show {
    display: block;
    transform: translateY(0);
}

#cookie-consent-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cookie-consent-banner p {
    margin: 0;
    padding-right: 2rem; /* Κενό πριν τα κουμπιά */
    line-height: 1.5;
}
#cookie-consent-banner p a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0; /* Να μην "σπάνε" τα κουμπιά */
}

/* Στυλ για τα κουμπιά μέσα στο banner */
#cookie-consent-banner .cta-button {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin-bottom: 0; /* Ακύρωση margin από .cta-button */
}

/* Στυλ για το κουμπί "Απόρριψη" */
.cta-button.secondary-button {
    background-color: #6c757d; /* Γκρι */
    color: var(--white);
    box-shadow: none;
}
.cta-button.secondary-button:hover {
    background-color: #5a6268;
    box-shadow: none;
    transform: none; /* Ακύρωση hover effect */
}

/* Responsive για το Banner */
@media (max-width: 768px) {
    #cookie-consent-banner .container {
        flex-direction: column; /* Το ένα κάτω από το άλλο */
        gap: 15px;
    }
    #cookie-consent-banner p {
        padding-right: 0;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    .cookie-buttons .cta-button {
        flex-grow: 1; /* Να πιάνουν ίσο χώρο */
    }
}
/* --- End Cookie Banner --- */

/* === Logo === */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 600px) {
    .logo-img {
        height: 40px; /* μικρότερο για κινητά */
    }
}

/* --- 16. Premium Music Player Styles --- */

#music-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--brand-dark); /* Μαύρο/Σκούρο γκρι */
    color: var(--white);
    z-index: 9999;
    height: 50px; /* Σταθερό ύψος, λεπτό και κομψό */
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    border-top: 2px solid var(--brand-blue); /* Η μπλε γραμμή της Neoflex */
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
}

.music-player-hidden { transform: translateY(100%); }

.player-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Αριστερά: Scrolling Text & Link --- */
.track-info-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50%; /* Πιάνει το μισό πλάτος */
    overflow: hidden;
}

.music-icon-anim {
    color: var(--brand-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.scrolling-text-wrapper {
    white-space: nowrap;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); /* Fade effect στις άκρες */
    width: 100%;
}

.track-link {
    display: inline-block;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    /* Animation για Scroll */
    animation: scroll-text 15s linear infinite;
    padding-left: 100%; /* Ξεκινάει εκτός οθόνης */
}

.track-link:hover {
    color: var(--brand-blue);
    animation-play-state: paused; /* Σταματάει όταν πας το ποντίκι πάνω για να κάνεις κλικ */
    text-decoration: underline;
}

@keyframes scroll-text {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- Δεξιά: Controls --- */
.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

#time-display {
    font-family: 'Roboto Mono', monospace; /* Monospace για να μην χοροπηδάνε τα νούμερα */
    font-size: 0.8rem;
    color: #aaa;
    min-width: 50px;
    text-align: right;
}

#play-pause-btn {
    background: var(--brand-blue);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

#play-pause-btn:hover {
    background-color: var(--brand-light-blue);
    transform: scale(1.1);
}

/* --- Volume: Hover Effect --- */
.volume-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px; /* Όσο το ύψος της μπάρας */
    cursor: pointer;
}

#volume-icon {
    color: #ccc;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.volume-container:hover #volume-icon {
    color: var(--brand-blue);
}

/* Το Slider κρυμμένο αρχικά */
.volume-slider-wrapper {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

/* Όταν κάνεις Hover στο εικονίδιο ή στο slider, εμφανίζεται */
.volume-container:hover .volume-slider-wrapper {
    width: 80px;
    opacity: 1;
}

#volume-slider {
    width: 100%;
    height: 4px;
    accent-color: var(--brand-blue);
    cursor: pointer;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    body { padding-bottom: 60px; }
    
    .track-info-container { width: 55%; }
    .track-link { font-size: 0.8rem; animation-duration: 10s; } /* Πιο γρήγορο scroll στο κινητό */
    
    #time-display { display: none; } /* Κρύβουμε τον χρόνο στο κινητό για χώρο */
    
    .volume-slider-wrapper {
        /* Στο κινητό δεν δουλεύει καλά το hover, οπότε ίσως θέλεις να είναι μόνιμα ανοιχτό ή να πατάει κλικ. 
           Εδώ το αφήνουμε hover αλλά μικραίνουμε τα gaps */
    }
}

/* --- Modal Styles (Ίδια με πριν) --- */
.music-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
.music-modal.show-modal { opacity: 1; visibility: visible; }
.music-modal-content {
    background-color: var(--white); padding: 2rem; border-radius: 8px; text-align: center;
    border-top: 4px solid var(--brand-blue); width: 90%; max-width: 400px;
}
.modal-buttons { display: flex; justify-content: center; gap: 15px; margin-top: 1.5rem; }