.switcher-customer-welcome {
    display: flex;
    align-items: center;
}

.switcher-customer-welcome .switcher-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    background: transparent;
    color: #2d8659;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switcher-customer-welcome .switcher-trigger:hover {
    background: #2d8659;
    color: #ffffff;
}

div#mtImageContainer {
    border: 1px solid #5EC89B;
}

.switcher-customer-welcome .switcher-trigger svg {
    width: 18px;
    height: 18px;
}

.switcher-customer-welcome .switcher-dropdown {
    min-width: 180px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.switcher-customer-welcome .switcher-dropdown li {
    list-style: none;
}

.switcher-customer-welcome .switcher-dropdown li a {
    display: block;
    padding: 12px 16px;
    color: #333333;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 0.95em;
}

.switcher-customer-welcome .switcher-dropdown li a:hover {
    background: #f5f5f5;
    color: #2d8659;
}

.switcher-customer-welcome .switcher-dropdown li:first-child a {
    border-radius: 4px 4px 0 0;
}

.switcher-customer-welcome .switcher-dropdown li:last-child a {
    border-radius: 0 0 4px 4px;
}

/* Shopping Cart Button */
.minicart-wrapper .action.showcart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border-radius: 25px;
    background: transparent;
    color: #2d8659;
    font-weight: 600;
    font-size: 0.95em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.minicart-wrapper .action.showcart:hover {
    background: #2d8659;
    color: #ffffff;
}

.minicart-wrapper .action.showcart svg {
    width: 22px;
    height: 22px;
}

/* Search Button */
.pc-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 38px;
    padding: 0;
    border-radius: 60px;
    background: transparent !important;
    color: #2d8659;
    cursor: pointer;
    transition: all 0.3s ease;
}
form#search_mini_form {
    display: block !important;
}
.pc-search-trigger:hover {
    background: #2d8659 !important;
    color: #ffffff;
}

.pc-search-trigger svg {
    width: 18px;
    height: 18px;
}

/* Search Form */
.block-search .form.minisearch input.input-text {
    border: 2px solid #2d8659;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.95em;
}

.block-search .form.minisearch input.input-text:focus {
    border-color: #2d8659;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.block-search .form.minisearch button.action.search {
    border: 0 solid #2d8659;
    border-radius: 4px;
    background: #2d8659;
    color: #ffffff;
    padding: 0 9px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: -10px;
    height: 40px;
}

.block-search .form.minisearch button.action.search:hover {
    background: #1f5f3f;
    border-color: #1f5f3f;
}

.block-search .action.search:before {
    color: #fff;
}

.minicart-wrapper .action.showcart.active {
    display: flex;
    text-decoration: none;
}