@charset "UTF-8";

/* Base Styles */
:root {
    --primary-color: #e45982;
    --primary-hover: #d14a72;
    --text-color: #333;
    --text-light: #666;
    --border-color: #f0f0f0;
    --background-light: #f9f9f9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Container Styles */
.nmgr-frontend-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* List View Styles */
.nmgr-items-view.list {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.nmgr-items-view.list thead th {
    background-color: var(--primary-color);
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.nmgr-items-view.list tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nmgr-items-view.list tbody tr:last-child {
    border-bottom: none;
}

.nmgr-items-view.list tbody tr:hover {
    background-color: #fff5f7;
}

.nmgr-items-view.list tbody td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Grid View Styles */
.nmgr-items-view.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.nmgr-items-view.grid .item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nmgr-items-view.grid .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nmgr-items-view.grid .item .item-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}

.nmgr-items-view.grid .item .item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nmgr-items-view.grid .item:hover .item-image img {
    transform: scale(1.1);
}

.nmgr-items-view.grid .item .item-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nmgr-items-view.grid .item .item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.nmgr-items-view.grid .item .item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Button Styles */
.nmgr-action-button,
.nmgr-add-to-cart-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.nmgr-action-button:hover,
.nmgr-add-to-cart-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Status Badges */
.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.status-active {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-pending {
    background-color: #fff3e0;
    color: #e65100;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--background-light);
    border-radius: 12px;
    margin: 2rem 0;
}

.empty-state svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.empty-state h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nmgr-frontend-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nmgr-frontend-container {
        padding: 1rem;
    }

    .nmgr-items-view.grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .nmgr-items-view.list {
        display: block;
    }

    .nmgr-items-view.list thead {
        display: none;
    }

    .nmgr-items-view.list tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }

    .nmgr-items-view.list tbody td {
        display: block;
        text-align: right;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nmgr-items-view.list tbody td:last-child {
        border-bottom: none;
    }

    .nmgr-items-view.list tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--text-light);
    }
}

@media (max-width: 480px) {
    .nmgr-items-view.grid {
        grid-template-columns: 1fr;
    }
}

.nmgr-animation-scaleshrink {
    -webkit-animation-name: nmgr-animation-scaleshrink;
    animation-name: nmgr-animation-scaleshrink;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    outline: none !important;
}

@-webkit-keyframes nmgr-animation-scaleshrink {
    50% {
        -webkit-transform: scale(4);
        transform: scale(4);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes nmgr-animation-scaleshrink {
    50% {
        -webkit-transform: scale(4);
        transform: scale(4);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.nmgr-atw-btn.icon-heart {
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    color: currentColor;
    outline: none;
}

.nmgr-atw-btn.not-in-wishlist .in-wishlist-icon,
.nmgr-atw-btn:not(.not-in-wishlist) .not-in-wishlist-icon {
    display: none;
}

.nmgr-atw-btn.on-thumbnail {
    position: absolute;
    padding: 10px;
    margin: 5px;
    display: inline-block;
    z-index: 1;
}

.nmgr-atw-btn.on-thumbnail.nmgr-left {
    left: 0;
}

.nmgr-atw-btn.on-thumbnail.nmgr-right {
    right: 0;
}

.nmgr-atw-btn.on-thumbnail.nmgr-top {
    top: 0;
}

.nmgr-atw-btn.on-thumbnail.nmgr-bottom {
    bottom: 0;
}

.nmgr-atw-wrapper {
    margin-bottom: 10px;
}

.nmgr-datepicker.ui-datepicker {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
    border: 1px solid #ccc;
    display: none;
    margin-top: 2px;
    padding: 10px;
    width: 17em;
}

.nmgr-datepicker.ui-datepicker a,
.nmgr-datepicker.ui-datepicker a:hover {
    cursor: pointer;
    text-decoration: none;
}

.nmgr-datepicker.ui-datepicker a:hover,
.nmgr-datepicker.ui-datepicker td:hover a {
    color: currentColor;
    -webkit-transition: color 0.1s ease-in-out;
    transition: color 0.1s ease-in-out;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 0.2em 0;
    margin-bottom: 4px;
    text-align: center;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-title {
    font-weight: bold;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-prev,
.nmgr-datepicker.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-prev:before {
    border-left: 0.1em solid;
    border-bottom: 0.1em solid;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-next:before {
    border-right: 0.1em solid;
    border-top: 0.1em solid;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-prev:before,
.nmgr-datepicker.ui-datepicker .ui-datepicker-next:before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nmgr-datepicker.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: 0.5em;
    top: 0.3em;
}

.nmgr-datepicker.ui-datepicker table {
    width: 100%;
    font-size: 0.9em;
    border-collapse: collapse;
    margin: 0 0 0.4em;
}

.nmgr-datepicker.ui-datepicker th {
    padding: 0.7em 0.3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.nmgr-datepicker.ui-datepicker td {
    border: 0;
    border-radius: 3px;
    padding: 1px;
}

.nmgr-datepicker.ui-datepicker td a:hover {
    background-color: #eee;
    cursor: pointer;
}

.nmgr-datepicker.ui-datepicker td span,
.nmgr-datepicker.ui-datepicker td a {
    display: block;
    padding: 0.2em;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-current-day a,
.nmgr-datepicker.ui-datepicker .ui-datepicker-today a {
    font-weight: bold;
}

.nmgr-datepicker.ui-datepicker .ui-datepicker-current-day a {
    background-color: #ddd;
}

.nmgr-datepicker.ui-datepicker-rtl {
    direction: rtl;
}

.nmgr-datepicker.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}

.nmgr-datepicker.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

/*
Common classes
*/
.nmgr-grey {
    color: #999;
}

.nmgr-field:not(.form-row-first):not(.form-row-last) {
    clear: both;
}

.is-nm-blocked {
    pointer-events: none;
}

.nmgr-validate.nmgr-invalid .select2-selection,
.nmgr-validate.nmgr-invalid input,
.nmgr-validate.nmgr-invalid select,
.nmgr-validate.nmgr-invalid textarea {
    border: 1px solid red;
}

.nmgr-settings-error,
.nmgr-error-text {
    color: red !important;
}

.nmgr-error-text {
    font-size: small;
}

.nmgr-text-center {
    text-align: center !important;
}

.nmgr-hide {
    display: none;
}

.nmgr-circle {
    border-radius: 50%;
}

.nmgr-cursor-help {
    cursor: help;
}

svg.nmgr-icon:not(.nmgr-hide) {
    display: inline-block;
}

svg.nmgr-icon.align-with-text {
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}



/* Table Styles */
.nmgr-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.nmgr-table thead th {
    background-color: var(--primary-color);
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.nmgr-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-color);
    background-color: white;
    position: relative;
    cursor: pointer;
}

.nmgr-table tbody tr:last-child {
    border-bottom: none;
}

.nmgr-table tbody tr:hover {
    background-color: rgba(228, 89, 130, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(228, 89, 130, 0.1);
}

.nmgr-table tbody tr::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nmgr-table tbody tr:hover::after {
    transform: scaleX(1);
}

.nmgr-table tbody td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
    color: var(--text-color);
    font-size: 0.95rem;
}

.nmgr-table td.nmgr_title {
    font-weight: 600;
}

.nmgr-table td.nmgr_title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nmgr-table td.nmgr_title a:hover {
    color: var(--primary-color);
}

.nmgr-table td.nmgr_items {
    font-weight: 500;
    color: var(--primary-color);
}

.nmgr-table td.nmgr_total {
    font-weight: 600;
    color: var(--text-color);
}

.nmgr-table td.nmgr_actions {
    text-align: right;
}

.nmgr-table .wishlists-action {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: white;
}

.nmgr-table .wishlists-action:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Responsive Table Styles */
@media (max-width: 768px) {
    .nmgr-table {
        border: none;
        box-shadow: none;
    }

    .nmgr-table thead {
        display: none;
    }

    .nmgr-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border-radius: 12px;
        box-shadow: var(--shadow);
        background-color: white;
    }

    .nmgr-table tbody tr:hover {
        background-color: rgba(228, 89, 130, 0.05);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(228, 89, 130, 0.1);
    }

    .nmgr-table tbody td {
        display: block;
        text-align: right;
        padding: 1rem;
    }

    .nmgr-table tbody td:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }

    .nmgr-table tbody td[data-title]:before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
        color: var(--text-light);
    }

    .nmgr-table td.nmgr_actions {
        text-align: center;
        border-bottom: none;
    }

    .nmgr-table .wishlists-action {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Orderby Styles - Preserved */
.nmgr-table thead .orderby {
    position: relative;
    cursor: pointer;
}

.nmgr-table thead .orderby:not(.desc):not(.asc):not(:hover):after {
    opacity: 0.5;
}

.nmgr-table thead .orderby:after {
    position: absolute;
    padding-right: 1px;
    right: 0;
    content: "↕";
}

.nmgr-table thead .orderby.desc:after,
.nmgr-table thead .orderby.asc:hover:after {
    content: "↓";
}

.nmgr-table thead .orderby.asc:after,
.nmgr-table thead .orderby.desc:hover:after,
.nmgr-table thead .orderby:not(.desc):not(.asc):hover:after {
    content: "↑";
}

.nmgr-progressbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nmgr-progressbar .progress-wrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #f2f2f2;
    border-radius: 0.625em;
}

.nmgr-progressbar .progress-wrapper .progress {
    background-color: #666;
    height: 0.625em;
    border-radius: 0.625em;
}

.nmgr-progressbar .percent {
    margin-left: 0.875em;
    font-size: 0.8125em;
}

.nmgr-border-top {
    border-top: 1px solid #999;
}

.nmgr-border-bottom {
    border-bottom: 1px solid #999;
}

.nmgr-after-table-row {
    text-align: right;
}

.nmgr-after-table-row table.total {
    margin-left: auto;
    padding: 0;
    border-collapse: collapse;
}

.nmgr-after-table-row table.total td,
.nmgr-after-table-row table.total th {
    text-align: right;
}

.nmgr-after-table-row table.total .amount {
    font-weight: 700;
}

.nmgr-checkbox-switch {
    /** bar */
    --nmgr_ts-bar-height: 20px;
    --nmgr_ts-bar-width: 44px;
    --nmgr_ts-bar-color: #eee;
    /** knob */
    --nmgr_ts-knob-size: 22px;
    --nmgr_ts-knob-color: #fff;
    /** switch */
    --nmgr_ts-switch-offset: calc(var(--nmgr_ts-knob-size) - var(--nmgr_ts-bar-height));
    --nmgr_ts-switch-width: calc(var(--nmgr_ts-bar-width) + var(--nmgr_ts-switch-offset));
    --nmgr_ts-transition-duration: 200ms;
    --nmgr_ts-switch-transition: all var(--nmgr_ts-transition-duration) ease-in-out;
    --nmgr_ts-switch-theme-rgb: 34, 113, 177;
    --nmgr_ts-switch-theme-color: rgb(var(--nmgr_ts-switch-theme-rgb));
    --nmgr_ts-switch-box-shadow: 0 0 var(--nmgr_ts-switch-offset) rgba(var(--nmgr_ts-switch-border-rgb), .5);
    --nmgr_ts-switch-margin: 8px;
    --nmgr_ts-switch-margin-top: 10px;
    --nmgr_ts-switch-margin-right: 13px;
    --nmgr_ts-switch-border-rgb: 17, 17, 17;
    position: relative;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: var(--nmgr_ts-bar-width);
    min-height: var(--nmgr_ts-bar-height);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* checked */
    /* bar */
    /* checked bar */
    /* knob */
    /* checked knob */
    /* hover & focus knob */
}

.nmgr-checkbox-switch.disabled,
.nmgr-checkbox-switch.readonly {
    opacity: 0.4;
}

.nmgr-checkbox-switch>input {
    position: absolute;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.nmgr-checkbox-switch>label {
    --nmgr_ts-knob-x: calc((var(--nmgr_ts-bar-height) - var(--nmgr_ts-bar-width)) / 2);
    position: relative;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: var(--nmgr_ts-bar-width);
    height: var(--nmgr_ts-bar-height);
    margin: var(--nmgr_ts-switch-margin-top) var(--nmgr_ts-switch-margin-right) !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nmgr-checkbox-switch.label-before>label {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.nmgr-checkbox-switch> :checked+label {
    --nmgr_ts-knob-x: calc((var(--nmgr_ts-bar-width) - var(--nmgr_ts-bar-height)) / 2);
}

.nmgr-checkbox-switch>label::before {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: var(--nmgr_ts-bar-width);
    height: var(--nmgr_ts-bar-height);
    background: var(--nmgr_ts-bar-color);
    border: 1px solid rgba(var(--nmgr_ts-switch-border-rgb), 0.2);
    border-radius: var(--nmgr_ts-bar-height);
    opacity: 0.5;
    -webkit-transition: var(--nmgr_ts-switch-transition);
    transition: var(--nmgr_ts-switch-transition);
    content: "";
}

.nmgr-checkbox-switch> :checked+label::before {
    background: var(--nmgr_ts-switch-theme-color);
    border-color: var(--nmgr_ts-switch-theme-color);
}

.nmgr-checkbox-switch>label::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: var(--nmgr_ts-knob-size);
    height: var(--nmgr_ts-knob-size);
    background: var(--nmgr_ts-knob-color);
    border-radius: 50%;
    -webkit-box-shadow: var(--nmgr_ts-switch-box-shadow);
    box-shadow: var(--nmgr_ts-switch-box-shadow);
    -webkit-transform: translateX(var(--nmgr_ts-knob-x));
    transform: translateX(var(--nmgr_ts-knob-x));
    -webkit-transition: var(--nmgr_ts-switch-transition);
    transition: var(--nmgr_ts-switch-transition);
    content: "";
}

.nmgr-checkbox-switch> :checked+label::after {
    background: var(--nmgr_ts-switch-theme-color);
}

.nmgr-checkbox-switch:not(.disabled):not(.readonly):hover>label::after,
.nmgr-checkbox-switch> :checked+label::after {
    -webkit-box-shadow: var(--nmgr_ts-switch-box-shadow), 0 0 0 calc(var(--nmgr_ts-switch-margin-top) - 2px) rgba(var(--nmgr_ts-switch-theme-rgb), 0.2);
    box-shadow: var(--nmgr_ts-switch-box-shadow), 0 0 0 calc(var(--nmgr_ts-switch-margin-top) - 2px) rgba(var(--nmgr_ts-switch-theme-rgb), 0.2);
}

.nmgr-account-template fieldset {
    display: contents;
}

.nmgr-navs {
    text-align: right;
    padding: 1em 0;
}

.nmgr-navs>* {
    padding: 0.175em 0.625em;
}

.nmgr-navs>*:not(:last-child) {
    margin-right: 7px;
}

.nmgr-navs>.nmgr-nav {
    background: #f5f5f5;
    border-radius: 5px;
    color: #aaa;
    text-decoration: none !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.nmgr-navs>.nmgr-nav:hover {
    color: #888;
}

body.wp-admin .nmgr-navs {
    padding-right: 4px;
}

/*--------------------------------------------
jQuery ui tooltip
----------------------------------------------*/
.nmgr-tooltip.ui-tooltip {
    border-radius: 6px;
    padding: 0.4em 1em;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 0.9em;
    text-align: center;
}

/*--------------------------------------------
jQuery ui menu
----------------------------------------------*/
.nmgr-dropdown,
.nmgr-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    outline: 0;
}

.nmgr-submenu {
    display: none;
}

.nmgr-dropdown.ui-menu {
    display: inline-block !important;
    border: none !important;
}

.nmgr-dropdown.ui-menu .ui-state-active {
    margin: 0 !important;
}

.nmgr-dropdown.ui-menu .nmgr-dropdown-btn.nmgr-default {
    margin: 0 !important;
    padding: 0.625em !important;
    border: none !important;
    color: #888 !important;
    display: inline-block;
    line-height: 0;
    border-radius: 50%;
}

.nmgr-dropdown.ui-menu .nmgr-dropdown-btn.nmgr-default:hover {
    background: #f7f7f7;
    color: #888 !important;
}

.nmgr-dropdown.ui-menu .ui-menu-icon {
    display: none;
}

.nmgr-dropdown.ui-menu .ui-menu-item {
    padding: 0;
}

.nmgr-dropdown.ui-menu .nmgr-submenu.ui-menu {
    min-width: 10rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    background-clip: padding-box;
    font-size: 1em !important;
    text-align: left;
    background: #fff !important;
    position: absolute;
}

.nmgr-dropdown.ui-menu .nmgr-submenu.ui-menu .ui-menu-divider {
    height: 0;
    margin: 5px 0;
    border-top: 1px solid #dddddd;
}

.nmgr-dropdown.ui-menu .nmgr-submenu.ui-menu .nmgr-header {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d !important;
}

.nmgr-dropdown.ui-menu .nmgr-submenu.ui-menu .nmgr-text {
    color: #999 !important;
}

.nmgr-dropdown.ui-menu .nmgr-submenu.ui-menu .ui-menu-item-wrapper {
    display: block;
    padding: 0.35rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    border: 0;
}

.nmgr-dropdown.ui-menu .nmgr-submenu.ui-menu .ui-menu-item-wrapper:not(.nmgr-disabled):hover {
    background: #e9ecef;
}

/*--------------------------------------------
Badge
----------------------------------------------*/
.hang-badge {
    position: relative;
}

.hang-badge .nmgr-badge {
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 100%;
    border-radius: 50rem;
    height: inherit;
    width: inherit;
}

.nmgr-badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background-color: #aaa;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

/* Modern Grid View */
.nmgr-items-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
    background: #ffffff;
}

.nmgr-items-view .item {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.nmgr-items-view .item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.nmgr-items-view .thumbnail {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.nmgr-items-view .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nmgr-items-view .item:hover .thumbnail img {
    transform: scale(1.1);
}

.nmgr-items-view .content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.nmgr-items-view .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nmgr-items-view .price {
    font-size: 4.25rem;
    font-weight: 700;
    color: #e45982;
    margin: 0.5rem 0;
}

.nmgr-items-view .sku {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Add to Cart Button */
.nmgr-add-to-cart {
    display: inline-block;
    margin: 0;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 2px;
    border: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #e45892;
    color: #fff;
    font-size: 0.92em;
    line-height: 1.75;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    outline: none !important;
}

.nmgr-add-to-cart:hover {
    background: #e45892;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.nmgr-add-to-cart:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nmgr-items-view {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }

    .nmgr-items-view .content {
        padding: 1rem;
    }

    .nmgr-items-view .title {
        font-size: 1rem;
    }

    .nmgr-items-view .price {
        font-size: 1.1rem;
    }

    .nmgr-add-to-cart {
        padding: 0.75rem !important;
        font-size: 0.85rem !important;
    }
}

/* Empty State */
.nmgr-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: #666;
}

.nmgr-empty-state svg {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.nmgr-empty-state h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.nmgr-empty-state p {
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

/* Add to Cart Button Styling */
.nmgr-items-view.grid .nmgr-add-to-cart-button {
    background-color: transparent !important;
    border: 1px solid #e45982 !important;
    color: #e45982 !important;
    transition: all 0.3s ease;
}

.nmgr-items-view.grid .nmgr-add-to-cart-button:hover {
    background-color: #e45982 !important;
    color: white !important;
}

/* Grid Layout */
.nmgr-items-view.grid {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    /* Fixed 4 columns, each 25% width */
    gap: 20px;
    margin: 0;
    padding: 20px;
    list-style: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.nmgr-items-view.grid .item {
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 500px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 1;
    visibility: visible;
}

.nmgr-items-view.grid .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nmgr-items-view.grid .item .item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 8px;
}

.nmgr-items-view.grid .item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nmgr-items-view.grid .item:hover .item-image img {
    transform: scale(1.05);
}

.nmgr-items-view.grid .item .item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.nmgr-items-view.grid .item .item-title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
}

.nmgr-items-view.grid .item .item-price {
    margin-top: auto;
    font-weight: bold;
    font-size: 20px;
    color: #e45982;
}

.nmgr-items-view.grid .item .nmgr-add-to-cart-button {
    margin-top: 15px;
    background-color: #e45982;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.nmgr-items-view.grid .item .nmgr-add-to-cart-button:hover {
    background-color: #d14a72;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .nmgr-items-view.grid {
        grid-template-columns: repeat(4, 25%);
    }
}

@media (max-width: 992px) {
    .nmgr-items-view.grid {
        grid-template-columns: repeat(3, 33.33%);
    }
}

@media (max-width: 768px) {
    .nmgr-items-view.grid {
        grid-template-columns: repeat(2, 50%);
    }
}

@media (max-width: 576px) {
    .nmgr-items-view.grid {
        grid-template-columns: 100%;
    }
}

#nmgr-images .background-image-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

#nmgr-images .background-image-wrapper .nmgr-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Thumbnail positioning */
#nmgr-images .thumbnail-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 20px;
    /* Position from left side */
    z-index: 2;
    width: 150px;
    /* Fixed width for thumbnail */
    height: 150px;
    /* Fixed height for thumbnail */
    border-radius: 50%;
    /* Make it circular */
    overflow: hidden;
    border: 4px solid #fff;
    /* White border around thumbnail */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
}

#nmgr-images .thumbnail-image-wrapper .nmgr-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* For larger screens */
@media screen and (min-width: 768px) {
    #nmgr-images .background-image-wrapper {
        height: 200px;
        border-radius: 8px;
    }

    #nmgr-images .thumbnail-image-wrapper {
        width: 180px;
        /* Slightly larger on desktop */
        height: 180px;
        left: 30px;
        /* More space from left on desktop */
    }
}


/* Menu Block Styling */
.nmgr-menu {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.nmgr-menu-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.nmgr-menu-item:hover {
    background-color: #e45982;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(228, 89, 130, 0.2);
}

.nmgr-menu-item.active {
    background-color: #e45982;
    color: #fff;
    border-color: #e45982;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .nmgr-menu {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .nmgr-menu-item {
        width: 100%;
        justify-content: center;
    }
}

/* Profile info styling */
.nmgr-profile-info-container {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

/* Left side - Display name */






/* For larger screens */
@media screen and (min-width: 768px) {
    .nmgr-profile-info-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        padding: 30px;
    }



    .nmgr-right-content {
        flex: 0 0 65%;
        display: flex;
        flex-direction: column;
    }


}




.nmgr-dashboard {
    margin-top: 20px;
}














/* Menu Block Styling */
/* Menu Block Styling */
.nmgr-wishlist-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    max-width: 400px;
    min-height: 300px;
    /* Limit width for better list appearance */
}

/* Import Material Icons */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* Menu Item Styling with Icons */
.nmgr-wishlist-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #fff;
    color: #333 !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    font-size: 1.2em;
    margin: 0 0 8px 0;
    gap: 12px;
}

/* Icon Styling */
.nmgr-wishlist-menu a .material-symbols-rounded {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

/* Hover State */
.nmgr-wishlist-menu a:hover {
    background-color: #e45982;
    color: #fff !important;
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(228, 89, 130, 0.2);
}

/* Active State */
.nmgr-wishlist-menu a.active {
    background-color: #e45982;
    color: #fff !important;
    border-color: #e45982;
}

/* Icon Animation on Hover */
.nmgr-wishlist-menu a:hover .material-symbols-rounded,
.nmgr-wishlist-menu a.active .material-symbols-rounded {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nmgr-wishlist-menu a {
        padding: 10px 16px;
        font-size: 1.1em;
    }
    
    .nmgr-wishlist-menu a .material-symbols-rounded {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}



.nmgr-tab-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background: #f5f5f5;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nmgr-tab-button.active {
    background: #e45982;
    color: white;
}

.nmgr-tab-button:hover {
    background: #e45982;
    color: white;
}

.nmgr-add-to-wishlist-button {
    margin-left: auto;
    padding: 8px 16px;
    background: #e45982;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nmgr-add-to-wishlist-button:hover {
    background: #d14a72;
    transform: translateY(-1px);
}

.nmgr-wishlist-title {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.nmgr-wishlist-meta {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .nmgr-wishlist-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .nmgr-add-to-wishlist-button {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}



.nmgr-block {
    background: white;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nmgr-block-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.nmgr-button {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100px !important;
    padding: 12px 20px !important;
    margin: 8px 0 !important;
    background-color: #b4b4b4 !important;
    color: rgb(73, 73, 73) !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    text-align: center !important;
    transition: opacity 0.3s ease !important;
}

.nmgr-button:hover {
    background-color: #d14a73 !important;
    opacity: 0.9 !important;
}

.material-icons {
    font-size: 32px !important;
    margin-bottom: 8px !important;
}

.nmgr-button h4 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: rgb(96, 96, 96) !important;
    text-align: center !important;
}

/* Ensure the container doesn't limit the grid */
.nmgr-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 0;
    margin: 0;
}

/* Remove any potential height restrictions */
.nmgr-frontend-container {
    min-height: 0;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Remove quantity input styling */
.nmgr-items-view.grid .item .quantity {
    display: none;
}

.nmgr-items-view.grid .item .quantity input[type="number"] {
    display: none;
}

.nmgr-archive-results-metadata {
    display: none !important;
}







.nmgr-header-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    padding: 0 15px;
}

.nmgr-header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #fff;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: var(--shadow);
    text-align: center;
}

.nmgr-header-button:hover {
    transform: translateY(-2px);
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(228, 89, 130, 0.1);
}

.nmgr-header-button .button-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nmgr-header-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}









/* Profile Information Block - Brand Color Design */
/* Profile Information Block - Brand Color Design */
.nmgr-wishlist-info {
    width: 68% !important;
    background-image: url("https://gifter.webhub.ge/wp-content/uploads/2025/04/gifback.png");
    background-size: cover !important;
    background-position: center !important;
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0 8px 25px rgba(228, 89, 130, 0.25) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 300px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

/* Decorative accent */
.nmgr-wishlist-info:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 150px !important;
    height: 150px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%) !important;
    border-radius: 50% !important;
}

/* Title styling */
.nmgr-title {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.5px !important;
}

/* Display name with icon */
.nmgr-display-name {
    display: flex !important;
    align-items: center !important;
    font-size: 20px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 20px !important;
    padding-left: 35px !important;
    position: relative !important;
    font-weight: 500 !important;
}

.nmgr-display-name:before {
    content: '👤' !important;
    position: absolute !important;
    left: 0 !important;
    font-size: 24px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
}

/* Event date with icon */
.nmgr-event-date {
    display: flex !important;
    align-items: center !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px !important;
    padding-left: 35px !important;
    position: relative !important;
    font-weight: 400 !important;
}

.nmgr-event-date:before {
    content: '📅' !important;
    position: absolute !important;
    left: 0 !important;
    font-size: 22px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
}

/* Description with glass effect */
.nmgr-description {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    border-left: 4px solid rgba(255, 255, 255, 0.3) !important;
    margin-top: auto !important;
    backdrop-filter: blur(5px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    height: 50px;
}

/* Info items with glass effect */
.nmgr-info-item {
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

/* Hover effects */
.nmgr-info-item:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Additional decorative elements */
.nmgr-wishlist-info:after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 50% !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%) !important;
    pointer-events: none !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .nmgr-wishlist-info {
        padding: 25px !important;
    }

    .nmgr-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }

    .nmgr-display-name {
        font-size: 18px !important;
    }

    .nmgr-event-date {
        font-size: 16px !important;
    }

    .nmgr-description {
        padding: 20px !important;
        font-size: 15px !important;
    }
}














/* Share Links Section */
.nmgr-share-links {
    margin: 0px 0;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Share URL Container */
.nmgr-share-url {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.nmgr-share-url span {
    color: #555555;
    font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    flex: 1;
}

/* Share Buttons Container */
.nmgr-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Individual Share Buttons */
.nmgr-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.2s ease;
    overflow: hidden;
}

.nmgr-share-button:hover {
    transform: translateY(-2px);
}

/* Icon Images */
.nmgr-share-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Copy Button */
.nmgr-copy-button {
    min-width: 100px;
    background: #e45982;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nmgr-copy-button:hover {
    background: #d94771;
}

.nmgr-copy-button.copied {
    background: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nmgr-share-links {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .nmgr-share-url {
        width: 100%;
    }

    .nmgr-share-buttons {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }
}

/* Animation for Copy Button */
@keyframes copySuccess {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.nmgr-copy-button.copied {
    animation: copySuccess 0.3s ease-in-out;
}

/* Individual Share Buttons */
.nmgr-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.2s ease;
    overflow: hidden;
}

/* Platform-specific backgrounds */
.nmgr-share-button.facebook {
    background: #1877f2;
}

.nmgr-share-button.twitter {
    background: #000000;
}

.nmgr-share-button.whatsapp {
    background: #25D366;
}

.nmgr-share-button:hover {
    transform: translateY(-2px);
}

/* Icon Images */
.nmgr-share-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    padding: 4px;
}