/* Γενικά spacing */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Video section */
#myVideo {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 40px auto;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

/* B2B intro */
.b2bIntro {
    max-width: 1100px;
    margin: 40px auto 60px auto;
    padding: 35px 30px 40px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #111827 40%, #1f2937 100%);
    color: #f9fafb;
    text-align: center;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.45);
}

.b2bIntroTitle {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.b2bIntroSubTitle {
    max-width: 800px;
    margin: 0 auto 25px auto;
    font-size: 16px;
    line-height: 1.7;
    color: #e5e7eb;
}

/* Specs (4 κάρτες) */
.b2bIntroSpecs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.b2bSpec {
    flex: 0 1 200px;
    background: rgba(15, 23, 42, 0.75);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: default;
}

.b2bSpec:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
    border-color: #f97316;
}

.b2bSpecIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f97316, #c2410c);
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2bSpecIcon i {
    color: white;
    font-size: 18px;
}

.b2bSpecText {
    font-size: 15px;
    font-weight: 600;
}

/* Most preferred items */
.b2bMostPrefferedItems {
    max-width: 1200px;
    margin: 40px auto 70px auto;
    padding: 15px 10px 0 10px;
}

.b2bMostPrefferedItems .b2bIntroTitle {
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.16em;
    margin-bottom: 26px;
    color: #111827;
}

.topCointainerMostPreffered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

/* Κάθε banner */
.bannerContainer {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #020617;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bannerContainer:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
}

.bannerContainerTitle {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #f9fafb;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.firstSlideBanner {
    position: relative;
}

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

.bannerContainer:hover .firstSlideBanner img {
    transform: scale(1.06);
}

/* Overlay gradient */
.firstSlideBanner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92), transparent 55%);
}

/* Κείμενο κάτω δεξιά */
.fbsTextB {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    z-index: 2;
}

.fbsTextB .text {
    color: #f9fafb;
    font-size: 14px;
    font-weight: 600;
}

/* Mobile app section */
.b2bMobileApp {
    max-width: 1100px;
    margin: 0 auto 70px auto;
    padding: 35px 24px 40px 24px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #f97316 0, #0f172a 45%, #020617 100%);
    color: #f9fafb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);
}

.b2bMobileApp .b2bIntroTitle {
    text-align: left;
    margin-bottom: 16px;
    font-size: 24px;
}

.b2bMobileAppContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.textMobileApp {
    flex: 1 1 260px;
    font-size: 15px;
    line-height: 1.8;
    color: #e5e7eb;
}

.imgMobileApp {
    flex: 0 1 260px;
    display: flex;
    justify-content: center;
}

.imgMobileApp img {
    display: block;
    width: 100%;
    max-width: 260px;
    filter: drop-shadow(0 12px 30px rgba(15, 23, 42, 0.8));
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .b2bIntro {
        margin: 30px 16px;
        padding: 24px 18px;
    }
    
    .b2bIntroTitle {
        font-size: 22px;
    }
    
    .b2bIntroSubTitle {
        font-size: 14px;
    }
    
    .b2bMobileApp {
        margin: 0 16px 50px 16px;
        padding: 24px 18px;
    }
    
    .firstSlideBanner img {
        height: 200px;
    }
}














/* =========================================
   MAIN NAVBAR
========================================= */
.mainNavbar {
    background: #0f172a; /* dark navy */
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    z-index: 1000;
}

.navbarLogo {
    height: 40px;
    width: auto;
}

/* Links */
.mainNavLinks .nav-link {
    color: #e2e8f0;
    font-weight: 500;
    padding: 10px 18px;
    letter-spacing: 0.4px;
    transition: 0.25s ease;
}

.mainNavLinks .nav-link:hover {
    color: #f97316; /* orange */
}

/* =========================================
   MOBILE BURGER – WHITE ICON
========================================= */

.navbar-toggler {
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3/svg%3e");
}

/* =========================================
   USER ICON
========================================= */
.userIconLink svg {
    width: 24px;
    height: 24px;
    transition: 0.25s ease;
}

.userIconLink:hover svg {
    stroke: #f97316;
    fill: #f97316;
}

/* =========================================
   MEGA MENU
========================================= */

/* So dropdown expands full width */
.megaDropdown {
    position: static !important;
}

/* MegaMenu Container */
.megaMenu {
    left: 0;
    right: 0;
    width: 100%;
    border: none;
    margin-top: 0;
    background: #111827; /* dark */
    padding: 25px 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* Inner Grid */
.megaMenuInner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 40px;
}

/* Group Titles */
.megaMenuParent {
    font-weight: 700;
    text-transform: uppercase;
    color: #f9fafb;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
    transition: 0.25s ease;
}

.megaMenuParent:hover {
    color: #f97316;
}

/* Child Links */
.megaMenuList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megaMenuList a {
    color: #cbd5e1;
    display: block;
    padding: 3px 0;
    font-size: 0.82rem;
    transition: 0.25s ease;
    text-decoration: none;
}

.megaMenuList a:hover {
    color: #f97316;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 991px) {

    /* Stack items */
    .megaMenu {
        background: #0f172a;
        box-shadow: none;
        padding: 15px 0;
        border-radius: 0;
    }

    .megaMenuInner {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .mainNavLinks .nav-link {
        padding-left: 0;
    }

    .megaMenuParent {
        font-size: 0.95rem;
    }

    .megaMenuList a {
        font-size: 0.85rem;
    }
}

/* Small screens */
@media (max-width: 576px) {
    .megaMenuInner {
        grid-template-columns: 1fr;
    }
}












/* ============================
    MODERN FOOTER – LHRentals
============================ */

.site-footer {
    background: #0a0a0a;
    padding: 60px 0 25px;
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer h6 {
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.site-footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.site-footer a:hover {
    color: #f97316;
    padding-left: 3px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    padding: 4px 0;
}

.footer-links li a {
    font-size: 14px;
}

/* Divider */
.site-footer hr {
    border-top-color: rgba(255,255,255,0.15);
    margin: 30px 0;
}

/* Bottom area */
.site-footer .copyright-text {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
}

.site-footer .copyright-text a {
    color: #ffffff;
    font-weight: 600;
}

.site-footer .copyright-text img {
    opacity: 0.8;
    transition: opacity .2s ease;
}

.site-footer .copyright-text img:hover {
    opacity: 1;
}

/* Social icons */
.social-icons {
    list-style: none;
    padding-left: 0;
    text-align: right;
}

.social-icons li {
    display: inline-block;
    margin-left: 10px;
}

.social-icons li a {
    background: #1f1f1f;
    color: #d1d5db;
    font-size: 14px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.social-icons li a:hover {
    background: #f97316;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================
    RESPONSIVE
============================ */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
        padding: 50px 0;
    }
    
    .social-icons {
        text-align: center;
        margin-top: 20px;
    }
    
    .social-icons li {
        margin: 0 8px;
    }
    
    .site-footer .col-md-8,
    .site-footer .col-md-4 {
        text-align: center;
    }
}



/* Footer Logo */
.footer-logo {
    width: 140px;
    margin-bottom: 18px;
    display: block;
}

/* Fix ABOUT spacing */
.footer-about h6 {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Footer Categories as GRID */
.footer-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 4px 20px;
}

.footer-categories-grid li a {
    font-size: 13px;
    color: #cccccc;
    transition: 0.2s ease;
}

.footer-categories-grid li a:hover {
    color: #ffffff;
}

/* RESPONSIVE: σε κινητό → 1 στήλη */
@media (max-width: 768px) {
	.footer-logo {
		margin:1% auto;
		margin-bottom:5% !important;
    }
    .footer-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Global footer text styling */
.site-footer {
    font-family: 'Josefin Sans', sans-serif;
}


















/* ===== CONTACT FORM BLOCK ===== */

.formApplication {
    max-width: 900px;
    margin: 70px auto 80px auto;
    padding: 32px 28px 34px 28px;
    border-radius: 20px;
    background: radial-gradient(circle at top left, #111827 0, #020617 55%, #000000 100%);
    color: #e5e7eb;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.7);
}

/* Title */
.formApplicationTitle {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.formApplicationFirstWord {
    color: #9ca3af;
}

.formApplicationSecondWord {
    color: #f97316;
}

/* Subtitle */
.formApplicationSubTitle {
    font-size: 14px;
    line-height: 1.8;
    max-width: 650px;
    color: #d1d5db;
    margin-bottom: 22px;
}

/* Alerts (success / error) */
.formApplication .alert {
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 12px;
}

.formApplication .alert-success {
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.6);
    color: #bbf7d0 !important;
}

.formApplication .alert-danger {
    background: rgba(220, 38, 38, 0.14);
    border: 1px solid rgba(248, 113, 113, 0.75);
    color: #fecaca !important;
}

/* Form layout */
.formApplication .formFirstPage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 6px;
}

/* Inputs / textarea */
.formApplication input[type="text"],
.formApplication input[type="tel"],
.formApplication input[type="email"],
.formApplication textarea {
    width: 100%;
    font-size: 14px;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #374151;
    background: rgba(17, 24, 39, 0.95);
    color: #e5e7eb;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.formApplication textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

/* Placeholder */
.formApplication input::placeholder,
.formApplication textarea::placeholder {
    color: #6b7280;
}

/* Focus states */
.formApplication input:focus,
.formApplication textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.7);
    background: #020617;
}

/* Submit button */
.formApplication input[type="submit"] {
    grid-column: 1 / -1;
    margin-top: 6px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #0b0f19;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 999px;
    text-align: center;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.formApplication input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.4);
    filter: brightness(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .formApplication {
        margin: 50px 16px 60px 16px;
        padding: 24px 18px 26px 18px;
    }
    
    .formApplicationTitle {
        font-size: 22px;
        text-align: center;
    }
    
    .formApplicationSubTitle {
        text-align: center;
        font-size: 13px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .formApplication .formFirstPage {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .formApplication input[type="submit"] {
        width: 100%;
    }
}
















/* ============================
    CONTACT PAGE WRAPPER
============================ */

.contactPageWrapper {
    max-width: 1200px;
    margin: 80px auto 100px auto;
    padding: 0 16px;
}

/* Header */
.contactHeader {
    text-align: left;
    margin-bottom: 20px;
}

.contactTitle {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 10px;
}

.contactSubtitle {
    max-width: 680px;
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
}

/* Tabs */
.contactTabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.contactTabButton {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    color: #111827;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}

.contactTabButton:hover {
    transform: translateY(-1px);
}

.contactTabButton.active {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: transparent;
    color: #0b0f19;
}

/* ============================
    MAIN CARD
============================ */

.contactContainer {
    margin-top: 0;
}

.splitArea {
    display: flex;
    gap: 26px;
    background: radial-gradient(circle at top left, #111827 0, #020617 55%, #000000 100%);
    border-radius: 26px;
    padding: 32px 28px;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.75);
    color: #e5e7eb;
}

/* LEFT FORM */
.formArea {
    flex: 1.1;
}

.formArea h3 {
    font-size: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: #f97316;
}

.contactUsPage {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contactUsPage input[type="text"],
.contactUsPage input[type="tel"],
.contactUsPage input[type="email"],
.contactUsPage textarea {
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #374151;
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contactUsPage textarea {
    min-height: 120px;
    resize: vertical;
}

.contactUsPage input::placeholder,
.contactUsPage textarea::placeholder {
    color: #6b7280;
}

.contactUsPage input:focus,
.contactUsPage textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.7);
    background: #020617;
}

/* Submit */
#contactPageButton {
    margin-top: 6px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #0b0f19;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 999px;
    text-align: center;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

#contactPageButton:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.45);
    filter: brightness(1.03);
}

/* RIGHT INFO */
.infoArea {
    flex: 0.9;
    padding-left: 18px;
    border-left: 1px solid rgba(148, 163, 184, 0.4);
}

.infoArea h3 {
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.infoArea > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.infoArea .fa {
    font-size: 16px;
    color: #f97316 !important;
    margin-top: 3px;
}

.textContact {
    font-size: 14px;
    color: #d1d5db;
}

/* ============================
    EXTRA INFO CARDS
============================ */

.contactExtraInfo {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.contactInfoCard {
    background: #0b1120;
    border-radius: 18px;
    padding: 18px 16px 16px 16px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: #e5e7eb;
}

.contactInfoIcon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.contactInfoIcon .fa {
    font-size: 15px;
    color: #f97316;
}

.contactInfoTitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contactInfoText {
    font-size: 13px;
    color: #9ca3af;
}

/* ============================
    RESPONSIVE
============================ */

@media (max-width: 992px) {
    .splitArea {
        flex-direction: column;
        padding: 24px 20px;
    }
    
    .infoArea {
        border-left: none;
        border-top: 1px solid rgba(148, 163, 184, 0.4);
        padding-left: 0;
        padding-top: 16px;
        margin-top: 8px;
    }
    
    .contactExtraInfo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contactPageWrapper {
        margin: 60px auto 80px auto;
    }
    
    .contactHeader,
    .formArea h3,
    .infoArea h3 {
        text-align: center;
    }
    
    .contactSubtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .infoArea > div {
        justify-content: center;
        text-align: center;
    }
}













/* PRODUCTS LIST CONTAINER */
.containerProducts {
    max-width: 1200px;
    margin: 50px auto 80px auto;
    padding: 0 16px;
}

/* Πάνω & κάτω σελίδες */
.pages {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: #4b5563;
}

.bottomPages {
    margin-top: 18px;
}

/* Κουμπιά σελίδων */
.buttonPages {
    display: flex;
    gap: 8px;
}

.buttonPages button {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    color: #111827;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease, opacity .15s ease;
}

.buttonPages button:hover:not(.disabled) {
    transform: translateY(-1px);
    background: #111827;
    color: #f9fafb;
    border-color: #111827;
}

.buttonPages button.disabled {
    opacity: 0.4;
    cursor: default;
}

/* PRODUCTS GRID */
.productsList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* Single card */
.productListItem {
    width: 30%;
    min-width: 240px;
    max-width: 320px;
    background: #0b1120;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.55);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.productListItem a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.productListItem:hover {
    transform: translateY(-4px);
    border-color: #f97316;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

/* Image */
.imgProductListItem {
    width: 100%;
    padding-top: 65%;
    position: relative;
    overflow: hidden;
    background: #020617;
}

.imgProductListItem img {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Text */
.nameProductListItem {
    padding: 10px 14px 4px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.skuProductListItem {
    padding: 0 14px 12px 14px;
    font-size: 12px;
    color: #9ca3af;
}

/* No products */
.noProducts {
    padding: 30px 0;
    font-size: 14px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .productListItem {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .pages {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .productListItem {
        width: 100%;
    }
}







/* ========= OVERRIDES ΓΙΑ ΚΑΡΤΕΣ ΠΡΟΪΟΝΤΩΝ (light theme) ========= */

.productListItem {
    background: #ffffff;                        /* λευκή κάρτα */
    border-radius: 20px;
    border: 1px solid #e5e7eb;                 /* πολύ ελαφρύ περίγραμμα */
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);  /* πιο “απαλό” shadow */
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.productListItem:hover {
    transform: translateY(-4px);
    border-color: #f97316;                     /* πορτοκαλί outline στο hover */
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

/* περιοχή εικόνας σε light grey αντί για μαύρο */
.imgProductListItem {
    width: 100%;
    padding-top: 65%;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;                       /* απαλό γκρι */
}

/* τίτλος & SKU πιο “λευκής σελίδας” */
.nameProductListItem {
    padding: 10px 14px 4px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;                            /* σχεδόν μαύρο */
}

.skuProductListItem {
    padding: 0 14px 12px 14px;
    font-size: 12px;
    color: #6b7280;                            /* γκρι */
}




















/* =========== PRODUCT PAGE LAYOUT =========== */

.containerProductLease {
    max-width: 1200px;
    margin: 100px auto 60px auto;
    padding: 20px;
    box-sizing: border-box;
}

.containerProductLeaseTitle {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    color: #111827;
}

.mainDivContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

/* LEFT: Photos */
.productPhotos {
    flex: 1 1 55%;
    min-width: 280px;
}

.mainImageProduct {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-sizing: border-box;
    margin-bottom: 16px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

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

/* Thumbnails */
.galleryImageProduct {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 2px;
    box-sizing: border-box;
}

.galleryImageProduct::-webkit-scrollbar {
    height: 6px;
}

.galleryImageProduct::-webkit-scrollbar-thumb {
    background: #cbd5f5;
    border-radius: 999px;
}

.galleryImageProduct img.thumbImg {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    background: #f3f4f6;
    cursor: pointer;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.galleryImageProduct img.thumbImg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.galleryImageProduct img.scrollbar2Active {
    border-color: #f97316;
}

/* RIGHT: Info */
.orderTable {
    flex: 1 1 40%;
    min-width: 280px;
}

/* Price card */
.pricePerPiece {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.titlePricePerPieces {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.numberPricePieces {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.numberPricePieces.priceLogin {
    font-size: 15px;
    font-weight: 600;
    color: #b91c1c;
}

/* Update cart button */
.updateCartButton {
    display: none; /* ενεργοποιείται από JS αν χρειάζεται */
    padding: 12px 18px;
    background: #22c55e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 999px;
    cursor: pointer;
    margin-bottom: 18px;
    transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}

.updateCartButton:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.4);
}

/* Description card */
.productInformation {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.productDescription {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.productSku,
.productDimensions,
.productFuture {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 4px;
}

.productSku .label,
.productDimensions .label {
    font-weight: 600;
    margin-right: 4px;
}

.productFuture {
    margin-top: 6px;
    color: #2563eb;
}

/* Specs block */
.specifications {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specItem {
    flex: 1 1 48%;
    min-width: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specLabel {
    font-size: 14px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specCircleWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.specTextOnly {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

/* Circular meters */
.circular-meter {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: conic-gradient(#4bb5ff 0deg, #e5e7eb 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .containerProductLease {
        margin-top: 90px;
    }
}

@media (max-width: 768px) {
    .containerProductLeaseTitle {
        font-size: 22px;
    }
}




























/* ---------- AUTH CONTAINER (LOGIN / REGISTER) ---------- */

.containerLogin {
    background: #050914;
    background: linear-gradient(135deg, #050914 0%, #02030a 60%, #050914 100%);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 980px;
    min-height: 520px;
    margin: 120px auto 80px auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    color: #f8f9ff;
}

/* κοινό styling φόρμας */

.containerLogin form {
    background: transparent;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    height: 100%;
    justify-content: center;
}

.containerLogin h1 {
    font-size: 26px;
    margin-bottom: 18px;
}

.containerLogin input {
    background-color: #050d1c;
    border-radius: 8px;
    border: 1px solid #1a2438;
    padding: 10px 14px;
    margin: 6px 0;
    font-size: 14px;
    color: #f5f7ff;
    outline: none;
}

.containerLogin input:focus {
    border-color: #ff7a1f;
    box-shadow: 0 0 0 1px rgba(255,122,31,0.3);
}

.containerLogin a {
    color: #ffb37a;
    font-size: 12px;
    text-decoration: none;
    margin-top: 6px;
}

.containerLogin a:hover {
    text-decoration: underline;
}

/* κουμπιά */

.containerLogin button {
    border-radius: 999px;
    border: 1px solid #ff7a1f;
    background-color: #ff7a1f;
    color: #050914;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 26px;
    margin-top: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.containerLogin button:hover {
    background-color: #ff8d3d;
    box-shadow: 0 12px 30px rgba(255,122,31,0.4);
    transform: translateY(-1px);
}

.containerLogin button.ghost {
    background-color: transparent;
    color: #ffb37a;
    border-color: #ffb37a;
}

.containerLogin button.ghost:hover {
    background-color: rgba(255,179,122,0.1);
}

/* checkbox + label */

.containerLogin .terms-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: #d0d4e6;
}

.containerLogin .terms-row input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

/* βασική διάταξη πλαισίων */

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
    transform: translateX(100%);
}

/* όταν κάνουμε switch σε sign-up */

.containerLogin.right-panel-active .sign-in-container {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.containerLogin.right-panel-active .sign-up-container {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

/* overlay δεξιά */

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 5;
}

.containerLogin.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: radial-gradient(circle at top left, #101a33 0%, #02030a 60%, #000000 100%);
    color: #f5f7ff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.containerLogin.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 40px;
    text-align: left;
    top: 0;
    height: 100%;
    width: 50%;
}

.overlay-panel h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.overlay-panel p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 260px;
}

.overlay-left {
    transform: translateX(-5%);
    left: 0;
}

.overlay-right {
    right: 0;
    transform: translateX(5%);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .containerLogin {
        max-width: 95%;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .containerLogin {
        max-width: 95%;
        min-height: 620px;
    }

    .form-container,
    .overlay-container,
    .overlay,
    .overlay-panel {
        position: relative;
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
    }

    .containerLogin {
        flex-direction: column;
        padding: 25px 15px 30px;
    }

    .overlay-container {
        margin-top: 20px;
        height: auto;
    }

    .overlay {
        left: 0;
        width: 100%;
        height: auto;
    }

    .overlay-panel {
        padding: 20px;
        align-items: center;
        text-align: center;
    }
}






/* AUTH WRAPPER */
.auth-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 140px auto 100px auto;
    background: linear-gradient(135deg, #050914 0%, #01030a 60%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    color: #fff;
}

/* TABS */
.auth-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
}

.auth-tab {
    padding: 12px 30px;
    cursor: pointer;
    color: #bbb;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s;
}

.auth-tab.active {
    color: #ff7a1f;
    border-bottom: 2px solid #ff7a1f;
}

/* FORMS */
.auth-form {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.auth-form.active {
    display: block;
    opacity: 1;
}

/* TITLES */
.auth-form h2 {
    margin-bottom: 10px;
    font-size: 28px;
}

.auth-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    color: #aaa;
}

/* INPUTS */
.auth-form input,
.auth-form select {
    width: 100%;
    background: #0b1323;
    border: 1px solid #1a2438;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
}

.auth-form input:focus {
    border-color: #ff7a1f;
}

/* TERMS */
.terms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-top: 10px;
}

/* BUTTONS */
.auth-btn {
    width: 100%;
    background: #ff7a1f;
    color: #050914;
    padding: 14px 0;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.auth-btn:hover {
    background: #ff8e41;
    box-shadow: 0 12px 25px rgba(255,102,0,0.4);
}

/* FORGOT PASSWORD */
.auth-forgot {
    font-size: 13px;
    display: block;
    margin-top: -5px;
    margin-bottom: 10px;
    color: #ffb37a;
    text-decoration: none;
}

.auth-forgot:hover {
    text-decoration: underline;
}




















/* ===========================
   USER DASHBOARD LAYOUT
   =========================== */

.usersContainer {
    max-width: 1200px;
    margin: 110px auto 70px auto;
    padding: 24px 28px 30px;
    border-radius: 30px;
    background: radial-gradient(circle at top left, #111827 0%, #020617 55%, #000 100%);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.75);
    display: flex;
    gap: 28px;
    color: #e5e7eb;
    box-sizing: border-box;
}

/* --------- SIDE MENU --------- */

.usersMenu {
    min-width: 210px;
    max-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 16px;
    border-right: 1px solid rgba(148, 163, 184, 0.25);
}

.usersMenu-link {
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.usersMenu-link a {
    display: block;
    padding: 9px 16px;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #9ca3af;
    text-decoration: none;
}

.usersMenu-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.65);
}

.usersMenu-link:hover a {
    color: #f9fafb;
}

/* ενεργό tab */
.usersMenu-link.active a {
    background: linear-gradient(90deg, #f97316, #fb923c);
    color: #0b1120;
    font-weight: 600;
}

/* logout ξεχωριστό */
#logOut a {
    color: #f97373;
}
#logOut.active a,
#logOut a:hover {
    background: linear-gradient(90deg, #ef4444, #f97373);
    color: #0b1120;
}

/* --------- CONTENT WRAPPER --------- */

.usersContent,
.ordersContent,
.invoicesContent,
.accountSettings {
    flex: 1;
    background: radial-gradient(circle at top left, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.96) 40%, rgba(3,7,18,0.98) 100%);
    border-radius: 24px;
    padding: 20px 22px 24px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.15);
    box-sizing: border-box;
}

/* από προεπιλογή κρυφά, το JS δείχνει το σωστό */
.ordersContent,
.invoicesContent,
.accountSettings {
    display: none;
}

/* --------- TOP STATS CARDS --------- */

.profileInformations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.profileInformations > div {
    position: relative;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #111827 0%, #020617 60%, #020617 100%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

/* μικρή glowy λωρίδα πάνω */
.profileInformations > div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249,115,22,0.14), transparent 40%);
    pointer-events: none;
}

/* εικονίδιο */
.pi-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #f97316 0%, #111827 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.5);
    margin-bottom: 4px;
}

.pi-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
}

/* νούμερο */
.pi-number {
    font-size: 22px;
    font-weight: 700;
    color: #f9fafb;
}

/* τίτλος */
.pi-title {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* --------- GENERIC CONTENT (TABLES κλπ) --------- */

.usersContent h2,
.ordersContent h2,
.invoicesContent h2,
.accountSettings h2 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #e5e7eb;
}

.usersContent table,
.ordersContent table,
.invoicesContent table,
.accountSettings table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #e5e7eb;
}

.usersContent table thead,
.ordersContent table thead,
.invoicesContent table thead,
.accountSettings table thead {
    background: rgba(15, 23, 42, 0.95);
}

.usersContent table th,
.usersContent table td,
.ordersContent table th,
.ordersContent table td,
.invoicesContent table th,
.invoicesContent table td,
.accountSettings table th,
.accountSettings table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.usersContent table tbody tr:nth-child(even),
.ordersContent table tbody tr:nth-child(even),
.invoicesContent table tbody tr:nth-child(even),
.accountSettings table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.7);
}

.usersContent table tbody tr:hover,
.ordersContent table tbody tr:hover,
.invoicesContent table tbody tr:hover,
.accountSettings table tbody tr:hover {
    background: rgba(30, 64, 175, 0.35);
}

/* μικρά badges */
.badge-soft {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.badge-soft--success {
    background: rgba(22, 163, 74, 0.15);
    color: #4ade80;
}

.badge-soft--warning {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.badge-soft--danger {
    background: rgba(220, 38, 38, 0.18);
    color: #f97373;
}

/* --------- RESPONSIVE --------- */

@media (max-width: 992px) {
    .usersContainer {
        flex-direction: column;
        margin: 100px 16px 50px;
        padding: 18px 16px 22px;
        border-radius: 24px;
    }

    .usersMenu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.25);
        padding-right: 0;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .usersMenu-link {
        flex: 1 1 auto;
    }

    .usersContent,
    .ordersContent,
    .invoicesContent,
    .accountSettings {
        padding: 16px 14px 18px;
    }

    .profileInformations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .profileInformations {
        grid-template-columns: 1fr;
    }
}













/* ===========================
   USER PROFILE CONTENT BLOCK
   =========================== */

.usersContent-part {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.ucp-content {
    flex: 1 1 55%;
}

/* τίτλος "My Account" κ.λπ. */
.ucpTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #e5e7eb;
}

/* table με στοιχεία χρήστη */
.customTable {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at top left, #020617 0%, #020617 45%, #020617 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.customTable tbody tr:nth-child(odd) {
    background-color: rgba(15, 23, 42, 0.96);
}

.customTable tbody tr:nth-child(even) {
    background-color: rgba(17, 24, 39, 0.96);
}

.customTable td {
    padding: 9px 14px;
    font-size: 13px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.85);
    color: #e5e7eb;
    vertical-align: middle;
}

.customTable tr:last-child td {
    border-bottom: none;
}

.customTable td:first-child {
    width: 40%;
    font-weight: 500;
    color: #9ca3af;
}

/* --------- progress κάρτα --------- */

.levelProgressBar {
    flex: 1 1 45%;
    border-radius: 20px;
    padding: 18px 16px 20px;
    background: radial-gradient(circle at top left, #111827 0%, #020617 55%, #020617 100%);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.levelProgressBarTitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f9fafb;
}

.levelProgressBarSub {
    font-size: 12px;
    line-height: 1.5;
    color: #9ca3af;
}

/* wrapper για τον κύκλο */
.wrap-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    margin-bottom: 6px;
}

/* circular progress */
.circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: conic-gradient(#1f2937 0deg, #020617 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.95),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.circle .inner {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #020617 0%, #020617 60%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #f9fafb;
    box-shadow: inset 0 0 0 1px rgba(55, 65, 81, 0.8);
}

/* info κειμενάκι κάτω από τον κύκλο */
.levelProgressInfo {
    font-size: 12px;
    line-height: 1.5;
    color: #e5e7eb;
    text-align: center;
    margin-top: 4px;
}

/* responsive */
@media (max-width: 768px) {
    .usersContent-part {
        flex-direction: column;
    }

    .levelProgressBar {
        order: -1; /* δώσ’ το πάνω-πάνω σε κινητό, αν θες κράτα το, αλλιώς βγάλ’ το */
    }
}
























/* ===========================
   USER ORDERS TABLE STYLING
   =========================== */

.ordersTableWrapper {
    background: radial-gradient(circle at top left, #020617 0%, #020617 55%, #020617 100%);
    border-radius: 18px;
    padding: 18px 18px 10px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.ordersTableHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ordersTableTitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f9fafb;
}

/* search bar πάνω από το table */
.ordersSearch {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #020617;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgba(75, 85, 99, 0.9);
}

.ordersSearch i {
    font-size: 12px;
    color: #9ca3af;
}

#searchSku {
    border: none;
    background: transparent;
    outline: none;
    color: #e5e7eb;
    font-size: 12px;
    min-width: 180px;
}

#searchSku::placeholder {
    color: #6b7280;
}

/* table */

.orders-table {
    margin-bottom: 0;
    color: #e5e7eb;
}

.orders-table thead tr {
    background-color: #020617;
}

.orders-table thead th {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    color: #9ca3af;
}

.orders-table tbody tr {
    background-color: #020617;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.orders-table tbody tr:nth-child(even) {
    background-color: #030712;
}

.orders-table tbody tr:hover {
    background-color: #020617;
    transform: translateY(-1px);
}

.orders-table tbody td {
    padding: 8px 8px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    font-size: 12px;
    vertical-align: middle;
}

.orders-cell-text {
    color: #e5e7eb;
    font-size: 12px;
}

/* no orders row */

.no-orders-cell {
    text-align: center;
    padding: 18px 8px;
    font-size: 13px;
    color: #9ca3af;
}

/* status badges */

.order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
}

.status-delivered {
    background-color: rgba(22, 163, 74, 0.12);
    color: #bbf7d0;
    border-color: rgba(22, 163, 74, 0.7);
}

.status-verified {
    background-color: rgba(59, 130, 246, 0.12);
    color: #bfdbfe;
    border-color: rgba(59, 130, 246, 0.8);
}

.status-pending {
    background-color: rgba(248, 113, 113, 0.12);
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.8);
}

/* details button */

.order-info-btn {
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.order-info-btn:hover {
    background: #f97316;
    color: #020617;
    border-color: #f97316;
    transform: translateY(-1px);
}

/* SweetAlert table λίγο πιο readable */

.swal2-popup .swal-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.swal2-popup .swal-products-table th,
.swal2-popup .swal-products-table td {
    border: 1px solid #e5e7eb;
    padding: 4px 6px;
}

.swal2-popup .swal-total-cost {
    margin-top: 8px;
    font-weight: 600;
}

/* responsive */

@media (max-width: 768px) {
    .ordersTableHeader {
        flex-direction: column;
        align-items: flex-start;
    }

    .ordersSearch {
        width: 100%;
        justify-content: flex-start;
    }

    #searchSku {
        width: 100%;
    }

    .orders-table thead {
        display: none; /* αν θες full responsive σε mobile, μπορούμε μετά να πάμε σε "cards" view */
    }
}
















/* ==============================
   INVOICES PAGE STYLING
   ============================== */

.invoicesWrapper {
    background: radial-gradient(circle at top left, #020617 0%, #020617 55%, #020617 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.85);
    margin-top: 10px;
}

.invoiceMonthGroup {
    margin-bottom: 28px;
}

.invoiceMonthTitle {
    font-size: 16px;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.invoiceItems {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

/* ΚΑΘΕ ΤΙΜΟΛΟΓΙΟ - ΚΑΡΤΑ */
.invoiceCard {
    background: #030712;
    border: 1px solid rgba(75, 85, 99, 0.4);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.20s ease;
    cursor: pointer;
}

.invoiceCard:hover {
    background: #1f2937;
    transform: translateY(-3px);
    border-color: #f97316;
}

.invoiceDate {
    font-size: 13px;
    font-weight: 500;
    color: #f3f4f6;
    flex: 1;
}

/* DOWNLOAD ICON */
.invoiceDownload img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.invoiceDownload img:hover {
    transform: scale(1.1);
    filter: invert(66%) sepia(82%) saturate(514%) hue-rotate(345deg) brightness(103%) contrast(101%);
}

/* MOBILE RESPONSIVE SMALLER GRID */
@media (max-width: 600px) {
    .invoiceItems {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .invoiceCard {
        padding: 14px;
    }
}





















/* SETTINGS PAGE STYLING */

.settingsSection {
    background: radial-gradient(circle at top left, #020617 0%, #020617 55%, #020617 100%);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 25px;
    border: 1px solid rgba(148,163,184,0.2);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.settingsTitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #f3f4f6;
    margin-bottom: 20px;
}

.settingsForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.settingsForm label {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.settingsInput {
    padding: 10px 12px;
    background: #030712;
    border: 1px solid rgba(75,85,99,0.9);
    border-radius: 8px;
    color: #f3f4f6;
    outline: none;
    font-size: 14px;
    transition: all .2s ease;
}

.settingsInput:focus {
    border-color: #f97316;
    background: #020617;
}

.settingsButton {
    margin-top: 6px;
    padding: 10px 18px;
    background: #f97316;
    border: none;
    border-radius: 8px;
    color: #020617;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

.settingsButton:hover {
    background: #fb923c;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .settingsSection {
        padding: 18px;
    }
}




















/* ============================
   RECOVER PASSWORD PAGE
   ============================ */

.containerRecover {
    width: 100%;
    min-height: 100vh;
    background: #020617;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.recoverBox {
    background: radial-gradient(circle at top left, #111827 0%, #0f172a 70%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 35px 40px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
    animation: fadeIn .4s ease;
}

.recoverTitle {
    font-size: 22px;
    font-weight: 700;
    color: #f8fafc;
    text-align: center;
    margin-bottom: 25px;
}

.recoverForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recoverInput {
    width: 100%;
    padding: 12px 14px;
    background: #030712;
    border: 1px solid rgba(75,85,99,0.8);
    border-radius: 8px;
    color: #e5e7eb;
    font-size: 14px;
    outline: none;
    transition: all .2s ease;
}

.recoverInput:focus {
    border-color: #f97316;
    background: #020617;
}

.recoverButton {
    width: 100%;
    padding: 12px;
    background: #f97316;
    border: none;
    border-radius: 8px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.recoverButton:hover {
    background: #fb923c;
    transform: translateY(-1px);
}

.recoverError {
    display: none;
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}

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























/* ============================
   SUCCESS MESSAGE PAGE
   ============================ */

.containerSuccess {
    width: 100%;
    height: 100vh;
    background: #020617;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    font-size: 26px;
    color: #22c55e;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    font-family: 'Josefin Sans', sans-serif;

    animation: fadeSlideIn .6s ease-out;
}

/* Glow effect για να δείχνει "success" premium */
.containerSuccess::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
    filter: blur(18px);
    z-index: -1;
}

/* Animation */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




















/* ============================================
   RESET PASSWORD PAGE
   ============================================ */

.containerRecover {
    width: 100%;
    height: 100vh;
    background: #020617; /* σκοτεινό premium */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container2 {
    background: #0f172a; 
    padding: 40px 35px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    text-align: center;
    animation: fadeInUp .6s ease-out;
    height: auto;
}

.form-container2 h1 {
    color: white;
    font-size: 26px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.form-container2 input {
    width: 100%;
    margin-bottom: 15px;
    padding: 13px 14px;
    background: #1e293b;
    border: 1px solid #334155;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all .2s ease;
}

.form-container2 input:focus {
    border-color: #0284c7;
    background: #172554;
}

.form-container2 button {
    width: 100%;
    padding: 13px;
    background: #0284c7;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}

.form-container2 button:hover {
    background: #0369a1;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .form-container2 {
        padding: 30px 25px;
    }

    .form-container2 h1 {
        font-size: 22px;
    }
}
