.shopping-cart-container-5530cde1 {
    position: relative;
    display: inline-block;
}

.cart-trigger-5530cde1 {
    background: #111;
    border: none;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cart-trigger-5530cde1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.cart-icon-wrap-5530cde1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-wrap-5530cde1 svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cart-badge-5530cde1 {
    background: #ff3366;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

/* Side Drawer Overlay */
.cart-overlay-5530cde1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999998;
}

.cart-overlay-5530cde1.is-active-5530cde1 {
    opacity: 1;
    pointer-events: auto;
}

/* Side Drawer Panel */
.cart-drawer-5530cde1 {
    position: fixed;
    top: 0;
    right: -380px;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999999;
    display: flex;
    flex-direction: column;
}

.cart-drawer-5530cde1.is-active-5530cde1 {
    transform: translateX(-380px);
}

.cart-drawer-header-5530cde1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-drawer-header-5530cde1 h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.cart-close-btn-5530cde1 {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.cart-close-btn-5530cde1:hover {
    color: #000;
}

/* Items List */
.cart-drawer-items-5530cde1 {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item-5530cde1 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.cart-item-thumb-5530cde1 {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}

.cart-item-thumb-5530cde1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details-5530cde1 {
    flex: 1;
}

.cart-item-title-5530cde1 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}

.cart-item-title-5530cde1 a {
    color: #333;
    text-decoration: none;
}

.cart-item-meta-5530cde1 {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.cart-item-price-5530cde1 {
    font-weight: 700;
    color: #111;
}

.cart-item-remove-5530cde1 {
    background: none;
    border: none;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
    align-self: flex-start;
    transition: color 0.2s;
}

.cart-item-remove-5530cde1:hover {
    color: #ff3366;
}

.cart-empty-msg-5530cde1 {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

/* Footer Section */
.cart-drawer-footer-5530cde1 {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fdfdfd;
}

.cart-drawer-subtotal-5530cde1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.checkout-btn-5530cde1 {
    display: block;
    width: 100%;
    text-align: center;
    background: #111;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.checkout-btn-5530cde1:hover {
    background: #333;
}
