#sk-btn-code {
    background-color: #dda925; /* Black background */
    color: white; /* Black text */
    font-weight: bold; /* Bold font */
    border: 2px solid #ccc; /* Optional border */
    padding: 10px 20px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Adjust font size */
    cursor: pointer; /* Add pointer on hover */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text color */
    margin-left: auto; /* Align to the right */
    margin-right: 0; /* Remove extra margin on the right */
    display: block; /* Make button a block-level element */
}

#sk-btn-code:hover {
    background-color: white; /* Change background to white on hover */
    color: black; /* Change text color to black on hover */
}

/* Cart container */
.cart-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Individual cart item */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
}

/* Product Image */
.product-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Product details */
.product-details {
    flex: 1;
    padding: 0 15px;
}

.product-name {
    font-weight: bold;
    color: #333;
}

.product-price,
.product-size {
    font-size: 14px;
    color: #555;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.quantity-control button {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 5px;
}

/* Product Total */
.product-total {
    font-weight: bold;
    color: #333;
}

/* Remove Product Button */
.product-remove .remove {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
}

/* Coupon section */
.coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.coupon-code {
    width: 70%;
    padding: 8px;
    border: 1px solid #ccc;
}

.apply-coupon {
    padding: 10px 20px;
    background-color: #88c250;
    color: white;
    border: none;
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon {
        flex-direction: column;
        align-items: flex-start;
    }
}
