/* Side Cart Styles */
.woo-side-cart-container {
    position: relative;
    display: inline-block;
}

.woo-side-cart-icon {
    color: #211f1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.woo-cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #211f1a;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.woo-side-cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.woo-side-cart-panel.open {
    right: 0;
}

.woo-side-cart-header {
   padding: 20px 10px;
  background: #fff;
  color: #000;
	display: flex;
  justify-content: space-between;
}
.woo-side-cart-header p {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}
.woo-close-cart {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
}

.woo-side-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.woo-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.woo-cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.woo-cart-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.woo-cart-item-image img {
    max-width: 100%;
    height: auto;
}

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

.woo-cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
	margin-top: 5px;
}

.woo-cart-item-title a {
    color: #000;
    text-decoration: none;
}

.woo-cart-item-price {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 8px;
}

.woo-cart-item-quantity {
    display: flex;
    align-items: center;
}

.woo-quantity-minus,
.woo-quantity-plus {
    width: 25px;
    height: 25px;
    background: #f0f0f0;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.woo-quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 3px;
}

.woo-cart-item-remove {
    align-self: flex-start;
}

.woo-remove-item {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.woo-side-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.woo-cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.woo-view-cart-btn,
.woo-checkout-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: bold;
}

.woo-view-cart-btn {
    background: #d0d5d9;
  color: #000;
}

.woo-checkout-btn {
  background: #000;
  color: #fff;
}

.woo-side-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.woo-side-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive styles */
@media (max-width: 768px) {
    .woo-side-cart-panel {
        width: 320px;
    }
    
    .woo-side-cart-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .woo-side-cart-panel {
        width: 100%;
    }
}