.ccm-wrapper {
    position: fixed;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ccm-wrapper.bottom-right { right: 20px; align-items: flex-end; }
.ccm-wrapper.bottom-left { left: 20px; align-items: flex-start; }

/* --- ΜΕΓΕΘΗ --- */
.ccm-size-small .ccm-main-btn { width: 45px; height: 45px; }
.ccm-size-small .ccm-item { width: 38px; height: 38px; }
.ccm-size-small .ccm-main-btn .dashicons { font-size: 22px; width: 22px; height: 22px; }
.ccm-size-small .ccm-item .dashicons { font-size: 18px; width: 18px; height: 18px; }

.ccm-size-medium .ccm-main-btn { width: 60px; height: 60px; }
.ccm-size-medium .ccm-item { width: 50px; height: 50px; }
.ccm-size-medium .ccm-main-btn .dashicons { font-size: 28px; width: 28px; height: 28px; }
.ccm-size-medium .ccm-item .dashicons { font-size: 22px; width: 22px; height: 22px; }

.ccm-size-large .ccm-main-btn { width: 75px; height: 75px; }
.ccm-size-large .ccm-item { width: 62px; height: 62px; }
.ccm-size-large .ccm-main-btn .dashicons { font-size: 36px; width: 36px; height: 36px; }
.ccm-size-large .ccm-item .dashicons { font-size: 28px; width: 28px; height: 28px; }

/* --- ΚΕΝΤΡΙΚΟ ΚΟΥΜΠΙ --- */


/* --- ΚΕΝΤΡΙΚΟ ΚΟΥΜΠΙ --- */
.ccm-main-btn {
    border-radius: 50%;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

/* Το κοντέινερ του εικονιδίου */
.ccm-trigger-icon {
    position: relative;
    display: block;
    transition: transform 0.3s ease;
}

/* Καθορισμός μεγέθους του εικονιδίου ανάλογα με το μέγεθος του κουμπιού */
.ccm-size-small .ccm-trigger-icon { width: 16px; height: 16px; }
.ccm-size-medium .ccm-trigger-icon { width: 22px; height: 22px; }
.ccm-size-large .ccm-trigger-icon { width: 28px; height: 28px; }

/* Σχεδιασμός των δύο γραμμών που κάνουν το "+" */
.ccm-trigger-icon::before,
.ccm-trigger-icon::after {
    content: "";
    position: absolute;
    background-color: currentColor; /* Παίρνει αυτόματα το Χρώμα Εικονιδίου από το Admin */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Η οριζόντια γραμμή */
.ccm-trigger-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Η κάθετη γραμμή */
.ccm-trigger-icon::after {
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    transform: translateX(-50%);
}

/* --- ANIMATION: Όταν ανοίγει, το "+" περιστρέφεται και γίνεται "X" --- */
.ccm-wrapper.open .ccm-trigger-icon {
    transform: rotate(135deg);
}


/* Όταν ανοίγει το μενού, το + περιστρέφεται κατά 135 μοίρες και γίνεται τέλειο X */
.ccm-wrapper.open .ccm-trigger-icon {
    transform: rotate(135deg);
}

/* --- ΥΠΟΜΕΝΟΥ --- */
.ccm-sub-menu {
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.ccm-item-container {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.ccm-wrapper.bottom-left .ccm-item-container { flex-direction: row-reverse; }

.ccm-item {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.ccm-item:hover { transform: scale(1.1); }

/* --- LABELS --- */
.ccm-text-label {
    background: #333333;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-family: sans-serif;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- ANIMATIONS (ΤΡΟΠΟΙ ΑΝΑΠΤΥΞΗΣ) --- */
.ccm-anim-slide-up .ccm-sub-menu { transform: translateY(30px); }
.ccm-anim-slide-up.open .ccm-sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.ccm-anim-fade-in .ccm-sub-menu { transform: translateY(0); }
.ccm-anim-fade-in.open .ccm-sub-menu { opacity: 1; visibility: visible; }

.ccm-anim-scale-up .ccm-sub-menu { transform: scale(0.5); transform-origin: bottom center; }
.ccm-anim-scale-up.open .ccm-sub-menu { opacity: 1; visibility: visible; transform: scale(1); }

/* --- ΦΙΛΤΡΑ ΣΥΣΚΕΥΩΝ (MEDIA QUERIES) --- */
@media (min-width: 769px) {
    .ccm-show-mobile { display: none !important; }
}
@media (max-width: 768px) {
    .ccm-show-desktop { display: none !important; }
}