/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 22 2026 | 10:54:23 */
/* ===== PREMIUM REFINED DROPDOWN ===== */

/* Base dropdown */
.ct-header .sub-menu {
    background: #111111;
    border-radius: 14px;
    padding: 12px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.25s ease;
}

/* Smooth show */
.ct-header .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
}

/* Menu items */
.ct-header .sub-menu li {
    padding: 0;
}

/* Links */
.ct-header .sub-menu li a {
    padding: 12px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #eaeaea;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}

/* Subtle hover */
.ct-header .sub-menu li a:hover {
    background: rgba(200,169,106,0.08);
    color: #c8a96a;
    padding-left: 28px;
}

/* Gold left indicator */
.ct-header .sub-menu li a::before {
    content: "";
    position: absolute;
    left: 12px;
    width: 3px;
    height: 0;
    background: #c8a96a;
    transition: height 0.25s ease;
}

.ct-header .sub-menu li a:hover::before {
    height: 60%;
}