/* --- 1. Google Fonts Import (Full Greek Support) --- */

/* --- 2. Root Variables --- */
:root {
    /* Fonts */
    --font-primary: 'Inter', sans-serif; /* Η δωρεάν εναλλακτική της Proxima Nova */
    --font-serif: 'Tenor Sans', serif;       /* Η editorial γραμματοσειρά (Bovary style) */

    /* Colors */
    --color-black: #000000;
    --color-dark: #121212;
    --color-grey-dark: #4a4a4a;
    --color-grey-light: #f4f4f4;
    --color-border: #e8e8e8;
    --color-white: #ffffff;
    --p-gold: #c5a059;
    --p-black: #1a1a1a;
    --p-gray: #f8f8f8;
    --p-border: #eeeeee;
    --p-shadow: 0 15px 45px rgba(0,0,0,0.05);
    /* Grid & Spacing */
    --container-max: 1280px;
    --gutter: 24px;
    --section-spacing: 80px;
}
/* --- 3. Base Styles & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
a:hover {
    color: var(--color-text-light);
}

ul, ol {
    list-style: none;
    margin-bottom: 1.5rem;
}

/* --- 4. Typography (h1-h6 premium fashion, paragraphs, lists) --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif); /* Tenor Sans για premium αίσθηση */
    font-weight: 400; /* Normal weight for elegance */
    /*letter-spacing: 1px;*/
    /*text-transform: uppercase;*/
    margin-top: 0;
    margin-bottom: 0.8em;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
}

/* Lists */
ul.styled-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
ul.styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}
/* --- Layout Structure --- */

/* Ο βασικός "κάδος" για το boxed περιεχόμενο */
.container {
    max-width: var(--container-max); /* π.χ. 1240px */
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}


section + section{
    margin-top: 0px;
}

/* Full Width Section - Πιάνει όλη την οθόνη */
.section-full {
    width: 100%;
    position: relative;
}

/* Αν θέλεις ένα section να έχει background που πιάνει όλη την οθόνη,
   αλλά το κείμενο μέσα να είναι boxed */
.section-bg-full {
    width: 100%;
    background-color: var(--color-grey-light);
    padding: var(--section-spacing) 0;
}

/* Utility για αφαίρεση padding αν χρειαστεί */
.no-padding { padding: 0 !important; }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--gap) * -1); /* Negative margin to offset column padding */
}

.col {
    flex: 1; /* Default: takes available space */
    padding: 0 var(--gap);
}

/* Column sizes (e.g., .col-6 for 50%) */

/* Container: Ορίζει το μέγιστο πλάτος της σελίδας */
.container {
    width: 100%;
    padding-right: var(--gutter, 15px);
    padding-left: var(--gutter, 15px);
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px; /* Luxury wide feel */
}

/* Row: Το flexbox wrapper που περιέχει τις στήλες */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter, 15px) * -1);
    margin-left: calc(var(--gutter, 15px) * -1);
}

/* Base Column Style: Όλες οι στήλες έχουν padding εξ ορισμού */
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: var(--gutter, 15px);
    padding-left: var(--gutter, 15px);
    box-sizing: border-box;
}

/* Desktop Columns */
.col-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Offsets */
.offset-1  { margin-left: 8.333333%; }
.offset-2  { margin-left: 16.666667%; }
.offset-3  { margin-left: 25%; }
.offset-4  { margin-left: 33.333333%; }

/* Tablet (md): 992px and below */
@media (max-width: 992px) {
    .col-md-1  { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3  { flex: 0 0 25%; max-width: 25%; }
    .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6  { flex: 0 0 50%; max-width: 50%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }

    .offset-md-0 { margin-left: 0; }
}

/* Mobile (sm): 768px and below */
@media (max-width: 768px) {
    /* Stack columns to full width on mobile unless specified otherwise */
    [class*="col-"]:not([class*="col-md-6"]) {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }

    .offset-sm-0 { margin-left: 0; }
}

.justify-content-start   { justify-content: flex-start; }
.justify-content-end     { justify-content: flex-end; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.align-items-start   { align-items: flex-start; }
.align-items-end     { align-items: flex-end; }
.align-items-center  { align-items: center; }
.align-items-stretch { align-items: stretch; }

.d-flex { display: flex !important; }
.d-none { display: none !important; }

/* Responsive display for mobile */
@media (max-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

/* --- 6. Form Fields --- */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-text-dark);
}
section{
    container-type: inline-size;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 0; /* Modern, clean look */
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    outline: none;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    border-radius: 0;
}
.btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* --- 7. Image Handling --- */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space under image */
}

/* For editorial images, e.g., product shots or blog post heroes */
.img-editorial {
    width: 100%;
    height: 350px; /* Fixed height for consistency in grids */
    object-fit: cover; /* Crop to fit, maintain aspect ratio */
    display: block;
}
.header-center {

    container-type: inline-size;
    flex: 1; text-align: center;
}
.header-center a{
    font-family: var(--font-serif);
    font-size: 3.5rem;
    letter-spacing: 3px;
    font-weight: 400;

}
@media (max-width: 768px) {
    .header-center a{
        font-size: 10cqi!important;
    }
    .spots-header .main-heading{
        font-size: 12cqi!important;
    }
}

.header-left,.header-right{
    max-width: 10%;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
}
/* --- 8. Product Grid & Product Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive columns */
    gap: var(--gap);
}

.product-card {
    background-color: var(--color-white);
    border: none; /* Clean, borderless look */
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    text-align: center;
    position: relative; /* For overlays, if needed */
}
.product-card:hover {
    transform: translateY(-5px); /* Subtle lift effect */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Soft shadow on hover */
}

.product-card img {
    width: 100%;
    height: 400px; /* Consistent height for product images */
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 15px 0;
}
.brand-name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 5px;
    background-color: var(--p-gold);
    padding: 3px 5px;
    width: max-content;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.product-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: 1px;
}
.price {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .col, .col-3, .col-4, .col-6 {
        flex: 0 0 100%; /* Stack columns on small screens */
        padding: 0 var(--gap); /* Maintain padding */
    }
    .row { margin: 0; } /* Remove negative margin on small screens when columns stack */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    .img-editorial, .product-card img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .container, .container-full {
        padding: 0 calc(var(--gap) / 2); /* Smaller padding on very small screens */
    }
    .product-grid {
        grid-template-columns: 1fr; /* Single column on smallest screens */
    }
    .img-editorial, .product-card img {
        height: 250px;
    }
    .btn {
        width: 100%;
        padding: 10px 15px;
    }
}

/* --- 9. Mobile Header & Navigation Logic --- */
@media (max-width: 768px) {
    .desktop-only { display: none ; }
    .mobile-only { display: block ; }

    .header-main { padding: 15px 0; }
    .header-center a { font-size: 1.8rem; }

    /* Side Menu Drawer */
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background: var(--color-white);
        z-index: 9999;
        transition: left 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        padding: 40px 20px;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }
    .mobile-nav-drawer.active { left: 0; }
}

/* Generic Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Έλεγχος μέσω JS */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-shell {
    background: var(--color-white);
    width: 95%;
    max-width: 600px;
    position: relative;
    padding: 0; /* Το padding το ορίζουμε στο content αν χρειάζεται */
    animation: modalFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 20px 40px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.modal-body {
    padding: 40px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close-trigger {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    background: none;
    border: none;
    padding: 5px;
}

/* Toast Notifications Wrapper */
.toast-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
    width: 100%;
}

/* Individual Toast Item */
.toast-item {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    animation: toastSlideIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

/* Τύποι ειδοποιήσεων με διακριτικό border αριστερά */
.toast-success { border-left: 4px solid #1a1a1a; } /* Minimalista black */
.toast-error   { border-left: 4px solid #d9534f; }
.toast-info    { border-left: 4px solid #5bc0de; }

.toast-body strong {
    display: block;
    font-family: var(--font-serif);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.toast-msg {
    font-size: 0.9rem;
    color: var(--color-grey-dark);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 0 15px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.toast-close:hover { opacity: 1; }

/* Animation */
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .toast-wrapper {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* --- 12. Utilities & Helper Classes --- */
.hidden { display: none; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }



/* Offcanvas Styles */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -100%; /* Κρυμμένο αριστερά */
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--color-white);
    z-index: 100000;
    padding: 30px;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 15px 0 30px rgba(0,0,0,0.05);
}

.mobile-nav-drawer.active {
    left: 0; /* Εμφάνιση */
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 99999;
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    display: block;
}

/* Mobile Menu Links */
.mobile-menu-links {
    list-style: none;
    padding: 0;
}

.mobile-menu-links li {
    margin-bottom: 25px;
}

.mobile-menu-links a {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
}

.main-nav{
    padding: 0; text-align: center; border-bottom: 1px solid var(--color-border);
}

.main-nav > ul{
    margin-bottom: 0;
    display: flex; justify-content: center; gap: 35px; text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
}
.main-nav > ul > li {
    padding: 15px 0;
}
/* Product Card Enhancements */
.product-card {
    position: relative;
    background: #fff;
    transition: transform 0.3s ease;
    padding: 10px;
}

.product-main-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Actions Overlay */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 15;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 18px;
}

.fav-btn.active { color: #d4af37; } /* Χρυσό από το logo */

/* Quick Details Bar */
.quick-details-link {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 1px;
    transition: bottom 0.3s ease;
    cursor: pointer;
    z-index: 15;
}

.product-card:hover .quick-details-link {
    bottom: 0;
}

/* Dropdown Menu */
.menu-container { position: relative; }
.card-dropdown {
    position: absolute;
    right: 0;
    top: 40px;
    background: #fff;
    border: 1px solid var(--color-border);
    min-width: 150px;
    display: none;
    z-index: 10;
}
.card-dropdown.active { display: block; }
.card-dropdown a {
    display: block;
    padding: 10px;
    font-size: 12px;
    text-decoration: none;
    color: var(--color-dark);
}
.card-dropdown a:hover { background: var(--color-grey-light); }

/* Star Rating CSS (Pure CSS stars) */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 5px 0;
    justify-content: center;
}
.stars {
    display: inline-block;
    font-size: 14px;
    font-family: Times;
    line-height: 1;
}
.stars::before {
    content: '★★★★★';
    letter-spacing: 2px;
    background: linear-gradient(90deg, #d4af37 calc(var(--rating) / 5 * 100%), #e0e0e0 calc(var(--rating) / 5 * 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rating-count { font-size: 10px; color: #999; }

.hero-wrapper {
    position: relative;
    height: 700px; /* Σταθερό ύψος για desktop */
    overflow: hidden;
    background: var(--color-grey-light);
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.full-link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ΤΕΡΑΣΤΙΑΣ ΣΗΜΑΣΙΑΣ: Κόβει την εικόνα έξυπνα για να γεμίσει το 700px ύψος */
    object-position: center;
}
.list-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 30px;
}

.list-title::after{
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #e4ce86;
    margin: 30px auto 0;

}

.hero-text-box {
    color: #ffffff; /* Το κείμενο λευκό για να κάνει αντίθεση με το overlay */
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 450px;
}

/* Responsive για κινητά */
@media (max-width: 768px) {
    .hero-wrapper { height: 500px; }
    .hero-title { font-size: 2.5rem; }
    .hero-overlay {
        background: rgba(0,0,0,0.4); /* Πιο ομοιόμορφο σκοτάδι στο κινητό */
    }
}

/* Ευθυγράμμιση του περιεχομένου στο κάτω μέρος */
.hero-content-container {
    display: flex;
    align-items: flex-end; /* Μετακίνηση στο κάτω μέρος του container */
    padding-bottom: 80px;  /* Απόσταση από το κάτω περιθώριο */
    height: 100%;
}

/* Αν θέλεις να δώσεις λίγο περισσότερο βάρος στο overlay χαμηλά για αναγνωσιμότητα */
.hero-overlay {
    /* Ξεκινάει το σκοτάδι από το 60% της εικόνας και κάτω για μέγιστη αντίθεση */
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.1) 40%,
            rgba(0,0,0,0.5) 70%,
            rgba(0,0,0,0.8) 100%
    ) !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Για να μην εμποδίζει τα κλικ στο κουμπί */
}

/* Responsive διορθώσεις για κινητά */
@media (max-width: 768px) {
    .hero-content-container {
        padding-bottom: 40px;
        align-items: flex-end;
    }
}

/* Δίνουμε ύψος στο ενδιάμεσο στοιχείο για να ξέρει ο container πού να πατήσει */
.hero-item {
    height: 700px; /* Ίδιο με το .hero-wrapper */
    position: relative;
}

.hero-content-container {
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    height: 100%;
    position: relative; /* Διασφαλίζει ότι το κείμενο μπαίνει πάνω από την εικόνα */
    z-index: 5;
}

/* Για τα κινητά, αλλάζουμε το ύψος και εδώ */
@media (max-width: 768px) {
    .hero-item { height: 500px; }
}

.btn-white {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #ffffff; /* Λεπτό λευκό περίγραμμα */
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-white:hover {
    background: #ffffff;    /* Γέμισμα στο hover */
    color: #000000;         /* Μαύρα γράμματα για αντίθεση */
}

.hero-wrapper {
    position: relative;
    height: 700px;
}

.hero-item {
    position: absolute; /* Τα slides κάθονται το ένα πάνω στο άλλο */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Ξεκινάνε κρυμμένα */
}

.hero-item:first-child {
    display: block; /* Μόνο το πρώτο φαίνεται αρχικά */
}

.hero-text-box {
    color: #ffffff;
    /* Μια απαλή, διάχυτη σκιά που "πετάει" το γράμμα έξω από το background */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-title {
    /* Στον τίτλο βάζουμε λίγο πιο έντονη για να "κλειδώνει" το βλέμμα */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Κενό πάνω και κάτω από το Featured Brands section */
.featured-brands-section {
    padding: 80px 0;
    margin-bottom: 60px;
    border-top: 1px solid #eeeeee; /* Λεπτή διαχωριστική γραμμή */
    border-bottom: 1px solid #eeeeee;
}

/* Κενό πριν τα New Arrivals */
.new-arrivals-section {
    margin-top: 80px;
    padding-top: 20px;
}

/* Διόρθωση τίτλων ενοτήτων */
.section-title {
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #888;
}

.brands-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0.7; /* Απαλή εμφάνιση */
}

.brand-item {
    font-family: 'Times New Roman', serif; /* Ή κάποια serif γραμματοσειρά που έχεις */
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #222;
    transition: all 0.4s ease;
    cursor: default;
}

.brand-item:hover {
    opacity: 1;
    letter-spacing: 7px; /* Elegant κίνηση στο hover */
}

/* Responsive για κινητά */
@media (max-width: 768px) {
    .brands-wrapper {
        justify-content: center;
        gap: 30px;
    }
}


/* --- Spots Section Styling --- */
.spots-section {
    background-color: #f2e8dc; /*#fdfdfd;*/ /* Πολύ ελαφρύ off-white για διακριτικό διαχωρισμό */
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid #ccc;
    margin-top: 60px;
}

.spots-header {
    text-align: center;
    margin-bottom: 60px;
}

.spots-header .main-heading {
    font-size: 3.8rem;
    color: var(--color-dark);
    margin-top: 10px;
}

.section-desc {
    max-width: 550px;
    margin: 0 auto;
    font-style: italic;
    color: var(--color-grey-dark);
}

/* --- Force Horizontal Grid --- */
.spots-flex-grid {
    display: flex !important;
    flex-wrap: nowrap !important; /* Επιβάλλει την οριζόντια διάταξη */
    gap: 30px; /* Κενό ανάμεσα στις στήλες */
}

.spot-item-col {
    flex: 0 0 33.333% !important; /* Κλειδώνει στο 1/3 */
    max-width: 33.333% !important;
}

/* --- Card Styling --- */
.spot-card {
    background: transparent;
    transition: transform 0.3s ease;
}

.spot-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Τετράγωνο layout για να "σώζει" τις οριζόντιες φωτό */
    overflow: hidden;
    margin-bottom: 25px;
    background: var(--color-grey-light);
}

.spot-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Το κλειδί για τις οριζόντιες εικόνες */
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.spot-card:hover .spot-img {
    transform: scale(1.08);
}

.spot-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-white);
    padding: 8px 15px;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Card Typography --- */
.spot-title-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    text-transform: none; /* Editorial look: Όχι όλα κεφαλαία */
    margin-bottom: 15px;
    height: 3.5rem; /* Ευθυγράμμιση τίτλων */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.spot-description-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-grey-dark);
    margin-bottom: 20px;
    height: 4.8rem; /* Ευθυγράμμιση περιγραφών */
    overflow: hidden;
}

.btn-spot-link {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.btn-spot-link:hover {
    opacity: 0.6;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .spots-flex-grid {
        flex-wrap: wrap !important; /* Στο κινητό επιτρέπουμε το σπάσιμο */
    }
    .spot-item-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 40px;
    }
    .spot-image-wrapper {
        aspect-ratio: 4 / 3; /* Πιο φυσικό ratio για κινητά */
    }
}


/*BLOG SECTIONS*/

.post-grid-layout-1 .large-card .img-editorial {
    height: 550px;
}
.sidebar-posts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--color-border);
    padding-left: 40px;
}
.mini-post {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}
.mini-post:last-child { border-bottom: none; }
.mini-post h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    text-transform: none;
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
    margin-right: 5px;
    align-items: center;
}

/* Layout 1 Specifics */
.post-grid-layout-1 {
    padding: var(--section-spacing) 0;
}

/* Hero Side */
.img-editorial-large {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: filter 0.4s ease;
}

.post-title-large {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    margin: 20px 0;
    text-transform: none; /* Πιο editorial style */
    line-height: 1.1;
}

.post-title-large a {
    color: var(--color-dark);
}

.hero-excerpt {
    color: var(--color-grey-dark);
    font-size: 1.1rem;
    max-width: 90%;
}

/* Sidebar Side */
.sidebar-column {
    padding-left: 60px; /* Μεγάλο κενό για premium αίσθηση */
    border-left: 1px solid var(--color-border);
}

.sidebar-heading {
    margin-bottom: 40px;
    color: #bbb;
    font-size: 0.7rem;
    letter-spacing: 3px;
}

.mini-post {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--color-border);
}

.mini-post:last-child {
    border-bottom: none;
}

.mini-post-title {
    font-size: 1.25rem;
    text-transform: none;
    line-height: 1.3;
    margin-bottom: 15px;
}

.mini-post-title a { color: var(--color-dark); }

.premium-link-small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-grey-dark);
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .sidebar-column {
        padding-left: var(--gutter);
        border-left: none;
        margin-top: 60px;
        border-top: 1px solid var(--color-border);
        padding-top: 40px;
    }
    .post-title-large { font-size: 2rem; }
    .img-editorial-large { height: 400px; }
}

/* Layout 2 Specifics */
.post-grid-layout-2 {
    padding: 120px 0;
    background-color: #fff;
}

.align-center {
    align-items: center;
}

/* Portrait Styling (Left) */
.editorial-portrait {
    position: relative;
    padding-right: 40px;
}

.editorial-portrait img {
    width: 100%;
    aspect-ratio: 4 / 5; /* Όρθιο ratio */
    object-fit: cover;
    box-shadow: 20px 20px 0px var(--color-grey-light); /* Editorial διακοσμητικό box */
}

.portrait-caption {
    margin-top: 30px;
}

.portrait-caption h3 {
    font-size: 1.4rem;
    text-transform: none;
    margin-top: 10px;
}

/* Content Block Styling (Right) */
.editorial-content-block {
    padding-left: 60px;
}

.display-title {
    font-size: 3.5rem; /* Πολύ μεγάλος τίτλος */
    font-family: var(--font-serif);
    line-height: 1.1;
    text-transform: none;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.excerpt-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-grey-dark);
    margin-bottom: 30px;
    max-width: 500px;
}

.secondary-image-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .editorial-content-block { padding-left: 0; margin-top: 60px; }
    .display-title { font-size: 2.5rem; }
    .editorial-portrait { padding-right: 0; }
    .editorial-portrait img { box-shadow: none; }
}

/* Layout 3 Specifics */
.post-grid-layout-3 {
    padding: 30px 0; /* Μεγαλύτερο padding γιατί το μεσαίο post "κλέβει" χώρο */
    background-color: var(--color-white);
}

.mosaic-grid {
    align-items: flex-start;
}

/* Το μυστικό της ασυμμετρίας */
.mosaic-offset {
    margin-top: 100px; /* Σπρώχνει τη μεσαία στήλη προς τα κάτω */
}

.mosaic-card {
    padding: 0 15px;
    text-align: center;
}

.mosaic-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1; /* Τέλεια τετράγωνα για ισορροπία */
    overflow: hidden;
    margin-bottom: 30px;
}

.mosaic-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-card:hover img {
    transform: scale(1.05);
}

.mosaic-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 20px;
    min-height: 3.4rem; /* Για να ευθυγραμμίζονται τα links */
}

/* Responsive: Στο κινητό ακυρώνουμε το offset */
@media (max-width: 768px) {
    .mosaic-offset {
        margin-top: 0;
    }
    .mosaic-card {
        margin-bottom: 60px;
    }
    .post-grid-layout-3 {
        padding: 80px 0;
    }
}

/* --- Linkable Section Header --- */
.section-header-linkable {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.header-anchor {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.dynamic-section-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    color: var(--color-black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    display: block;
}

.view-all-label {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Διακριτική γραμμή που μεγαλώνει στο hover */
.view-all-label::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #ddd;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s;
}

/* Hover Effects */
.header-anchor:hover .dynamic-section-title {
    opacity: 0.7;
}

.header-anchor:hover .view-all-label {
    color: var(--color-black);
}

.header-anchor:hover .view-all-label::after {
    width: 60px;
    background-color: var(--color-black);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dynamic-section-title {
        font-size: 2rem;
    }
    .section-header-linkable {
        margin-bottom: 40px;
    }
}

/* Editorial Duo Specific Styling */
.editorial-duo-section {
    padding: var(--section-spacing) 0;
}

.section-full{
    padding: var(--section-spacing) 0;
}

.duo-grid {
    display: flex;
    align-items: center; /* Κεντράρισμα των στηλών καθ' ύψος */
}

/* Image Containers με Ratios */
.duo-img-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-grey-light);
    position: relative;
}

.portrait-ratio {
    aspect-ratio: 4 / 5; /* Όρθιο για τη μικρή στήλη */
}

.landscape-ratio {
    aspect-ratio: 16 / 9; /* Οριζόντιο για τη μεγάλη στήλη */
}

.duo-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.duo-img-link:hover img {
    transform: scale(1.05);
}

/* Typography & Spacing */
.duo-text-block {
    padding-left: 10%; /* Δημιουργεί τον "λευκό χώρο" του περιοδικού */
}

.duo-big-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 15px 0 25px 0;
    text-transform: none;
    color: var(--color-dark);
}

.duo-small-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    text-transform: none;
    margin-top: 10px;
}

.duo-excerpt {
    font-size: 1.05rem;
    color: var(--color-grey-dark);
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .duo-grid { flex-direction: column; }
    .duo-text-block { padding-left: 0; margin-top: 50px; }
    .duo-big-title { font-size: 1.5rem; }
    .portrait-ratio, .landscape-ratio { aspect-ratio: 1 / 1; } /* Τετράγωνα στα κινητά για ευκολία */
}



/* ==========================================================================
   LAYOUT 4: THE CLEAN QUAD (4 COLUMNS)
   ========================================================================== */
.product-card .product-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--color-grey-light);
}

.product-card img {
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   LAYOUT 5: CINEMATIC SPOTLIGHT
   ========================================================================== */
.cinematic-card {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.cinematic-card:hover {
    transform: translateY(-5px);
}

.cinematic-card .brand-name {
    font-weight: 600;

}

/* Responsive για το Cinematic Split */
@media (max-width: 768px) {
    .cinematic-card {
        flex-direction: column !important;
    }
    .cinematic-card .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /* Στο κινητό η εικόνα παίρνει σταθερό ύψος */
    .cinematic-card img {
        min-height: 350px !important;
        height: 350px !important;
    }
}

/* ==========================================================================
   LAYOUT 6: THE ALTERNATING TRIO
   ========================================================================== */
.editorial-image-wrap {
    box-shadow: 30px 30px 0px var(--color-grey-light); /* Editorial offset effect */
    margin-right: 30px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .editorial-image-wrap {
        margin-right: 0;
        box-shadow: 15px 15px 0px var(--color-grey-light);
        margin-top: 40px;
    }

    /* Αντιστροφή σειράς στο κινητό αν θέλεις η εικόνα να είναι πάνω από το κείμενο */
    .post-grid-layout-6 .row {
        flex-direction: column-reverse;
    }
}

/* ==========================================================================
   SHARED PREMIUM UTILITIES
   ========================================================================== */

/* Μικρό Link για τα Grids */
.premium-link-small {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.premium-link-small:hover {
    border-color: var(--color-black);
    opacity: 0.7;
}

/* Section Spacing Utility */
.section-bg-full {
    padding: var(--section-spacing) 0;
    width: 100%;
}

/* Fix για το no-padding κλάση που χρησιμοποιούμε στο Cinematic */
.no-padding {
    padding: 0 !important;
}

.img-mini {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
}

.has-abstract-bg {
    background: url("./../img/stroke.svg");
    background-position: center;
    background-repeat: repeat-y;
    background-size: contain;
}

/* Newsletter Full Width Section */
.newsletter-full-width {
    width: 100%;
    padding: 100px 0;
    background-color: #c5a059;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}


.newsletter-inner {
    position: relative;
    z-index: 2;
    color: #fff;
}

.nl-logo{
    width: 150px;
    position: absolute;
    top: -150px;
    display: block;
    margin: auto;
    bottom: auto;
    left: 33%;
    z-index: -1;
    background-blend-mode: initial;
}
.newsletter-form .input-group input {
    background: #fff;
    opacity: .8;
    color: #000;
    flex: unset;
    width: 75%;
    margin-right: 5%;
    border-radius: 0;
}

.col-cinematic-spot{
    padding: 60px; display: flex; flex-direction: column; justify-content: center;
}

.sec-health-title{
    font-size: 3rem; text-transform: none; line-height: 1.1; margin: 20px 0;
}

@media (max-width: 768px){
    .nl-logo {
        width: 140px;
        position: relative;
        top: auto;
        display: block;
        margin: auto;
        bottom: auto;
        left: auto;
    }
    .newsletter-inner{
        text-align: center;
    }
    .col-10.offset-1.col-md-12 {
        margin: 0;
    }
    .section-full.post-grid-layout-3 {
        padding-bottom: 0;
    }

    .col-cinematic-spot{
        padding: 20px; display: flex; flex-direction: column; justify-content: center;
    }

    .sec-health-title{
        font-size: 2rem; text-transform: none; line-height: 1.1; margin: 20px 0;
    }
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.1;
    margin: 15px 0 25px 0;
    text-transform: none;
    color: #000;
    text-shadow: 0 0px 1px #666;
}

.newsletter-desc {
    font-family: var(--font-primary); /* Inter */
    font-size: 1.1rem;
    color: #000;
    max-width: 450px;
}

.newsletter-content .brand-name{
    text-shadow: 0 1px 1px #000;
}

/* Form Styling */
.newsletter-form {
    padding-left: 40px;
}

.input-group {
    display: flex;
    border-bottom: 2px solid var(--color-black);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    outline: none;
    padding: 10px 0;
}


.btn-newsletter {
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 20%;
    background: #000;
    color: #fff;
}

.btn-newsletter:hover {
    opacity: 0.6;
}

.form-privacy {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: #333;
}

.form-privacy input {
    margin-right: 8px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .newsletter-full-width { padding: 60px 0; }
    .newsletter-title { font-size: 2.2rem; }
    .newsletter-form { padding-left: 0; margin-top: 40px; }
    .input-group { flex-direction: column; border-bottom: none; }
    .input-group input { border-bottom: 2px solid #000; margin-bottom: 20px; }
    .btn-newsletter {
        text-align: left;
        padding: 10px;
        width: max-content;
    }
}

.header-utility-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.utility-link {
    font-family: var(--font-primary); /* Inter */
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.utility-link:hover {
    opacity: 0.6;
}

.link-icon {
    display: flex;
    align-items: center;
    color: var(--color-black);
}

/* Responsive για κινητά - αν θέλεις να το κρύψεις ή να το μικρύνεις */
@media (max-width: 768px) {
    .utility-link {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}



/*FOOTER*/

/* --- Premium Footer Styling --- */
.site-footer {
    background-color: #fcfcfc;
    border-top: 1px solid var(--color-border);
    padding: 100px 0 40px 0;
    position: relative;
    overflow: hidden;
}

/* Επαναφορά του Grain εφέ για το footer */
.site-footer.has-abstract-grain::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.footer-main-content {
    margin-bottom: 80px;
}

/* Logo & Tagline */
.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer-logo span { color: #888; }

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-grey-dark);
    margin-bottom: 30px;
    max-width: 280px;
}

/* Socials */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s;
}
.social-link:hover { opacity: 0.5; }

/* Headings & Lists */
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: none; /* Premium αίσθηση με πεζά/κεφαλαία */
}

.footer-list {
    list-style: none;
    padding: 0;
}
.footer-list li {
    margin-bottom: 12px;
}
.footer-list a {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-grey-dark);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-list a:hover { color: var(--color-black); }

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #999;
}

.footer-legal-badges {
    text-transform: uppercase;
}
.separator {
    margin: 0 10px;
    color: #ddd;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .site-footer { padding: 60px 0 30px 0; }
    .footer-brand-col { margin-bottom: 50px; }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/*SIDEBAR*/
/* Sidebar Container */
.filters-sidebar {
    background: #fff;
    width: 350px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 50px rgba(0,0,0,0.05);
}

.sidebar-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

/* Group Styling */
.filter-group {
    padding: 25px 30px;
    border-bottom: 1px solid #f8f8f8;
}

.filter-group h4,
.list-group-item strong {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    color: #111;
}

/* Custom Checkbox Design */
.checkbox a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    justify-content: space-between;
}

.checkbox a:hover,
.checkbox.active a {
    color: #000;
}

/* Custom Checkbox Icons */
.bi-square, .bi-check-square {
    margin-right: 12px;
    transition: transform 0.2s ease;
}

.checkbox.active .bi-check-square {
    color: #000;
    transform: scale(1.1);
}

/* Brand & Merchant Counts */
.filter-product-count {
    font-size: 0.7rem;
    font-family: var(--font-primary);
    color: #bbb;
    font-weight: 400;
}

/* Size Boxes (Grid) */
.flex-grid-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    gap: 10px;
}

.size-square-box {
    aspect-ratio: 1/1;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.size-square-box:hover,
.size-square-box.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Color Circles */
.color-circle-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #eee;
    padding: 2px;
    transition: transform 0.2s ease;
    text-align: center;
}

.color-circle-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.color-circle-box.active {
    border-color: #000;
    transform: scale(1.15);
}

/* Merchant Layout */
.merchant-link {
    padding: 12px 0 !important;
}

.merchant-logo-wrapper {
    width: 45px;
    height: 45px;
    background: #f9f9f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-right: 15px;
}

.merchant-img {
    max-width: 100%;
    height: auto;
    filter: grayscale(1);
    opacity: 0.7;
}

.merchant-link.active .merchant-img {
    filter: grayscale(0);
    opacity: 1;
}

.merchant-name {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
}

.merchant-count {
    font-size: 0.7rem;
    color: #999;
}

/* Apply Button (Sticky Mobile) */
.apply-btn {
    margin: 20px 30px 40px;
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.apply-btn:hover {
    opacity: 0.8;
}

/* Mobile Friendly Sidebar */
@media (max-width: 768px) {
    .filters-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

.sticky-sidebar {
    position: relative;
}

.sticky-sidebar::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: -1;
}

/* Βασική κατάσταση Sidebar */
.filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 380px;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%); /* Κρυμμένο αριστερά */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* Όταν είναι ενεργό (ανοιχτό) */
.filters-sidebar.active {
    transform: translateX(0);
}

/* Το μαύρο φόντο (Overlay) που καλύπτει το site όταν ανοίγουν τα φίλτρα */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px); /* Premium θόλωμα */
    z-index: 9998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}
.mobile-only{
    display: none;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
    .filters-sidebar {
        width: 85%; /* Να μην πιάνει όλη την οθόνη για να φαίνεται το overlay */
    }

    .mobile-only{
        display: inherit;
    }

    #sidebar.active {
        display: block;
        z-index: 9999;
        background: #fff;
        top: 0;
        position: fixed;
        overflow: auto;
        height: 100vh;
    }
}

.btn-outline-full {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #000;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.blog-inline-section {
    padding: 60px 0;
    margin: 40px 0;
}

.inline-article-card {
    background: #f9f9f9;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}


@media (max-width: 768px) {
    .inline-article-card{
        padding: 0px;
    }
}

/* Επαναφορά του grain effect για συνοχή */
.inline-article-card.has-abstract-grain::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,..."); /* το SVG που χρησιμοποιήσαμε */
}

.editorial-label {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

.editorial-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin: 15px 0;
}

.read-more-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.editorial-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Αντιστροφή σειράς για το εναλλακτικό layout */
.flex-row-reverse {
    flex-direction: row-reverse;
}

/* Padding adjustments για να μην κολλάει το κείμενο στην εικόνα όταν αλλάζει πλευρά */
.flex-row-reverse .inline-article-content {
    padding-left: 0;
    padding-right: 50px;
}

.inline-article-content {
    padding-left: 50px;
}

/* Mobile Fix: Στο κινητό θέλουμε ΠΑΝΤΑ την εικόνα πάνω από το κείμενο */
@media (max-width: 768px) {
    .flex-row-reverse {
        flex-direction: column-reverse; /* Αντιστροφή ξανά για να μπει η εικόνα (col-5) πάνω */
    }

    .inline-article-content {
        padding: 30px 0 0 0 !important;
        text-align: center;
    }

    .editorial-title {
        font-size: 1.6rem;
    }
}

/* Extra Style για την εικόνα */
.editorial-img-wrapper {
    overflow: hidden;
    height: 450px;
}

.editorial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.inline-article-card:hover .editorial-img {
    transform: scale(1.05);
}


/* Merchant Link & Hover States */
.merchant-link {
    padding: 8px 6px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.merchant-link:hover {
    background-color: #fcfcfc;
}

/* Το Logo Wrapper με το νέο Hover Effect */
.merchant-logo-wrapper {
    width: 64px;
    height: 36px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border-radius: 5px;
    margin-right: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Όταν ο χρήστης περνάει το ποντίκι πάνω από όλο το link, το logo "αντιδρά" */
.merchant-link:hover .merchant-logo-wrapper {
    border-color: #bbb;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.merchant-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Typography */
.merchant-info {
    display: flex;
    flex-direction: column;
}

.merchant-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    transition: color 0.2s;
}

.merchant-link:hover .merchant-name {
    color: #000;
}

.merchant-count {
    color: #999;
    font-size: 11px;
}
.flex-row-between label {
    display: flex !important;
    display: -webkit-flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

h3.title {
    font-size: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Κενό μεταξύ των αριθμών */
    margin: 80px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0; /* Λεπτή διαχωριστική γραμμή πάνω */
}

.pagination a {
    font-family: var(--font-primary); /* Inter */
    font-size: 0.85rem;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 1px;
    position: relative;
}

/* Το ενεργό στοιχείο (active) */
.pagination a.active {
    color: #000;
    font-weight: 700;
}

/* Premium Hover Effect: Μια λεπτή γραμμή που εμφανίζεται από κάτω */
.pagination a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.pagination a:hover {
    color: #000;
}

.pagination a:hover::after,
.pagination a.active::after {
    width: 15px; /* Η γραμμή κάτω από τον αριθμό */
}

/* Στυλ για τα βέλη › και » */
.pagination a[title*="Επόμενη"],
.pagination a[title*="Τελευταία"] {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1;
}

.pagination a[title*="Επόμενη"]:hover,
.pagination a[title*="Τελευταία"]:hover {
    color: #000;
    transform: translateX(3px); /* Μικρή κίνηση προς τα δεξιά */
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .pagination {
        gap: 5px;
        margin: 40px 0;
    }

    .pagination a {
        min-width: 30px;
        font-size: 0.75rem;
    }
}
.product-card{
    position: relative;
}
.product-main-link{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
}


.qv-modal-overlay {
    display: none; /* Κρυφό αρχικά */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.qv-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-modal-window {
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
    padding: 20px;
}

.qv-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 10;
}
.qv-description {
    max-height: 150px;
    overflow-y: auto;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.qv-wrapper {
    display: flex;
    gap: 40px;
    padding: 10px;
    font-family: inherit;
}

.qv-left { flex: 1; position: relative; }
.qv-right { flex: 1.2; display: flex; flex-direction: column; gap: 20px; }

.qv-img-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.qv-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #000; color: #fff;
    padding: 4px 12px; font-size: 12px; font-weight: bold;
}

.qv-brand { color: #888; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.qv-title { font-size: 22px; margin: 5px 0; color: #1a1a1a; line-height: 1.3; }

.price-now { font-size: 28px; font-weight: 800; color: #000; }
.price-then { text-decoration: line-through; color: #aaa; margin-left: 10px; font-size: 18px; }
.qv-save { color: #27ae60; font-weight: bold; margin-top: 5px; }

.qv-options { display: flex; gap: 20px; border-top: 1px solid #eee; padding-top: 15px; }
.qv-option-item label { display: block; font-size: 12px; color: #888; margin-bottom: 4px; }
.size-tag { border: 1px solid #000; padding: 4px 12px; display: inline-block; font-weight: bold; }

.btn-buy-now {
    background: #27ae60; color: #fff;
    padding: 15px; text-align: center;
    text-decoration: none; font-weight: bold;
    border-radius: 4px; display: block;
    transition: background 0.3s;
}

.qv-secondary-btns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px;
}

.qv-secondary-btns button {
    background: #f5f5f5; border: 1px solid #ddd;
    padding: 10px; cursor: pointer; border-radius: 4px;
    font-size: 13px; transition: all 0.2s;
}

.qv-secondary-btns button:hover { background: #eee; border-color: #bbb; }
/* Price Alert Container */
.qv-price-alert {
    background: #f8f9fa;
    border: 1px dashed #ced4da;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.alert-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #495057;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Layout */
.alert-form {
    display: flex;
    gap: 8px;
}

.alert-form input[type="number"] {
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    transition: border-color 0.2s;
}

.alert-form input[type="number"]:focus {
    border-color: #27ae60;
}

/* Το κουμπί ΟΚ / Ενημέρωση */
.alert-form button {
    background: #343a40;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.alert-form button:hover {
    background: #000;
}

/* Spinner Loading Animation */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #27ae60;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.exclude-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex; align-items: center; justify-content: center;
    z-index: 100;
    backdrop-filter: blur(2px);
    border-radius: inherit;
    animation: qvFadeIn 0.3s ease;
}

.exclude-overlay span {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 8px;
}


/* Καμπάνα στην κάρτα προϊόντος */
.btn-price-alert-card {
    position: absolute;
    top: 55px; /* Κάτω από την καρδιά (top: 10px) */
    right: 10px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-price-alert-card:hover {
    background: #3498db;
    color: #fff;
}

/* Κουμπί μέσα στο Quick View */
.btn-alert-trigger {
    width: 100%;
    padding: 12px;
    background: #f8f9fa;
    border: 1px dashed #3498db;
    color: #3498db;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-alert-trigger:hover {
    background: #3498db;
    color: #fff;
}

.custom-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    visibility: hidden; opacity: 0;
    transition: all 0.3s ease;
}

.custom-modal.is-visible {
    visibility: visible; opacity: 1;
}



.modal-content {
    position: relative;
    background: #fff;
    width: 90%; max-width: 450px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 1001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal.is-visible .modal-content {
    transform: scale(1);
}

/* UI Elements */
.alert-bell-icon { font-size: 40px; text-align: center; margin-bottom: 15px; }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 13px; margin-bottom: 5px; color: #666; }
.input-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; }

.btn-submit-alert {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}
/* Το κουμπί της καμπάνας στην κάρτα */
.price-alert-btn {
    position: absolute;
    top: 10px;
    right: 90px;

    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #444;
    padding: 0;
}

/* Hover εφέ */
.price-alert-btn:hover {
    background-color: #f8f9fa;
    color: #3498db; /* Μπλε χρώμα στο hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Animation για την καμπάνα όταν γίνεται hover στην κάρτα */
.product-layout:hover .price-alert-btn svg {
    animation: bellRing 0.6s ease-in-out;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(-10deg); }
}

/* Αν θέλεις να την έχεις αριστερά (όπως στην εικόνα σου) */
/* .price-alert-btn {
    left: 14px;
    right: auto;
}
*/

/* Animation "χτύπου καρδιάς" όταν γίνεται active */
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.wishlist-btn.active i {
    animation: heartBeat 0.4s linear;
}

/* Dark mode compatibility ή αν η κάρτα είναι πολύ λευκή */
.product-layout:hover .wishlist-btn {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    border: 0;
    background: no-repeat;
    cursor: pointer;
}
.success-icon-circle {
    width: 60px;
    height: 60px;
    border: 3px solid #b5e7a0;
    border-radius: 50%;
    color: #b5e7a0;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.alert-info-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

.btn-confirm-ok {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 50px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-confirm-ok:hover {
    background-color: #2980b9;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #b5e7a0; /* Το ανοιχτό πράσινο της εικόνας σου */
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #b5e7a0;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-svg circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #b5e7a0;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-svg path {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.share-fallback-menu {
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: none;
}

.share-fallback-menu a {
    padding: 8px 12px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    transition: color 0.2s;
}

.share-fallback-menu a:hover {
    color: #000;
}



.share-fallback-menu i {
    width: 16px;
    text-align: center;
}

/* Pinterest Color */
.fa-pinterest-p { color: #bd081c; }
/* FB Color */
.fa-facebook-f { color: #1877f2; }


/* Κοινό στυλ για κάθε αστέρι */
.star {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Classes ανάλογα με το status */
.star.starfull {
    color: gold;
    background-image: url('/template/frontend/2026/assets/img/starfull.svg?v=1');
}

.star.starhalf {
    background-image: url('/template/frontend/2026/assets/img/starhalf.svg?v=1');
}

.star.starempty {
    background-image: url('/template/frontend/2026/assets/img/starempty.svg?v=1');
}
.modal-rating-container {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

/* Wrapper που κρατάει τα πάντα σταθερά στα 120px (5x24px) */
.rating-stars-wrapper {
    position: relative;
    width: 120px;
    height: 24px;
    user-select: none;
}

/* Κοινό στυλ για όλα τα layers αστεριών */
.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

/* Layer 1: Τα κενά γκρι αστέρια */
.stars-static {
    z-index: 1;
}

/* Layer 2: Τα γεμάτα χρυσά αστέρια (με overflow:hidden για το ποσοστό) */
.stars-active {
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease;
    pointer-events: none;
}

/* Layer 3: Τα clickable αστέρια (πάνω από όλα) */
.modal-rating-stars {
    z-index: 3;
    flex-direction: row-reverse; /* Για το hover effect */
}

/* Στυλ για το κάθε αστέρι ξεχωριστά */
.star-unit {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: 20px; /* Μικρότερο size για να μην "κολλάνε" μεταξύ τους */
    background-position: center;
    background-repeat: no-repeat;
}

.star-unit.empty {
    background-image: url('/template/frontend/2026/assets/img/starempty.svg?v=1');
    opacity: 0.3;
}

.star-unit.full {
    background-image: url('/template/frontend/2026/assets/img/starfull.svg?v=1');
}

/* Clickable stars */
.rate-star {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Hover Logic: Όταν ακουμπάς το wrapper, κρύβουμε το στατικό rate */
.modal-rating-stars:hover ~ .stars-active {
    opacity: 0;
}

/* Δείχνουμε το "full" star στο hover */
.rate-star:hover,
.rate-star:hover ~ .rate-star {
    background-image: url('/template/frontend/2026/assets/img/starfull.svg?v=1');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Όταν ο χρήστης έχει ψηφίσει, απενεργοποιούμε τα hover εφέ */
.rating-stars-wrapper.is-voted .modal-rating-stars {
    /*pointer-events: none; !* Δεν μπορεί να ξαναψηφίσει μέχρι το refresh *!*/
}

/* Διασφαλίζουμε ότι το stars-active ΔΕΝ θα κρυφτεί στο hover αν έχει ήδη ψηφίσει */
.rating-stars-wrapper.is-voted .modal-rating-stars:hover ~ .stars-active {
    opacity: 1 !important;
}

/* Προαιρετικά: Αλλάζουμε λίγο το χρώμα των αστεριών μετά την ψήφο για επιβεβαίωση */
.rating-stars-wrapper.is-voted .star-unit.full {
    filter: saturate(1.5) drop-shadow(0 0 2px rgba(241, 196, 15, 0.5));
}
/* Για το rating-info */
.rating-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}





/* 1. Layout & Container */
.premium-wrapper {
    max-width: 1300px;
    margin: 40px auto;
}

.product-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .product-container { grid-template-columns: 1fr; gap: 30px; }
}

/* 2. Gallery & Main Image */
.main-image {
    position: relative;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image:hover img {
    transform: scale(1.05);
}

.badge-sale {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--p-black);
    color: #fff;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

/* 3. Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border: 1px solid var(--p-border);
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.thumb-item.active, .thumb-item:hover {
    opacity: 1;
    border-color: var(--p-gold);
}

/* 4. Intel Cards Grid */
.intel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.intel-card {
    padding: 20px;
    background: var(--p-gray);
    border-radius: 2px;
}

.intel-card h5 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 8px;
}

.intel-card p {
    font-size: 0.85rem;
    color: var(--p-black);
    margin: 0;
    font-weight: 500;
}

/* 5. Comparison Box (Price Rows) */
.comparison-box {
    border: 1px solid var(--p-border);
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
}

.store-row {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--p-border);
    background: #fff;
    transition: background 0.2s;
}

.store-row:last-child { border-bottom: none; }
.store-row:hover { background: #fafafa; }

.store-logo {
    height: 30px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.price-tag {
    margin-left: auto;
    margin-right: 25px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--p-black);
}

.btn-go {
    background: var(--p-black);
    color: #fff !important;
    padding: 12px 24px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-go:hover {
    background: var(--p-gold);
}

/* 6. Typography Adjustments */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--p-black);
}

/* 7. Share Fallback Menu (THE FIX) */
/* Σιγουρέψου ότι το parent στοιχείο στην PHP έχει class 'card-dropdown' ή παρόμοιο */
.share-fallback-menu {
    display: none; /* Ελέγχεται από JS */
    position: absolute;
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: var(--p-shadow);
    z-index: 9999;
    min-width: 200px;
    flex-direction: column;
    padding: 10px 0;
    margin-top: 5px;
}

.share-fallback-menu a {
    padding: 12px 20px;
    font-size: 0.85rem;
    color: #444;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-fallback-menu a:hover {
    background: var(--p-gray);
    color: var(--p-gold);
}

/* 8. Spotlight Section */
.brand-spotlight {
    background: #000;
    color: #fff;
    padding: 80px 0;
    margin: 80px calc(-50vw + 50%);
    width: 100vw;
}

.spotlight-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.spotlight-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
}

.spotlight-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* 9. Video Gallery */
.spotlight-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Container & General Elements --- */
.comments-section {
    max-width: 800px;
    margin: 5px auto;
    padding: 0 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
}

.comments-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- Comment Forms (Main & Reply) --- */
.comments-section textarea {
    width: 100%;
    min-height: 120px;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
}

.comments-section textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #fcfdfe;
}

.btn-submit-comment, .btn-submit-small {
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-submit-comment {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    margin-top: 10px;
}

.btn-submit-comment:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-submit-small {
    background: #2c3e50;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 8px;
}

.reply-form-container {
    margin-left: 5px;
    padding: 5px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 10px;
}

/* --- Comment Item Card --- */
.comment-item {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border-color: #e0e0e0;
}

/* Nested/Reply Styling */
.comment-item.is-reply {
    margin-left: 10px;
    background: #fcfcfc;
    border-left: 3px solid #3498db;
}

/* Pending Approval Styling */
.comment-item.pending-approval {
    background-color: #fff9f4;
    border: 1px dashed #e67e22;
    border-left: 3px solid #e67e22;
    opacity: 0.9;
}

/* --- Header Elements (User Info) --- */
.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: flex-start;
}
.comment-header .user-info {
    width: 100%;
}
.comment-header img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    background: #2c3e50;
    border: 2px solid #f0f0f0;
}

.user-info a {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    display: block;
    line-height: 1.2;
}

.user-info a:hover {
    color: #3498db;
}

.user-info small {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* --- Content & Buttons --- */
.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    padding-left: 5px;
    margin-bottom: 15px;
}

.reply-btn {
    margin-left: 5px;
    background: #f8f9fa;
    border: 1px solid #eee;
    color: #555;
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.reply-btn:hover {
    background: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
}

.profile-container {
    max-width: 935px;
    margin: 30px auto;
    padding: 20px;
}

/* Header Logic */
.profile-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.profile-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
    padding: 5px;
}

.profile-username-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-username-row h1 {
    font-size: 28px;
    font-weight: 300;
}

.btn-edit-profile {
    border: 1px solid #dbdbdb;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #262626;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.profile-bio {
    font-size: 14px;
    line-height: 1.5;
}

/* Feed Logic (FB Style) */
.activity-feed {
    max-width: 100%;
    margin: 0 auto;
    width: 700px;
}

.feed-card {
    background: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    margin-bottom: 25px;
    padding: 15px;
}

.feed-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mini-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.feed-card-header small {
    display: block;
    color: #8e8e8e;
}

.feed-comment {

    margin: 0;
}

.feed-photo {
    width: 100%;
    border-radius: 4px;
}

.activity-type {
    font-size: 13px;
    color: #8e8e8e;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header { flex-direction: column; text-align: center; }
    .profile-stats { justify-content: center; }
}

.comment-resolved-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-top: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.comment-resolved-box:hover {
    transform: translateY(-2px);
    border-color: #3498db;
    background: #fff;
}

.resolved-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.resolved-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resolved-info {
    padding: 10px 15px;
    overflow: hidden;
}

.resolved-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #3498db;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.resolved-title {
    margin: 0;
    font-size: 14px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resolved-link {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    display: inline-block;
}
.feed-card-actions {
    display: flex;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
    margin: 10px 0;
    padding: 4px 0;
}



.feed-comment-wrapper {
    padding-top: 10px;
    animation: fadeIn 0.3s ease;
}


/* WWW DARK FOOTER EXΑCT */
.site-footer.www-dark {
    background-color: var(--color-black) !important;
    color: var(--color-white);
    padding: 80px 0 40px 0;
    text-align: center;
}

.www-footer-row {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Logo Fix for Dark */
.footer-logo.light {
    color: var(--color-white) !important;
    margin-bottom: 0;
}

.footer-logo.light span {
    color: var(--p-gold);
}

/* Centered Links */
.www-centered-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
}

.www-centered-links.magazine a {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.www-centered-links.secondary a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #888; /* Muted γκρι για τα δευτερεύοντα */
    text-decoration: none;
    text-transform: uppercase;
}

.www-centered-links a:hover {
    opacity: 0.7;
}

/* Socials Row */
.www-socials-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 20px 0;
    width: 100%;
}

.www-socials-row a {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    text-decoration: none;
}

/* Copyright Section */
.www-footer-bottom {
    margin-top: 40px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .www-centered-links { gap: 20px; }
    .www-socials-row { gap: 20px; flex-direction: column; }
}

.www-footer-row a svg {
    width: 44px;
    height: 44px;
}

.social-row {
    gap: 40px;
}

/* --- Static Pages Premium Look --- */

.static-page-wrapper {
    padding: 100px 0;
    max-width: 900px; /* Περιορίζουμε το πλάτος για premium αίσθηση */
    margin: 0 auto;
}

.static-breadcrumb {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-grey-dark);
    margin-bottom: 20px;
}

.static-breadcrumb span {
    margin: 0 10px;
    opacity: 0.3;
}

.static-page-header {
    margin-bottom: 60px;
}

.page-entry-title {
    font-family: var(--font-serif); /* Tenor Sans */
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-black);
    line-height: 1;
    margin-bottom: 30px;
    text-transform: none;
}

.header-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-black);
}

/* Content Typography */
.static-content {
    font-family: var(--font-primary); /* Inter */
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--p-black);
}

/* Styling για τα στοιχεία μέσα στο content που έρχονται από το CMS */
.static-content p {
    margin-bottom: 25px;
}

.static-content h2, .static-content h3 {
    font-family: var(--font-serif);
    margin: 50px 0 20px 0;
    color: var(--color-black);
}

.static-content h2 { font-size: 1.8rem; }

.static-content strong {
    font-weight: 700;
    color: var(--color-black);
}

.static-content a {
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.static-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.static-content ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.static-content ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--p-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .static-page-wrapper {
        padding: 60px 20px;
    }
    .page-entry-title {
        font-size: 2.5rem;
    }
}

/* --- Favorite Spots Premium Portrait CSS --- */

.favorite-spots-section {
    padding: 80px 0;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 60px; /* Μεγάλες αποστάσεις για editorial αίσθηση */
}

/* Base Spot Item (Portrait) */
.spot-item {
    display: flex;
    flex-direction: column;
}

.spot-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image Wrapper με σταθερό Portrait Ratio */
.spot-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 2 / 3; /* Επιβολή κάθετου κάδρου */
    background-color: #f8f8f8;
}

.spot-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Γεμίζει το ratio χωρίς να παραμορφώνει */
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Wide Item Fix: Δίπλα-δίπλα αλλά χωρίς να χαλάει η εικόνα */
.spot-wide {
    grid-column: span 2;
}

.spot-wide .spot-link {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spot-wide .spot-image-wrapper {
    flex: 0 0 50%; /* Η εικόνα παίρνει το μισό πλάτος */
    margin-bottom: 0;
}

.spot-wide .spot-content {
    flex: 1;
    max-width: 450px; /* Περιορίζουμε το κείμενο για να μην απλώνει */
}



.spot-title {
    font-family: var(--font-serif); /* Tenor Sans */
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: 20px;
}

.spot-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-grey-dark);
    margin-bottom: 25px;
}

.spot-read-more {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 5px;
    color: var(--color-black);
    text-transform: uppercase;
}

/* Overlay & Interaction */
.spot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spot-overlay span {
    font-size: 11px;
    font-weight: 800;
    color: white;
    background: var(--color-black);
    padding: 12px 20px;
}

.spot-item:hover .spot-image-wrapper img {
    transform: scale(1.05);
}

.spot-item:hover .spot-overlay {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .spot-wide .spot-link {
        flex-direction: column;
    }
    .spot-wide .spot-image-wrapper {
        width: 100%;
        flex: none;
    }
    .spots-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.spots-editorial-header {
    max-width: 900px;
    margin: 0 auto 80px auto;
    padding-top: 40px;
}

.editor-profile {
    display: flex;
    align-items: center;
    gap: 50px;
}

.editor-image {
    flex: 0 0 180px;
    height: 180px;
    border-radius: 50%; /* Κυκλική φωτό για πιο προσωπικό ύφος */
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.editor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Για να δένει με το minimal vibe */
}

.editor-bio {
    flex: 1;
}

.editor-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--p-gold);
    display: block;
    margin-bottom: 10px;
}

.editor-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-grey-dark);
    margin: 15px 0;
}

.editor-signature {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic; /* Δίνει μια πιο προσωπική νότα */
    color: var(--color-black);
    display: inline-block;
    border-bottom: 1px solid var(--p-gold); /* Μια διακριτική χρυσή γραμμή από κάτω */
    padding-bottom: 2px;
}

/* Στο grid των posts */
.spot-author {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--p-gold);
    text-transform: uppercase;
    /* Αλλαγή κειμένου μέσω PHP ή JS σε: ΕΠΙΜΕΛΕΙΑ: ΕΥΗ ΣΤΡΑΓΑΛΗ */
}

.header-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    margin-top: 60px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .editor-profile {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .editor-image {
        flex: 0 0 150px;
        height: 150px;
    }
}

.editor-footer {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
}

.editor-socials {
    display: flex;
    gap: 15px;
}

.editor-socials a {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-black);
    text-decoration: none;
    border: 1px solid var(--color-black);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.editor-socials a:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .editor-footer {
        flex-direction: column;
        gap: 15px;
    }
}

.spot-single-wrapper {
    max-width: 800px; /* Στενό layout για καλύτερο διάβασμα */
    margin: 0 auto;
    padding: 80px 20px;
}

.spot-header {
    text-align: center;
    margin-bottom: 50px;
}

.spot-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-top: 20px;
}

.spot-featured-image {
    margin-bottom: 60px;
}

.spot-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.spot-entry-content {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

/* Styling για τις εικόνες που μπορεί να υπάρχουν ΜΕΣΑ στο κείμενο */
.spot-entry-content img {
    max-width: 100%;
    height: auto;
    margin: 40px 0;
}

.back-link {
    display: inline-block;
    margin-top: 80px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
}

/* --- Desktop Grid --- */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 60px;
}

.spot-item {
    display: flex;
    flex-direction: column;
}

.spot-wide {
    grid-column: span 2;
}

.spot-wide .spot-link {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spot-wide .spot-image-wrapper {
    flex: 0 0 50%;
    margin-bottom: 0;
}

/* --- Mobile Fix: All Spots Wide --- */
@media (max-width: 991px) {
    .spots-grid {
        grid-template-columns: 1fr; /* Μία στήλη */
        gap: 50px;
    }

    /* Κάνουμε όλα τα spots (και τα απλά και τα spot-wide) να συμπεριφέρονται ως "wide" full-width */
    .spot-item, .spot-wide {
        grid-column: span 1;
        width: 100%;
    }

    .spot-item .spot-link, .spot-wide .spot-link {
        display: flex;
        flex-direction: column; /* Εικόνα πάνω, κείμενο κάτω */
        gap: 20px;
    }

    .spot-image-wrapper, .spot-wide .spot-image-wrapper {
        width: 100%;
        flex: none;
        aspect-ratio: 2 / 3; /* Διατήρηση portrait ratio */
    }

    .spot-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 991px) {
    /* Δίνουμε αέρα δεξιά-αριστερά σε όλο το section */
    .favorite-spots-section {
        padding: 60px var(--gutter); /* Χρησιμοποιούμε τη μεταβλητή σου (24px) */
    }

    .spots-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        width: 100%;
    }

    /* Διασφαλίζουμε ότι τα wide items δεν ξεφεύγουν */
    .spot-item, .spot-wide {
        grid-column: span 1;
        width: 100%;
        padding: 0; /* Τα αφήνουμε να πάρουν το padding του section */
    }

    .spot-item .spot-link, .spot-wide .spot-link {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .spot-image-wrapper {
        width: 100%;
        aspect-ratio: 2 / 3;
    }
}
/* Typography για το Single (βάσει του styles.css σου) */
.spot-main-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    text-align: center;
    margin: 20px 0 15px;
}

.spot-single-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.spot-footer-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background-color: var(--color-grey-light); /* Το #f4f4f4 από το root σου */
    text-align: center;
    border-top: 1px solid var(--p-border);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-black);
    margin-bottom: 20px;
    text-transform: none;
}

.cta-text {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-grey-dark);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.cta-text span {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-black);
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-link {
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-link:hover {
    border-bottom-color: var(--p-gold);
}

.cta-divider {
    color: var(--p-gold);
    font-weight: 300;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .spot-footer-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .cta-contact {
        flex-direction: column;
        gap: 10px;
    }

    .cta-divider {
        display: none;
    }
}

/* Καθαρισμός των στοιχείων μέσα στο περιεχόμενο */
.spot-entry-content * {
    max-width: 100% !important; /* Να μην ξεχειλώνουν οι εικόνες */

}

.spot-entry-content span,
.spot-entry-content p,
.spot-entry-content div {
    /* Αγνοεί τα χρώματα και τα fonts που έρχονται από copy-paste */
    background-color: transparent !important;
    font-family: inherit !important;
}

/* Διόρθωση των περίεργων κενών (margins/paddings) που έρχονται απέξω */
.spot-entry-content p {
    margin-top: 0 !important;
    margin-bottom: 25px !important; /* Επιβολή του δικού σου κενού */
    line-height: 1.8 !important;
}


/* Premium Editorial Divider */
.spot-entry-content hr {
    border: none;
    height: 1px;
    background-color: var(--p-gold); /* Το χρυσό σου χρώμα */
    width: 60px; /* Μικρή και κομψή γραμμή */
    margin: 50px auto; /* Μεγάλο κενό πάνω-κάτω για να αναπνέει το κείμενο */
    opacity: 0.6;
}

/* Καθαρισμός των κενών αν υπάρχουν πολλά hr ή κενά p */
.spot-entry-content hr + br,
.spot-entry-content br + hr {
    display: none;
}


/* Styling για τους τίτλους μέσα στο περιεχόμενο */
.spot-entry-content h2 {
    font-family: var(--font-primary);
    font-size: 1.85rem; /* Ιδανικό μέγεθος για ανάγνωση */
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-black);
    margin: 60px 0 25px 0; /* Μεγάλο κενό πάνω για να χωρίζει τις ενότητες */
    letter-spacing: -0.02em; /* Ελαφρύ σφίξιμο για πιο "fashion" look */
    position: relative;
    display: block;
}

/* Προαιρετικό: Μια μικρή λεπτομέρεια αριστερά από τον τίτλο */
.spot-entry-content h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--p-gold);
    opacity: 1; /* Βάλτο 1 αν θέλεις μια χρυσή κάθετη γραμμή δίπλα στο h2 */
}

/* Mobile H2 */
@media (max-width: 768px) {
    .spot-entry-content h2 {
        font-size: 1.6rem;
        margin: 45px 0 20px 0;
    }
}

/* Container για αέρα μέσα στο άρθρο */
.minimalista-tip-wrapper {
    margin: 70px 0;
    padding: 0;
}

.minimalista-tip-box {
    background-color: #fff;
    border: 1px solid var(--p-border);
    padding: 50px 40px 40px 40px;
    position: relative;
    box-shadow: var(--p-shadow); /* Το σκιερό εφέ που έχεις στο root */
}

/* Μικρό label πάνω από τον τίτλο */
.tip-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--p-gold);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 15px;
    text-transform: uppercase;
}

/* Ο τίτλος MiNiMALiSTA tip ✨ */
.minimalista-tip-box .tip-header {
    font-family: var(--font-serif);
    font-size: 1.5rem !important;
    color: var(--color-black) !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: 1px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Το περιεχόμενο του tip */
.minimalista-tip-box .tip-content p {
    font-family: var(--font-primary);
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: var(--color-grey-dark) !important;
    margin-bottom: 0 !important;
    font-style: italic; /* Δίνει το "inside info" vibe */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .minimalista-tip-box {
        padding: 40px 25px 30px 25px;
        margin: 0 10px;
    }
    .tip-badge {
        left: 20px;
    }
}

.spot-tags-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--p-border);
}

.spot-tags-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spot-tag-item {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-grey-dark);
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.spot-tag-item:hover {
    color: var(--p-gold); /* Το χρυσό σου για το hover */
}
.author-signature {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--p-border);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-grey-dark);
    text-align: center;
}

/* Layout Structure */
.static-layout-container {
    display: flex;
    gap: 80px;
    margin-top: 60px;
    margin-bottom: 100px;
}

/* Sidebar Styling */
.static-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 40px;
    height: fit-content;
}

.sidebar-title {
    font-family: var(--font-serif);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--p-border);
    padding-bottom: 15px;
}

.static-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-nav li {
    margin-bottom: 15px;
}

.static-nav-link {
    font-family: var(--font-primary);
    font-size: 13px;
    text-decoration: none;
    color: var(--color-grey-dark);
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.static-nav-link:hover {
    color: var(--p-gold);
    padding-left: 5px;
}

/* Η ενεργή σελίδα (Active State) */
.static-nav-link.is-active {
    font-weight: 700;
    color: var(--color-black);
    border-left: 2px solid var(--p-gold);
    padding-left: 10px;
}

/* Main Content Adjustments */
.static-page-wrapper {
    flex-grow: 1;
    max-width: 800px;
}

.static-page-header h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .static-layout-container {
        flex-direction: column;
        gap: 40px;
    }

    .static-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        border-bottom: 1px solid var(--p-border);
        padding-bottom: 30px;
    }

    .static-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .static-nav li {
        margin-bottom: 0;
    }
}

/* Partnerships Page Styles */
.partnerships-page .intro-lead {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 50px;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.partnership-card {
    border: 1px solid var(--p-border);
    padding: 30px;
    transition: all 0.3s ease;
}

.partnership-card:hover {
    border-color: var(--p-gold);
    background-color: #fafafa;
}

.card-number {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 800;
    color: var(--p-gold);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.partnership-card h3 {
    font-family: var(--font-serif) !important;
    font-size: 1.2rem !important;
    margin: 0 0 15px 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partnership-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-grey-dark);
}

/* Contact CTA Section */
.contact-cta {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid var(--p-border);
    margin-top: 60px;
}

.premium-button {
    display: inline-block;
    background: var(--color-black);
    color: #fff!important;
    padding: 15px 40px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 25px;
    transition: background 0.3s ease;
}

.premium-button:hover {
    background: var(--p-gold);
}

/* Mobile */
@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
    }
}

/* Search Help Page Custom Styles */
.search-help-page .intro-lead {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 50px;
    text-align: center;
}

.search-tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.search-tip-card {
    padding: 20px;
    border-bottom: 1px solid var(--p-border);
}

.tip-icon {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 800;
    color: var(--p-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.search-tip-card h3 {
    font-family: var(--font-serif) !important;
    font-size: 1.15rem !important;
    margin: 0 0 10px 0 !important;
    color: var(--color-black) !important;
}

.search-tip-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-grey-dark);
}

.search-tip-card strong {
    color: var(--color-black);
}

/* Responsive */
@media (max-width: 768px) {
    .search-tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact Page Custom Styles */
.contact-page .intro-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-section {
    padding: 0 20px;
}

.contact-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--p-gold);
    margin-bottom: 15px;
}

.contact-section h3 {
    font-family: var(--font-serif) !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
    color: var(--color-black) !important;
}

.contact-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-grey-dark);
    margin-bottom: 20px;
}

.contact-link {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--p-gold);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--p-gold);
}

/* Footer Details */
.contact-details-footer {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--p-border);
}

.detail-item {
    text-align: center;
}

.detail-item strong {
    display: block;
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 5px;
}

.detail-item span {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-grey-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .contact-details-footer {
        flex-direction: column;
        gap: 30px;
    }
}
.spot-entry-content img {
    display: block;
}
.faq-group-title {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--p-gold);
    margin: 50px 0 20px 0;
    border-bottom: 1px solid var(--p-border);
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .static-layout-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .static-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        border-bottom: 1px solid var(--p-border);
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .sidebar-title {
        font-size: 10px;
        margin-bottom: 15px;
        border: none;
        padding: 0;
        text-align: center;
        color: var(--p-gold); /* Μικρή πινελιά χρώματος */
    }

    /* Μετατροπή της λίστας σε οριζόντιο scroll */
    .static-nav ul {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 20px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch; /* Smooth scroll για iOS */
        scrollbar-width: none; /* Απόκρυψη scrollbar για Firefox */
    }

    .static-nav ul::-webkit-scrollbar {
        display: none; /* Απόκρυψη scrollbar για Chrome/Safari */
    }

    .static-nav li {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .static-nav-link {
        font-size: 12px;
        padding: 5px 0;
    }

    .static-nav-link.is-active {
        border-left: none;
        border-bottom: 2px solid var(--p-gold); /* Η υπογράμμιση δείχνει καλύτερα στο κινητό */
        padding-left: 0;
    }
}


ul li.active a {
    font-weight: 600;
    border-bottom: 2px solid var(--p-gold);
}

#close-drawer {
    position: absolute;
    top: 0;
    right: 10px;
}

.has-submenu{
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    z-index: 100;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    right: -30px;
    gap: 20px;
    text-align: left;
    top: 49px;
    border: 1px solid #e8e8e8;
    border-top: 0;
}

.has-submenu:hover .submenu {
    display: flex;
}

.main-nav > ul > li:hover > a,.submenu a:hover {
    color: var(--p-gold);
}

.header-right{
    white-space: nowrap;
    font-weight: bold;
}

/* 1. Background & Wrapper */
.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    /* Η υφή χαρτιού που χρησιμοποιούμε στο site */
    background-color: #fdfdfd;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-blend-mode: soft-light;
}

/* 2. Container */
.auth-container {
    background: #ffffff;
    max-width: 450px;
    width: 100%;
    padding: 60px 50px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    text-align: center;
}

/* 3. Typography */
.auth-title {
    font-family: var(--font-serif); /* Η Serif γραμματοσειρά της Εύης */
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* 4. Social Buttons */
.social-auth-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0; /* Minimal square design */
    transition: all 0.3s ease;
}

/* Google Button Style */
.btn-social.google {
    background-color: #fff;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.btn-social.google:hover {
    background-color: #f9f9f9;
    border-color: #d4af37; /* Gold touch on hover */
    transform: translateY(-2px);
}

/* Facebook Button Style */
.btn-social.facebook {
    background-color: #1877f2;
    color: #fff;
    border: 1px solid #1877f2;
}

.btn-social.facebook:hover {
    background-color: #155db2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.2);
}

/* 5. Footer Text */
.auth-footer {
    margin-top: 35px;
    font-family: var(--font-primary);
    font-size: 11px;
    color: #999;
    line-height: 1.5;
}

.auth-footer a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #d4af37;
    transition: all 0.2s;
}

.auth-footer a:hover {
    color: #d4af37;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-container {
        padding: 40px 25px;
    }
    .auth-title {
        font-size: 1.8rem;
    }
}

/* Το εξωτερικό container */
.ad-slot-container {
    background: #f9f9f9; /* Πολύ απαλό γκρι αντί για το έντονο light-grey */
    padding: 20px;
    border: 1px solid var(--p-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Δεσμεύουμε χώρο για να μην "πηδάει" το περιεχόμενο */
}

/* Ο τίτλος Advertise Here */
.ad-label h5 {
    margin-bottom: 15px;
}

.ad-label a {
    font-family: var(--font-primary);
    font-size: 13px;
    letter-spacing: 2px;
    /*color: var(--p-gold);*/
    text-decoration: none;
    text-transform: uppercase;
}

/* Το wrapper της διαφήμισης */
.ad-wrapper {
    width: 100%; /* Εξασφαλίζει ότι η Google βλέπει το πλάτος της στήλης */
    display: block;
    overflow: hidden;
}

/* Fix για το AdSense */
.adsbygoogle {
    width: 100% !important;
    height: auto !important;
}


/* --- Minimalista Hero Slider (Queen.gr Style) --- */

.minimalista-hero-slider {
    position: relative;
    background: #fdfaf6; /* Το χαρακτηριστικό κρεμ/off-white φόντο */
    overflow: hidden;
    width: 100%;
}

.mainHeroSwiper {
    width: 100%;
    height: auto;
}

.hero-slide-container {
    display: flex;
    flex-direction: row;
    min-height: 600px; /* Ιδανικό ύψος για desktop */
    height: 85vh;
}

/* --- Αριστερό Μέρος: Κείμενο --- */
.hero-slide-text {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4% 0 7%;
    background: #fdfaf6;
    position: relative;
    z-index: 2;
}



.category-label {
    font-family: var(--font-primary); /* Η sans-serif γραμματοσειρά σου */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 25px;
    display: block;
}




.slide-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 400;
    z-index: 2;
    margin-top: 50px;
    text-transform: none;
}

.slide-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.slide-title a:hover {
    opacity: 0.7;
}

/* --- Δεξί Μέρος: Εικόνα --- */
.hero-slide-image {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Το Overlay "M" στην εικόνα */
.brand-overlay-q {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 6rem);
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    pointer-events: none;
    z-index: 3;
}

/* --- Pagination (Αριθμοί στυλ 01 / 05) --- */
.swiper-pagination {
    position: absolute;
    top: 25% !important; /* Ευθυγράμμιση με τη γραμμή */
    left: 10% !important;
    bottom: auto !important;
    width: auto !important;
    transform: translateY(-200%); /* Τοποθέτηση πάνω από τη γραμμή */
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: left !important;
    z-index: 10;
}

/* Κρύβουμε το mobile pagination στο desktop αν χρειάζεται */
.slide-pagination-mobile {
    display: none;
}
.swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    /* 1. Θέση στο 22.5% (το κέντρο του 45% που είναι το text area) */
    left: 26.5% !important;
    top: 8% !important; /* Προσαρμογή ύψους */

    /* 2. Μετατόπιση ώστε το κέντρο του ίδιου του στοιχείου να ευθυγραμμιστεί */
    transform: translateX(-50%) !important;

    /* 3. Styling */
    width: auto !important;
    text-align: center !important;
    font-size: 50px;
    font-family: var(--font-primary);
    white-space: nowrap;
}
.category-label {
    text-align: center;
}

.minilist-img{
    height:350px; object-fit:cover;
}

.the-blog{
    margin-bottom: 30px;

}
/* --- Responsive Layout (Mobile) --- */
@media (max-width: 991px) {
    .hero-slide-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .hero-slide-text {
        flex: 1 0 auto;
        padding: 40px 20px;
        order: 2;
    }

    .hero-slide-text::after {
        display: none; /* Αφαιρούμε τη γραμμή στα κινητά για καθαρότητα */
    }

    .hero-slide-image {
        flex: 0 0 400px;
        order: 1;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .swiper-pagination {
        top: auto !important;
        bottom: 20px !important;
        left: 20px !important;
        transform: none;
    }

    .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
        display: none;
    }

    .slide-title{
        margin-top:10px;
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .spots-section{
        padding-inline: 15px !important;
    }

    .newsletter-form .input-group {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .spots-section{
        margin-top: 0;
    }

    .row.flow-row {
        overflow: auto;
        flex-wrap: nowrap;
    }
    .row.flow-row .col-3 {
        flex: 0 0 85%;
    }

    .flow-row .post-title-default{
        font-size: 1.1rem;
    }
    .link-icon svg {
        width: 22px;
        height: 22px;
    }

    .the-blog::before {
        content: "";
        display: block;
        margin: auto;
        width: 100px;
        background: var(--p-gold);
        height: 1px;
        margin-top: -40px;
        margin-bottom: 40px;
    }

    .dynamic-section-title{
        margin-inline: 10px;
    }
}

@media (max-width: 768px) and (min-width: 885px){
    font-size: 13px!important;
}


@media (max-width: 993px){
    .main-nav > ul{
        letter-spacing: 0;
    }
}

.post-info {
    margin-top: 10px;
}

.img-mini-rev{
    margin-right: 15px;
}
.no-pad-top {
    padding-top: 0;
}
.category-label bdi {
    display: inline-block;
    padding: 3px 5px;
    background: var(--p-gold);
    color: #fff;
    font-weight: 600;
}
.post-title-default{
    font-size:1.6rem;
    font-family: var(--font-primary);
    line-height: 1.3;
    text-align: left;
}

.font-serif{
    font-family: var(--font-serif);
    font-size: 1.8rem;
    text-align: center;
}



.lbp-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    font-family: sans-serif;
}
.lbp-map-frame {
    border: 0;
    display: block;
    width: 100%;
    height: 300px;
}
.lbp-content {
    padding: 20px;
}
.lbp-title {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.4em;
}
.lbp-rating {
    margin-bottom: 15px;
    color: #f1c40f;
    font-size: 1.1em;
}
.lbp-rating-text {
    color: #666;
    font-size: 0.8em;
    margin-left: 5px;
}
.lbp-details {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.lbp-details p {
    margin: 5px 0;
}
.lbp-details a {
    color: #0073aa;
    text-decoration: none;
}
.lbp-schedule-box {
    margin: 15px 0;
    padding: 12px;
    background: #f9f9f9;
    border-left: 4px solid #f1c40f;
    font-size: 14px;
}
.lbp-schedule-text {
    white-space: pre-wrap;
}
.lbp-social-container {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lbp-social-btn {
    background: #0073aa;
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: opacity 0.2s;
}
.lbp-social-btn:hover {
    opacity: 0.8;
}