.elementor-2932 .elementor-element.elementor-element-fa48c7d{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2932 .elementor-element.elementor-element-0b3ce17{border-style:solid;border-width:0px 0px 3px 0px;border-color:#00C6FF;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);}/* Start custom CSS for html, class: .elementor-element-0b3ce17 *//* ==================================================
   COCKTAIL MACHINE HEADER STYLES - FINAL COMPLETE
   ================================================== */

:root {
    --cm-dark-gray: #1a1a1a;
    --cm-light-gray: #f5f5f5;
    --cm-pink: #E91E63;
    --cm-cyan: #00AAFF;
    --cm-white: #ffffff;
    --cm-text-dark: #333333;
}

.cm-header-wrapper {
    width: 100%;
    position: relative;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

.cm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* ==================================================
   TOP BAR (WHITE)
   ================================================== */
.cm-top-bar {
    background: var(--cm-white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cm-top-left, .cm-top-right {
    flex: 1;
}

.cm-socials {
    display: flex;
    gap: 20px;
}

.cm-socials a {
    color: var(--cm-text-dark);
    font-size: 18px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cm-socials a:hover {
    color: var(--cm-cyan);
}

.cm-logo {
    flex: 0 0 auto;
    text-align: center;
}

.cm-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.cm-top-right {
    display: flex;
    justify-content: flex-end;
}

/* User Account Status (User Provided CSS) - DESKTOP ONLY */
.ds-fiok-status {
    line-height: 1.3;
    text-align: right;
}

.ds-fiok-link {
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ds-user-icon {
    margin-right: 6px;
    font-size: 18px;
    color: var(--cm-text-dark);
}

.ds-fiok-logged-in {
    color: #16a34a;
    font-size: 12px;
    margin-top: 3px;
}

.ds-fiok-link:hover {
    text-decoration: underline;
}

/* ==================================================
   NAV BAR (DARK GRAY)
   ================================================== */
.cm-nav-bar {
    background: var(--cm-dark-gray);
    padding: 0;
}

.cm-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.cm-nav {
    display: flex;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.cm-nav-item {
    color: var(--cm-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 20px 25px;
    display: block;
    position: relative;
    transition: all 0.3s;
    letter-spacing: 1px;
}

/* Hover Effect (Pink/Cyan Gradient Underline) */
.cm-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cm-pink), var(--cm-cyan));
    transition: width 0.3s;
}

.cm-nav-item:hover {
    color: var(--cm-cyan);
}

.cm-nav-item:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.cm-nav-dropdown {
    position: relative;
}

.cm-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cm-dark-gray);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cm-nav-dropdown:hover .cm-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cm-dropdown-menu a {
    color: var(--cm-white);
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #333;
    transition: all 0.3s;
}

.cm-dropdown-menu a:hover {
    background: #333;
    color: var(--cm-cyan);
}

/* Language Selector */
.cm-lang-dropdown {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-left: 30px;
}

.cm-lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cm-white);
    padding: 20px 15px;
    transition: 0.3s;
    border-radius: 8px;
}

.cm-lang-current:hover {
    background: rgba(255,255,255,0.1);
    color: var(--cm-cyan);
}

.cm-lang-flag {
    font-size: 24px;
}

.cm-lang-code {
    font-size: 14px;
}

.cm-lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 9999;
}

.cm-lang-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--cm-text-dark);
    transition: 0.2s;
    font-weight: 500;
}

.cm-lang-menu a:hover {
    background: var(--cm-light-gray);
    color: var(--cm-cyan);
}

.cm-lang-dropdown.active .cm-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==================================================
   MOBILE MENU
   ================================================== */
.cm-mobile-toggle {
    display: none;
    color: var(--cm-white);
    font-size: 24px;
    cursor: pointer;
    padding: 15px 0;
}

.cm-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cm-white);
    z-index: 10000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 30px;
    overflow-y: auto;
}

.cm-mobile-nav.active {
    right: 0;
}

.cm-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cm-mobile-header img {
    height: 40px;
}

.cm-mobile-header i {
    font-size: 24px;
    cursor: pointer;
    color: var(--cm-text-dark);
}

.cm-mobile-links > a,
.cm-mobile-links > .cm-mobile-dropdown {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cm-mobile-links > a:last-of-type {
    border-bottom: none;
}

.cm-mobile-links > .cm-mobile-dropdown:last-of-type {
    border-bottom: 1px solid #f0f0f0;
}

.cm-mobile-links a {
    color: var(--cm-text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
    display: block;
}

.cm-mobile-links a:hover {
    color: var(--cm-cyan);
}

/* Mobile Dropdown */
.cm-mobile-dropdown {
    padding: 0;
}

.cm-mobile-dropdown-toggle {
    display: flex;
    color: var(--cm-text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.cm-mobile-dropdown-toggle:hover {
    color: var(--cm-cyan);
}

.cm-mobile-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
    margin-left: 10px;
}

.cm-mobile-dropdown.active .cm-mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.cm-mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    border-radius: 0;
    margin-top: 10px;
    padding-left: 15px;
}

.cm-mobile-dropdown-menu.active {
    max-height: 500px;
}

.cm-mobile-dropdown-menu a {
    display: block;
    color: var(--cm-text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    margin: 0;
    text-transform: none;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.cm-mobile-dropdown-menu a:hover {
    background: #eee;
    color: var(--cm-cyan);
    border-left-color: var(--cm-cyan);
}

.cm-mobile-account {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cm-text-dark) !important;
}

.cm-mobile-account i {
    font-size: 18px;
}

.cm-mobile-links hr {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 0;
    padding: 0;
}

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1024px) {
    .cm-nav {
        display: none;
    }
    .cm-mobile-toggle {
        display: block;
    }
    .cm-logo img {
        height: 50px;
    }
    .cm-socials {
        display: none;
    }
    .cm-lang-dropdown {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .cm-top-bar .cm-container {
        flex-direction: column;
        gap: 15px;
    }
    .cm-top-left {
        display: none;
    }
    /* Hide user account status on mobile */
    .cm-top-right {
        display: none;
    }
    .ds-fiok-status {
        text-align: center;
    }
    .ds-fiok-link {
        justify-content: center;
    }
    .cm-nav-container {
        justify-content: space-between;
    }
    
    /* Mobile Language Dropdown - Positioned below the button */
    .cm-lang-dropdown {
        position: relative;
    }
    
    .cm-lang-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 1px;
        margin-top: 5px;
        max-width: 200px;
    }
}/* End custom CSS */