/* =======================================================================
   HEADER WRAPPER
======================================================================= */

.lolli-header {
    background: #151521;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0 22px;
    position: relative;
    z-index: 1000;
}

.lolli-header-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* =======================================================================
   LOGO (CENTER)
======================================================================= */

.lolli-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -6px;
}

.lolli-logo-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px #ff7cd8)
            drop-shadow(0 0 20px rgba(255,120,220,0.5));
    animation: logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
}

/* Mobile logo smaller (если вдруг пригодится) */
@media (max-width: 768px) {
    .lolli-logo-img {
        width: 75px;
        height: 75px;
    }
}

/* =======================================================================
   HEADER ICONS
======================================================================= */

.lolli-header-left,
.lolli-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lolli-icon {
    font-size: 22px;
    color: #f5d9ff;
    text-decoration: none;
    transition: .25s;
}

.lolli-icon:hover {
    color: #ff7cd8;
    filter: drop-shadow(0 0 6px rgba(255,120,220,0.6));
}

/* =======================================================================
   FiboSearch Styling
======================================================================= */

.dgwt-wcas-search-input {
    border-radius: 14px !important;
    background: #1a1a27 !important;
    color: #fff !important;
    border: 1px solid #ff82dd !important;
    padding: 10px 14px !important;
}

.dgwt-wcas-search-submit,
.dgwt-wcas-search-icon,
.dgwt-wcas-search-icon svg {
    display: none !important;
}

/* =======================================================================
   MINI CART (HEADER)
======================================================================= */

.lolli-mini-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lolli-mini-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1a25;
    padding: 8px 14px;
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 0 12px rgba(255, 120, 220, 0.3);
    transition: 0.25s;
}

.lolli-mini-cart-btn:hover {
    background: #252533;
    box-shadow: 0 0 18px rgba(255,120,220,0.45);
    transform: translateY(-2px);
}

.lolli-mini-cart-btn span {
    text-decoration: none !important;
    border: none !important;
    display: inline-block;
}

.lolli-mini-cart-count {
    background: #ff78dc;
    padding: 2px 8px;
    border-radius: 10px;
    color: #1a1a25;
    font-weight: 700;
}

.lolli-mini-cart-total {
    font-weight: 700;
    opacity: 0.9;
}

/* Dropdown */
.lolli-mini-cart-dropdown {
    position: absolute !important;
    top: 48px !important;
    right: 0 !important;
    left: auto !important;

    width: 320px !important;
    max-width: 320px !important;
    padding: 18px;

    background: #1a1a25 !important;
    border-radius: 18px !important;
    box-shadow: 0 0 25px rgba(255,120,220,0.25) !important;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 99999;
}

.lolli-mini-cart:hover .lolli-mini-cart-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lolli-mini-cart-dropdown li {
    border-bottom: 1px solid #2a2a3a;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.lolli-mini-cart-dropdown img {
    width: 70px !important;
    height: auto;
    border-radius: 10px;
}

.lolli-mini-cart-dropdown .woocommerce-mini-cart__total strong {
    color: #ff78dc;
}

.lolli-mini-cart-dropdown .woocommerce-mini-cart__buttons a {
    background: #ff78dc !important;
    border-radius: 12px !important;
    padding: 10px !important;
    font-weight: 700;
    text-align: center;
}

/* =======================================================================
   MOBILE HEADER — COMPLETELY DISABLED
======================================================================= */

@media (max-width: 768px) {
    .lolli-header {
        display: none !important;
    }
}

/* =======================================================================
   CUTE ANIME MINI CART — MAIN STYLE
======================================================================= */

.lolli-mini-cart-dropdown {
    background: #1b1a26 !important;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255, 120, 220, 0.25);
    border: 1px solid rgba(255, 120, 220, 0.15);
    width: 340px !important;
    max-height: 540px;
    overflow-y: auto;
}

/* Scrollbar */
.lolli-mini-cart-dropdown::-webkit-scrollbar {
    width: 8px;
}
.lolli-mini-cart-dropdown::-webkit-scrollbar-thumb {
    background: #ff78dc;
    border-radius: 10px;
}

/* EACH ITEM CARD */
.woocommerce-mini-cart-item {
    display: flex !important;
    gap: 12px;
    padding: 14px;
    background: #221f2c;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(255,120,220,0.15);
    transition: .25s ease;
    margin-bottom: 14px;
}

.woocommerce-mini-cart-item:hover {
    background: #272333;
    box-shadow: 0 0 14px rgba(255,120,220,0.25);
}

/* ITEM IMAGE */
.woocommerce-mini-cart-item img {
    width: 70px !important;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255,120,220,0.3);
}

/* ITEM TEXT BLOCK */
.woocommerce-mini-cart-item .cart-item-text {
    flex: 1;
}

/* PRODUCT TITLE */
.woocommerce-mini-cart-item a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffacec !important;
    margin-bottom: 4px;
    text-decoration: none !important;
    line-height: 1.3;
}

.woocommerce-mini-cart-item a:hover {
    color: #ff78dc !important;
}

/* PRICE + QUANTITY ROW */
.cart-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

/* QUANTITY INPUT WRAPPER */
.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a2636;
    padding: 6px 10px;
    border-radius: 12px;
}

/* +/- BUTTONS */
.qty-controls button {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: none;
    background: #ff78dc;
    color: #1b1a26;
    font-size: 16px;
    cursor: pointer;
    transition: .25s ease;
}

.qty-controls button:hover {
    background: #ff54c4;
}

/* quantity number */
.qty-controls span {
    color: #fff;
    font-weight: 600;
}

/* PRICE FIELD */
.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

/* TOTAL + BUTTONS WRAPPER */
.woocommerce-mini-cart__total {
    padding: 12px;
    margin-top: 10px;
    background: #221f2c;
    border-radius: 14px;
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
}

.woocommerce-mini-cart__buttons .button {
    margin-top: 10px;
    width: 100%;
    background: #ff78dc !important;
    color: #1b1a26 !important;
    border-radius: 14px !important;
    padding: 12px !important;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 0 12px rgba(255,120,220,0.35);
}

.woocommerce-mini-cart__buttons .button:hover {
    background: #ff54c4 !important;
}
