#shop-woo-cart-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    font-family: 'Raleway', sans-serif !important;
}

#shop-woo-cart-toggle .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

#shop-woo-cart-count {
    background: red;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    font-family: 'Raleway', sans-serif !important;
    line-height: normal;
}

#shop-woo-cart-side, 
#shop-woo-cart-side *,
#shop-woo-cart-side button,
#shop-woo-cart-side input {
    font-family: 'Raleway', sans-serif !important;
}

#shop-woo-cart-side {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

#shop-woo-cart-side.open {
    right: 0;
}

#shop-woo-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9999;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#shop-woo-close-cart {
    font-size: 42px;
    font-weight: 300;
    text-decoration: none;
    color: #ff0000;
    line-height: 1;
}

#shop-woo-close-cart:hover {
    color: #cc0000;
}

#shop-woo-cart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 10px;
}

.cart-item img {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    object-fit: contain;
    background: #fdfdfd;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.2;
    color: #333;
}

.variant-details {
    margin: 0 0 5px 0;
    font-size: 11px;
    color: #999;
}

.item-info .item-price {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #777;
}

.item-actions {
    display: flex;
    align-items: center;
}

.item-actions button {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 2px 8px;
    font-size: 14px;
    cursor: pointer;
    line-height: normal;
}

.item-actions button:hover {
    background: #e0e0e0;
}

.item-actions input {
    width: 35px;
    height: 25px;
    padding: 0;
    margin: 0 5px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 13px;
    -moz-appearance: textfield;
}

.item-actions input::-webkit-outer-spin-button,
.item-actions input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.remove-item {
    color: red;
    font-size: 12px;
    margin-left: 10px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.shopify-checkout-btn {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
}
