.wooyoo-sticky-nav {
    position: fixed;
    z-index: 99999;
    background: var(--wooyoo-container-bg);
    border-radius: 25px;
    padding: 10px 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.wooyoo-sticky-nav.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.wooyoo-sticky-nav-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.wooyoo-nav-item {
    position: relative;
}

.wooyoo-sticky-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--wooyoo-icon-bg);
    color: var(--wooyoo-icon-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    position: relative;
}

.wooyoo-sticky-icon:hover {
    transform: scale(1.1);
}

.wooyoo-icon-label {
    font-size: 10px;
    margin-top: 4px;
    white-space: nowrap;
}

.wooyoo-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--wooyoo-badge-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.wooyoo-dropdown {
    position: absolute;
    min-width: 300px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: none;
    z-index: 100000;
    max-height: 500px;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

.wooyoo-dropdown.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wooyoo-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, var(--wooyoo-overlay-opacity));
    z-index: 99998;
}

.wooyoo-drawer-overlay.active {
    display: block;
}

.wooyoo-mobile-drawer,
.wooyoo-desktop-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    background: var(--wooyoo-drawer-bg);
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
    width: var(--wooyoo-drawer-width);
}

.wooyoo-mobile-drawer.drawer-right,
.wooyoo-desktop-drawer.drawer-right {
    right: 0;
    left: auto;
    transform: translateX(100%);
}

.wooyoo-mobile-drawer.active,
.wooyoo-desktop-drawer.active {
    transform: translateX(0);
}

.wooyoo-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.wooyoo-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.wooyoo-drawer-content {
    padding: 20px;
}

.wooyoo-cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    gap: 10px;
    transition: background 0.2s;
}

.wooyoo-cart-item:hover {
    background: #f9f9f9;
}

.wooyoo-cart-item-image {
    width: 50px;
    height: 50px;
}

.wooyoo-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.wooyoo-cart-item-details {
    flex: 1;
}

.wooyoo-cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.wooyoo-cart-item-price {
    color: #666;
    font-size: 14px;
}

.wooyoo-remove-item {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.wooyoo-remove-item:hover {
    background: #c82333;
}

.wooyoo-cart-total {
    padding: 15px;
    background: #f8f9fa;
}

.wooyoo-cart-total-amount {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.wooyoo-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wooyoo-btn {
    padding: 10px 15px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    display: block;
    transition: opacity 0.3s;
}

.wooyoo-btn:hover {
    opacity: 0.9;
}

.wooyoo-btn-view-cart {
    background: #6c757d;
}

.wooyoo-btn-checkout {
    background: var(--wooyoo-icon-bg);
}

.wooyoo-btn-login {
    background: var(--wooyoo-icon-bg);
    width: 100%;
}

.wooyoo-empty-cart {
    padding: 40px;
    text-align: center;
    color: #999;
}

.wooyoo-login-form {
    padding: 20px;
}

.wooyoo-login-form h4 {
    margin: 0 0 20px 0;
    text-align: center;
}

.wooyoo-form-group {
    margin-bottom: 15px;
}

.wooyoo-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.wooyoo-success-message {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .wooyoo-mobile-drawer {
        display: block;
    }
    
    .wooyoo-desktop-drawer {
        display: none;
    }
}

@media (min-width: 769px) {
    .wooyoo-mobile-drawer {
        display: none;
    }
    
    .wooyoo-desktop-drawer {
        display: block;
    }
}