/* ==========================================
   SECONDARY.CSS - A-ART.GR (DEFERRED LOAD)
   Focus: WooCommerce, Grids, My Account, Footer
   ========================================== */

/* 3. MODERN PRODUCT GRID (GALLERY STYLE) */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px 30px;
    list-style: none;
    padding: 0;
}

.product {
    background: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0 0 20px 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Image zoom effect on hover for elegant presentation */
.product-image-wrapper {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 15px;
    background: var(--bg-alt); /* Placeholder color before image loads */
}

.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Κάνει όλες τις εικόνες τέλεια τετράγωνα */
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.product:hover img {
    transform: scale(1.05); /* Ανεπαίσθητο zoom στην τέχνη */
}

/* Product Titles & Typography */
.woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 15px 5px;
    text-align: center;
}

/* 4. B2B PRICE & ACTION BUTTONS */
.price {
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 5px 15px 15px;
    text-align: center;
}

.b2b-login-link {
    display: inline-block;
    color: var(--accent) !important;
    text-align: center;
    padding: 5px 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid transparent;
    margin: auto 15px 0;
}

.b2b-login-link:hover {
    border-bottom: 1px solid var(--accent);
}

.button.add_to_cart_button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    width: calc(100% - 30px);
    margin: auto 15px 0;
    transition: background 0.3s ease;
}

.button.add_to_cart_button:hover {
    background: #000;
}

/* 5. SHOPPING CART & NOTIFICATIONS (MODERN LOOK) */
.woocommerce-message, .woocommerce-error {
    background: var(--bg-alt);
    border-left: 3px solid var(--success);
    padding: 15px 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

/* 6. RESPONSIVE OPTIMIZATION */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
    .product-image-wrapper { margin-bottom: 10px; }
    .woocommerce-loop-product__title { font-size: 0.95rem; }
    .price { font-size: 1rem; }
    .button.add_to_cart_button { font-size: 0.75rem; padding: 10px; }
}

/* CATEGORY CARDS */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.cat-card {
    background: var(--bg-alt);
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: transform 0.3s ease, background 0.3s ease;
}

.cat-card:hover {
    transform: translateY(-3px);
    background: #f3f4f6;
}

.cat-card h3 { font-size: 1.1rem; margin: 0; font-weight: 400; }
.cat-card img { max-width: 60px; margin-bottom: 15px; opacity: 0.8; }

/* SINGLE PRODUCT LAYOUT */
.product-grid-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.product-title { 
    font-size: 2.5rem; 
    font-weight: 300; 
    margin: 0 0 10px 0; 
    color: var(--primary); 
    line-height: 1.2;
}

.sku-b2b { color: var(--secondary); margin-bottom: 30px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* B2B ACTION BOX (ELEGANT UPGRADE) */
.b2b-action-box {
    background: var(--bg-alt);
    padding: 35px;
    border-radius: var(--radius);
    margin: 40px 0;
    border: 1px solid var(--border);
}

.catalog-notice {
    text-align: center;
    padding: 20px 10px;
}

.catalog-notice p { 
    font-weight: 400; 
    color: var(--secondary); 
    margin-bottom: 25px; 
    font-size: 1.1rem;
}

/* TABLET/MOBILE */
@media (max-width: 992px) {
    .product-grid-single { grid-template-columns: 1fr; gap: 40px; padding: 30px 0; }
    .product-title { font-size: 2rem; }
}

/* ==========================================
   WOOCOMMERCE SHORTCODE GRID FIX (Απόλυτη ευκρίνεια)
   ========================================== */

/* 1. Ακυρώνουμε τα floats του WooCommerce που χαλάνε το layout */
.woocommerce .products::before, 
.woocommerce .products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

/* 2. Στήσιμο του Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 40px 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. Η Κάρτα του Προϊόντος */
.woocommerce ul.products li.product {
    background: #ffffff !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius);
    text-align: center;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* 4. Εικόνες - Απαραίτητο για κρύσταλλα / ασημικά */
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    /* Χρησιμοποιούμε contain αντί για cover, για να φαίνονται ολόκληρα τα ποτήρια/καράφες χωρίς να κόβονται */
    object-fit: contain !important; 
    margin-bottom: 25px !important;
}

/* 5. Τυπογραφία & Ευκρίνεια */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.05rem !important;
    font-weight: 500 !important; /* Πιο έντονο για να διαβάζεται καθαρά */
    color: var(--primary) !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product .price {
    font-size: 1.15rem !important;
    font-weight: 400 !important;
    color: var(--secondary) !important;
    margin-bottom: 25px !important;
}

/* 6. Το Κουμπί (Διόρθωση του τεράστιου μπλοκ) */
.woocommerce ul.products li.product .button {
    margin-top: auto !important; /* Το σπρώχνει πάντα στο κάτω μέρος */
    background: var(--primary) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em !important;
    border-radius: var(--radius) !important;
    display: inline-block !important;
    transition: background 0.3s ease !important;
    white-space: normal !important; /* Σε περίπτωση μεγάλου κειμένου να κάνει σωστή αλλαγή γραμμής */
}

.woocommerce ul.products li.product .button:hover {
    background: var(--accent) !important;
}

/* ==========================================
   NESTED CATEGORIES (BOX IN BOX LAYOUT)
   ========================================== */

.nested-category-container {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Απόσταση ανάμεσα στα μεγάλα κουτιά */
}

/* Το Μεγάλο Κουτί της Κύριας Κατηγορίας */
.category-group-box {
    background: var(--bg-alt); /* Το απαλό γκρι που έχουμε ορίσει στο root */
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.group-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 300;
}

.group-title a { color: var(--primary); }
.group-title a:hover { color: var(--accent); }

.group-view-all {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    font-weight: 500;
}
.group-view-all:hover { color: var(--accent); }

/* Το Grid για τα μικρά κουτιά (Υποκατηγορίες) */
.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
	/* grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); */
    gap: 20px;
}

/* Τα μικρά κουτιά */
.subcat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subcat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.subcat-img-wrap {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.subcat-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* Για να μη χαλάνε καράφες/ποτήρια */
    transition: transform 0.5s ease;
}

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

.subcat-card h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .category-group-box { padding: 20px; }
    .group-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .group-title { font-size: 1.5rem; }
    .subcategory-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

/* ==========================================
   WOOCOMMERCE SHORTCODE GRID FIX (ΑΠΟΛΥΤΗ ΕΥΚΡΙΝΕΙΑ & ΖΥΓΙΣΜΑ)
   ========================================== */

/* 1. Το container του Grid */
.site-main .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    grid-gap: 30px !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Καθαρίζουμε τα floats του Woo */
.site-main .woocommerce ul.products::before,
.site-main .woocommerce ul.products::after {
    display: none !important;
}

/* 2. Η κάρτα του κάθε προϊόντος */
.site-main .woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important; /* Ακυρώνει το default width του Woo */
    max-width: 100% !important;
    margin: 0 !important; /* Ακυρώνει τα margins του Woo */
    padding: 25px 20px !important; /* Επαναφέρει τον εσωτερικό "αέρα" */
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-sizing: border-box !important; /* ΤΟ ΠΙΟ ΣΗΜΑΝΤΙΚΟ ΓΙΑ ΝΑ ΜΗΝ "ΦΟΥΣΚΩΝΟΥΝ" ΤΑ ΚΟΥΤΙΑ */
    text-align: center !important;
    box-shadow: none !important;
    float: none !important;
    clear: none !important;
    transition: all 0.3s ease !important;
}

/* Επαναφορά Hover Effect */
.site-main .woocommerce ul.products li.product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    border-color: #d1d5db !important;
}

/* 3. Εικόνες Προϊόντων */
.site-main .woocommerce ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    max-height: 220px !important; /* Κρατάει ομοιόμορφο ύψος (ιδανικό για ψηλές καράφες) */
    object-fit: contain !important; /* Δεν κόβει/παραμορφώνει κανένα αντικείμενο */
    margin: 0 auto 20px auto !important;
    display: block !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* 4. Τίτλος Προϊόντος */
.site-main .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: var(--primary) !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    word-wrap: break-word !important; /* Αν ο τίτλος είναι τεράστιος, σπάει σωστά */
    width: 100% !important;
}

/* 5. Τιμή */
.site-main .woocommerce ul.products li.product .price {
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    color: var(--secondary) !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
}

/* 6. Κουμπί Καλαθιού (Το τέλειο ζύγισμα) */
.site-main .woocommerce ul.products li.product .button {
    width: 100% !important;
    display: block !important;
    margin: auto 0 0 0 !important; /* Το "κλειδώνει" στον πάτο της κάρτας */
    padding: 4px 10px !important;
    background-color: var(--primary) !important;
    color: #fff !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    border-radius: var(--radius) !important;
    border: none !important;
    white-space: normal !important; /* Να σπάει όμορφα σε 2 γραμμές αν το κείμενο είναι μεγάλο, χωρίς να στενεύει το κουμπί */
    line-height: 3.2 !important;
    transition: background 0.3s ease !important;
}

.site-main .woocommerce ul.products li.product .button:hover {
    background-color: var(--accent) !important;
    color: #fff !important;
}

/* ==========================================
   MY ACCOUNT PAGE (PREMIUM B2B DASHBOARD)
   ========================================== */

/* 1. Βασικό Layout Σελίδας Λογαριασμού */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 40px 0 80px 0;
}

/* 2. Αριστερό Μενού Πλοήγησης */
.woocommerce-MyAccount-navigation {
    width: 25%;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid var(--border);
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 16px 24px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Hover Effect: Το link "γλιστράει" δεξιά */
.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--bg-alt);
    color: var(--primary);
    padding-left: 30px; 
}

/* Ενεργή Καρτέλα (Αυτή που βλέπει ο χρήστης) */
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--primary);
    color: #fff;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

/* 3. Δεξί Περιεχόμενο (Πίνακες & Φόρμες) */
.woocommerce-MyAccount-content {
    width: 75%;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

/* 4. Οι Πίνακες Παραγγελιών */
.woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-MyAccount-content table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.woocommerce-MyAccount-content table th {
    background: var(--bg-alt);
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border);
}

.woocommerce-MyAccount-content table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--secondary);
    vertical-align: middle;
    font-size: 0.95rem;
}

.woocommerce-MyAccount-content table tr:last-child td {
    border-bottom: none;
}

/* Κουμπιά μέσα στους Πίνακες (π.χ. "Εμφάνιση Παραγγελίας") */
.woocommerce-MyAccount-content table .button {
    background: var(--bg-alt) !important;
    color: var(--primary) !important;
    border: 1px solid var(--border) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease !important;
}

.woocommerce-MyAccount-content table .button:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

/* Φόρμες (Διευθύνσεις, Στοιχεία Λογαριασμού) */
.woocommerce-MyAccount-content fieldset {
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    background: var(--bg-alt);
}

.woocommerce-MyAccount-content fieldset legend {
    font-weight: 600;
    padding: 0 10px;
    color: var(--primary);
}

/* ==========================================
   MOBILE RESPONSIVE (MY ACCOUNT)
   ========================================== */
@media (max-width: 768px) {
    /* Τα βάζουμε το ένα κάτω από το άλλο */
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 30px;
        margin: 20px 0 50px 0;
    }

    /* Το μενού πιάνει όλο το πλάτος */
    .woocommerce-MyAccount-navigation {
        width: 100%;
    }

    .woocommerce-MyAccount-content {
        width: 100%;
    }

    /* Responsive Πίνακες: Το WooCommerce στα κινητά τους κάνει μορφή λίστας.
       Τους κάνουμε να δείχνουν σαν κομψές κάρτες. */
    .woocommerce-MyAccount-content table.shop_table_responsive tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: #fff;
    }

    .woocommerce-MyAccount-content table.shop_table_responsive td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right !important;
        border-bottom: 1px solid var(--border);
        padding: 15px !important;
    }

    .woocommerce-MyAccount-content table.shop_table_responsive td:last-child {
        border-bottom: none;
    }

    .woocommerce-MyAccount-content table.shop_table_responsive td::before {
        content: attr(data-title);
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        font-size: 0.75rem;
        float: none; /* Ακυρώνει το default float του woo */
    }
}

/* ==========================================
   B2B LOGIN & REGISTER PORTAL (ΑΠΟΛΥΤΟ ΖΥΓΙΣΜΑ)
   ========================================== */

/* 1. Κεντράρισμα όλης της σελίδας */
.woocommerce-account:not(.logged-in) .woocommerce {
    max-width: 1000px !important;
    margin: 60px auto 100px auto !important;
    padding: 0 4% !important;
}

/* 2. Στήσιμο Σύνδεσης & Εγγραφής δίπλα-δίπλα (Flexbox αντί για Grid για απόλυτη συμβατότητα) */
.woocommerce-account:not(.logged-in) #customer_login {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. Οι Κάρτες (Οι Στήλες) */
.woocommerce-account:not(.logged-in) #customer_login .u-column1,
.woocommerce-account:not(.logged-in) #customer_login .u-column2 {
    flex: 1 !important;
    width: 50% !important;
    float: none !important; /* Καθαρίζουμε τα floats του Woo */
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 50px 40px !important;
    box-shadow: var(--shadow-soft) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* 4. ΚΑΘΑΡΙΣΜΟΣ ΠΑΛΙΩΝ ΣΤΥΛ - Εξαφανίζουμε τα άσχημα εσωτερικά κουτιά */
.woocommerce-account:not(.logged-in) #customer_login form {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.woocommerce-account:not(.logged-in) #customer_login form fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 5. Τίτλοι ("Σύνδεση" / "Εγγραφή") */
.woocommerce-account:not(.logged-in) #customer_login h2 {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    color: var(--primary) !important;
    margin: 0 0 30px 0 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border: none !important;
    padding: 0 !important;
}

/* Αν το θέμα σου τυπώνει 2ο τίτλο ΜΕΣΑ στη φόρμα, τον κρύβουμε */
.woocommerce-account:not(.logged-in) #customer_login form h2 {
    display: none !important;
}

/* 6. Πεδία Φόρμας (Inputs & Labels) */
.woocommerce-account:not(.logged-in) #customer_login form .form-row {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.woocommerce-account:not(.logged-in) #customer_login form label {
    display: block !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    color: var(--secondary) !important;
    margin-bottom: 8px !important;
}

.woocommerce-account:not(.logged-in) #customer_login form input.input-text {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--bg-alt) !important;
    font-size: 1rem !important;
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}

.woocommerce-account:not(.logged-in) #customer_login form input.input-text:focus {
    background: #fff !important;
    border-color: var(--primary) !important;
    outline: none !important;
}

/* 7. Τα Κουμπιά */
.woocommerce-account:not(.logged-in) #customer_login form button.button {
    width: 100% !important;
    background: var(--primary) !important;
    color: #fff !important;
    padding: 16px !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
    border-radius: var(--radius) !important;
    border: none !important;
    transition: background 0.3s ease !important;
    margin-top: 15px !important;
    cursor: pointer !important;
}

.woocommerce-account:not(.logged-in) #customer_login form button.button:hover {
    background: var(--accent) !important;
}

/* 8. Links & Checkbox */
.woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem !important;
    color: var(--secondary) !important;
    font-weight: 400 !important;
    margin-bottom: 15px !important;
}

.woocommerce-LostPassword a {
    color: var(--secondary) !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.woocommerce-LostPassword a:hover {
    color: var(--accent) !important;
    text-decoration: underline !important;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .woocommerce-account:not(.logged-in) #customer_login {
        flex-direction: column !important; /* Στοίβα στο κινητό */
        gap: 40px !important;
    }
    
    .woocommerce-account:not(.logged-in) #customer_login .u-column1,
    .woocommerce-account:not(.logged-in) #customer_login .u-column2 {
        width: 100% !important;
        padding: 40px 25px !important;
    }
}

/* ==========================================
   B2B CUSTOM DASHBOARD UI (MY ACCOUNT)
   ========================================== */

/* 1. Εξαφανίζουμε το εργοστασιακό κείμενο "Γεια σας adm..." του WooCommerce */
.woocommerce-MyAccount-content > p:first-of-type,
.woocommerce-MyAccount-content > p:nth-of-type(2) {
    display: none !important;
}

/* Επαναφέρουμε τα paragraphs που είναι μέσα στο ΔΙΚΟ μας dashboard */
.b2b-dashboard-wrapper p {
    display: block !important;
}

/* 2. Στήσιμο του Νέου Dashboard */
.b2b-dashboard-wrapper {
    animation: fadeIn 0.5s ease;
}

.b2b-dash-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.b2b-dash-header h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 10px;
}

.b2b-dash-header p {
    color: var(--secondary);
    font-size: 1rem;
    margin: 0;
}

/* 3. Το Grid με τις Κάρτες */
.b2b-dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* 4. Η Μορφή των Καρτών */
.b2b-dash-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b2b-dash-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.b2b-dash-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 20px;
}

/* Κάρτα Στοιχείων (Info Card) */
.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.info-card ul li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    color: var(--secondary);
    font-size: 0.95rem;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.highlight-vat {
    font-weight: 600;
    color: var(--primary);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
}

.card-link {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Κάρτες Ενεργειών (Action Cards) */
.action-card {
    text-align: center;
}

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

.action-card p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .b2b-dash-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   B2B SKU ΣΤΟ ΠΛΕΓΜΑ ΠΡΟΪΟΝΤΩΝ
   ========================================== */
.site-main .woocommerce ul.products li.product .b2b-loop-sku {
    display: block !important;
    font-size: 0.8rem !important;
    color: #6b7280 !important; /* Ένα διακριτικό, απαλό γκρι */
    margin-bottom: 10px !important;
    margin-top: -10px !important; /* Μαζεύει το κενό κάτω από τον τίτλο */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
    width: 100% !important;
    text-align: center !important;
}

/* ==========================================================================
   B2B PRODUCT ARCHIVE ACTIONS (ΠΟΣΟΤΗΤΑ, ΜΑΤΑΚΙ, ΚΑΛΑΘΙ)
   Αυστηρό Layout για να μην σπάει η διάταξη στην αρχική και στις κατηγορίες
   ========================================================================== */

/* 1. Το κεντρικό κουτί που τα περικλείει όλα (Γίνεται Στήλη) */
.b2b-add-to-cart-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important; /* Το κενό ανάμεσα στην πάνω και κάτω γραμμή */
    width: 100% !important;
    margin-top: auto !important; /* Το κρατάει κολλημένο στο κάτω μέρος της κάρτας */
}

/* 2. Η Πάνω Γραμμή (Ποσότητα + Ματάκι δίπλα-δίπλα) */
.b2b-actions-top-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
}

/* 3. Το κουτί της Ποσότητας */
.b2b-qty-modern {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    height: 42px !important;
    background: #fff !important;
    flex-grow: 1 !important; /* Μαγική εντολή: Απλώνει για να πιάσει το διαθέσιμο πλάτος */
    padding: 0 !important;
}

/* Τα κουμπιά + και - μέσα στην ποσότητα */
.b2b-qty-btn {
    background: transparent !important;
    border: none !important;
    color: var(--secondary) !important;
    font-size: 1.4rem !important;
    font-weight: 300 !important;
    width: 35px !important;
    height: 100% !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: color 0.3s ease !important;
}
.b2b-qty-btn:hover { color: var(--primary) !important; }

/* Το νούμερο της ποσότητας */
.b2b-qty-input {
    width: 35px !important;
    height: 100% !important;
    border: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    -moz-appearance: textfield !important;
}
.b2b-qty-input:focus { outline: none !important; }
.b2b-qty-input::-webkit-outer-spin-button,
.b2b-qty-input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }

/* 4. Το Ματάκι (Quick View) */
.b2b-quick-view-inline {
    background: #fff !important;
    color: var(--secondary) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    width: 42px !important; /* Απόλυτο τετράγωνο */
    height: 42px !important; /* Ίδιο ύψος με την ποσότητα */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important; /* Δεν το αφήνει να μικρύνει */
    padding: 0 !important;
    box-shadow: none !important;
}
.b2b-quick-view-inline svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
}
.b2b-quick-view-inline:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

/* 5. Το Κουμπί Προσθήκης στο Καλάθι */
.b2b-add-to-cart-wrapper .add_to_cart_button,
.b2b-add-to-cart-wrapper .button {
    width: 100% !important;
    height: 42px !important; /* Ίδιο ύψος με τα από πάνω */
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: var(--primary) !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    border-radius: var(--radius) !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease !important;
}
.b2b-add-to-cart-wrapper .add_to_cart_button:hover,
.b2b-add-to-cart-wrapper .button:hover {
    background-color: var(--accent) !important;
}

/* ==========================================================================
   B2B PRODUCT ARCHIVE ACTIONS (ΠΟΣΟΤΗΤΑ, ΜΑΤΑΚΙ, ΚΑΛΑΘΙ) - BULLETPROOF
   ========================================================================== */

/* Το κεντρικό κουτί που τα περικλείει όλα (Γίνεται Στήλη) */
body.woocommerce ul.products li.product .b2b-add-to-cart-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: auto !important;
}

/* Η Πάνω Γραμμή (Ποσότητα + Ματάκι δίπλα-δίπλα) */
body.woocommerce ul.products li.product .b2b-actions-top-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
}

/* Το κουτί της Ποσότητας */
body.woocommerce ul.products li.product .b2b-qty-modern {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    height: 42px !important;
    background: #fff !important;
    flex-grow: 1 !important; /* Απλώνει για να πιάσει το διαθέσιμο πλάτος */
    padding: 0 !important;
}

/* Τα κουμπιά + και - */
body.woocommerce ul.products li.product .b2b-qty-btn {
    background: transparent !important;
    border: none !important;
    color: var(--secondary) !important;
    font-size: 1.4rem !important;
    font-weight: 300 !important;
    width: 35px !important;
    height: 100% !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: color 0.3s ease !important;
    padding: 0 !important;
}
body.woocommerce ul.products li.product .b2b-qty-btn:hover { color: var(--primary) !important; }

/* Το νούμερο της ποσότητας */
body.woocommerce ul.products li.product .b2b-qty-input {
    width: 35px !important;
    height: 100% !important;
    border: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    -moz-appearance: textfield !important;
}
body.woocommerce ul.products li.product .b2b-qty-input:focus { outline: none !important; }
body.woocommerce ul.products li.product .b2b-qty-input::-webkit-outer-spin-button,
body.woocommerce ul.products li.product .b2b-qty-input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }

/* Το Ματάκι (Quick View) */
body.woocommerce ul.products li.product .b2b-quick-view-inline {
    background: #fff !important;
    color: var(--secondary) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    width: 42px !important; /* Απόλυτο τετράγωνο */
    height: 42px !important; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important; /* Δεν το αφήνει να μικρύνει */
    padding: 0 !important;
    box-shadow: none !important;
}
body.woocommerce ul.products li.product .b2b-quick-view-inline svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
}
body.woocommerce ul.products li.product .b2b-quick-view-inline:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

/* =======================================================
   ΤΟ ΚΟΥΜΠΙ ΠΡΟΣΘΗΚΗΣ - ΔΙΟΡΘΩΣΗ ΕΜΦΑΝΙΣΗΣ 
   ======================================================= */
body.woocommerce ul.products li.product .b2b-add-to-cart-wrapper .button,
body.woocommerce ul.products li.product .b2b-add-to-cart-wrapper .add_to_cart_button {
    width: 100% !important;
    max-width: 100% !important;
    height: 42px !important; 
    margin: 0 !important;
    padding: 0 10px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: var(--primary) !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    border-radius: var(--radius) !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease !important;
    white-space: nowrap !important;
}
body.woocommerce ul.products li.product .b2b-add-to-cart-wrapper .button:hover,
body.woocommerce ul.products li.product .b2b-add-to-cart-wrapper .add_to_cart_button:hover {
    background-color: var(--accent) !important;
}

/* My Account - εικονίδιο ελτα*/
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
	left:auto!important;
	right: 1rem !important;
	top:1.8rem !important;
}

/* 5. ΕΠΑΝΑΣΧΕΔΙΑΣΜΟΣ SECTION ΕΠΙΚΟΙΝΩΝΙΑΣ (FRONT PAGE) */
.b2b-contact-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.contact-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-image img {
    max-width: 400px;
    border-radius: 20px;
}

.contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 40px;
}

.contact-item h4 {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1rem;
    color: #111;
    font-weight: 500;
}

.call-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover { background: var(--accent); }

@media (max-width: 992px) {
    .contact-flex { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SEASONAL SHOWCASE (ΕΠΟΧΙΑΚΑ - DARK PREMIUM DESIGN)
   ========================================================================== */

.seasonal-showcase-section {
	position: relative;
    background-color: #0f172a; /* Βαθύ πολυτελές μπλε-μαύρο, ταιριάζει με το footer */
    padding: 80px 0 90px;
    margin: 80px 0;
    border-top: 2px solid var(--accent); /* Χρυσή γραμμή πάνω */
    border-bottom: 2px solid var(--accent); /* Χρυσή γραμμή κάτω */
}

.seasonal-showcase-section:after {
    background-color: #0f172a;
    box-shadow: 1000px 0 #0f172a;
	position: absolute;
    top: 0;
    right: 0;
    width: 2000px;
    height: 100%;
    content: "";
    z-index: -2;
}

/* Επικεφαλίδες */
.seasonal-showcase-section .seasonal-header {
    margin-bottom: 60px;
}

.seasonal-showcase-section .seasonal-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent); /* Χρυσό χρώμα */
    margin-bottom: 10px;
    font-weight: 600;
}

.seasonal-showcase-section .seasonal-header h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.seasonal-showcase-section .seasonal-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Προσθήκη σκιάς στις κάρτες (επειδή είναι σε σκούρο φόντο, το λευκό τους κάνει τέλεια αντίθεση) */
.seasonal-showcase-section .woocommerce-custom-grid .product {
    box-shadow: 0 15px 30px rgba(0,0,0,0.4) !important;
    border: none !important; /* Καταργούμε το γκρι περίγραμμα */
}
.seasonal-showcase-section .woocommerce-custom-grid .product:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
}

/* Το κουμπί */
.seasonal-showcase-section .seasonal-btn {
    background-color: var(--accent) !important;
    color: #111827 !important;
    padding: 16px 40px !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}
.seasonal-showcase-section .seasonal-btn:hover {
    background-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .seasonal-showcase-section {
        padding: 60px 0;
        margin: 60px 0;
    }
    .seasonal-showcase-section .seasonal-header h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   B2B FOOTER (PREMIUM DARK)
   ========================================================================== */

.b2b-footer {
    background-color: #0f172a; /* Βαθύ, πολυτελές σκούρο μπλε/μαύρο (Tailwind Slate-900) */
    color: #94a3b8; /* Απαλό γκρι-μπλε για τα κείμενα */
    padding: 80px 0 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Grid Διάταξη Στηλών
   ========================================== */
.b2b-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr; /* Η 1η στήλη λίγο πιο φαρδιά */
    gap: 40px;
    margin-bottom: 60px;
}

/* ==========================================
   Στήλη 1: Λογότυπο & Επικοινωνία
   ========================================== */
.b2b-footer .footer-logo {
    margin-bottom: 20px;
}
.b2b-footer .footer-logo img {
    max-width: 220px; /* Προσαρμόζεις ανάλογα με το λογότυπό σου */
    height: auto;
}

.b2b-footer .footer-description {
    margin-bottom: 25px;
    padding-right: 20px;
    color: #cbd5e1;
}

.b2b-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.b2b-footer .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
}
.b2b-footer .footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent); /* Χρησιμοποιεί το χρυσό/χάλκινο χρώμα σου */
}
.b2b-footer .footer-contact-list li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}
.b2b-footer .footer-contact-list li a:hover {
    color: #fff;
}

/* ==========================================
   Στήλες 2, 3, 4: Τίτλοι και Links
   ========================================== */
.b2b-footer .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.b2b-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.b2b-footer .footer-links li {
    margin-bottom: 12px;
}
.b2b-footer .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.b2b-footer .footer-links a:hover {
    color: var(--accent); /* Χρυσό χρώμα στο hover */
    transform: translateX(5px); /* Μικρή, κομψή κίνηση */
}

/* ==========================================
   Footer Bottom (Copyright & Socials)
   ========================================== */
.b2b-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.b2b-footer .copyright-info p {
    margin: 0 0 5px 0;
    color: #cbd5e1;
}
.b2b-footer .copyright-info small {
    font-size: 0.8rem;
    color: #64748b;
}

.b2b-footer .footer-socials {
    display: flex;
    gap: 15px;
}
.b2b-footer .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    transition: all 0.3s ease;
}
.b2b-footer .footer-socials a:hover {
    background: var(--accent);
    color: #111827;
    transform: translateY(-3px);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 992px) {
    .b2b-footer .footer-grid {
        grid-template-columns: 1fr 1fr; /* Σπάει σε 2 στήλες στα tablets */
    }
}

@media (max-width: 768px) {
    .b2b-footer .footer-grid {
        grid-template-columns: 1fr; /* Μία στήλη στα κινητά */
        text-align: center;
    }
    .b2b-footer .footer-description {
        padding-right: 0;
    }
    .b2b-footer .footer-contact-list li {
        justify-content: center;
    }
    .b2b-footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================
   B2B ETHICS - DESKTOP FIRST LAYOUT
   ========================================== */

.ethics-flex-layout {
    display: flex;
    align-items: stretch; /* Κάνει το κείμενο να "τεντώνει" όσο η εικόνα */
    gap: 60px;
    background: var(--bg-light);
}

.ethics-media {
    flex: 1;
    max-width: 50%;
}

.ethics-square-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Αυστηρό τετράγωνο */
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.ethics-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Κεντράρει το περιεχόμενο καθ' ύψος */
    padding: 20px 0;
}

.ethics-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ethics-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ethics-description p {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.ethics-features {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ethic-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--secondary);
}

.ethic-icon {
    color: var(--accent);
    margin-top: 3px;
}

/* ==========================================
   MOBILE ONLY (STACK LAYOUT)
   ========================================== */
@media (max-width: 768px) {
    .ethics-flex-layout {
        flex-direction: column; /* Πάνω η εικόνα, κάτω το κείμενο */
        gap: 30px;
    }

    .ethics-media {
        max-width: 100%;
    }

    .ethics-text {
        text-align: center;
    }

    .ethic-item {
        justify-content: center;
    }
}

button#pwa-install-btn {
	background: #0f172a;
    color: #FFF;
    border: 1px solid #0f172a;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 30px;
    font-weight: 700;
    text-align: left;
    border-radius: 4px;
}

/* =========================================
   CUSTOM PRODUCT REVIEWS (B2B STYLE)
========================================= */
/* Αστεράκια στην κορυφή του Προϊόντος */
.b2b-product-rating-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px 0;
}
.b2b-product-rating-top .star-rating {
    font-size: 14px;
    color: #eab308; /* Χρυσό/Κίτρινο Tailwind */
}
.b2b-product-rating-top .review-link-scroll {
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: underline;
}
.b2b-product-rating-top .review-link-scroll:hover {
    color: #0f172a;
}

/* Κεντρικό Container Αξιολογήσεων */
.b2b-custom-reviews-wrapper {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}
.b2b-custom-reviews-wrapper .reviews-header {
    margin-bottom: 40px;
}
.b2b-custom-reviews-wrapper .reviews-header h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 10px;
}
.b2b-custom-reviews-wrapper .reviews-header p {
    color: #64748b;
}

/* Λίστα με τις Κριτικές */
.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.woocommerce-Reviews .commentlist li {
    margin-bottom: 20px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.woocommerce-Reviews .commentlist img.avatar {
    display: none; /* Κρύβουμε τα avatars για πιο καθαρό B2B look */
}
.woocommerce-Reviews .commentlist .comment-text {
    margin: 0;
}
.woocommerce-Reviews .comment-author {
    font-weight: 600;
    color: #0f172a;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 5px;
}
.woocommerce-Reviews .meta {
    font-size: 0.85rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 15px;
}
.woocommerce-Reviews .description {
    color: #334155;
    line-height: 1.6;
}
.woocommerce-Reviews .star-rating {
    float: right;
    color: #eab308;
    font-size: 14px;
}

/* Φόρμα Υποβολής Νέας Κριτικής */
#review_form_wrapper {
    background: #f8fafc;
    padding: 35px;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}
#review_form_wrapper .comment-reply-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: block;
    color: #0f172a;
    font-weight: 600;
}
#review_form_wrapper .comment-form-rating {
    margin-bottom: 25px;
}
#review_form_wrapper .stars a {
    color: #cbd5e1;
    transition: color 0.2s;
}
#review_form_wrapper .stars a:hover, 
#review_form_wrapper .stars a.active {
    color: #eab308;
}
#review_form_wrapper p.comment-form-author,
#review_form_wrapper p.comment-form-email,
#review_form_wrapper p.comment-form-comment {
    margin-bottom: 20px;
}
#review_form_wrapper label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 500;
}
#review_form_wrapper textarea, 
#review_form_wrapper input[type="text"], 
#review_form_wrapper input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
#review_form_wrapper textarea:focus, 
#review_form_wrapper input:focus {
    border-color: #0f172a;
}
#review_form_wrapper .submit {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
#review_form_wrapper .submit:hover {
    background: #334155;
}

/* Μήνυμα Σύνδεσης για Επισκέπτες */
.login-to-review-notice {
    background: #f8fafc;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    color: #475569;
    border: 1px dashed #cbd5e1;
    margin-bottom: 30px;
}
.login-to-review-notice a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: underline;
}

/* =========================================
   ORDER AGAIN BUTTON (MY ACCOUNT)
========================================= */
.woocommerce-orders-table__cell-order-actions .button.order-again {
    background-color: #0f172a; /* Το σκούρο χρώμα του theme σου */
    color: #ffffff;
    border: 1px solid #0f172a;
    font-weight: 600;
    margin-left: 8px; /* Μικρή απόσταση από το κουμπί 'Εμφάνιση' */
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.woocommerce-orders-table__cell-order-actions .button.order-again:hover {
    background-color: transparent;
    color: #0f172a;
}

/* Για να μην "κολλάνε" τα κουμπιά στα κινητά */
@media (max-width: 768px) {
    .woocommerce-orders-table__cell-order-actions .button {
        display: block;
        width: 100%;
        margin: 5px 0 0 0;
        text-align: center;
    }
}