/*
 Theme Name:   My Custom Theme yakdhane
 Theme URI:    https://example.com/my-custom-theme/
 Description:  A custom WordPress theme
 Author:       Your Name
 Author URI:   https://example.com
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  my-custom-theme
*/


/*mini cart*/
/* Mini Cart Styling */
body{
    padding: 0!important;
}
/* Mini Cart Styling */
.custom-woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.custom-mini-cart-item {
    margin-bottom: 15px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.2s ease;
}

.cart-item-card {
    display: flex;
    align-items: center;
}

.bundled-item-card {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #EEE;
}

.custom-mini-cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cart-item-image img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-link {
    color: #333333;
    text-decoration: none;
}

.cart-item-link:hover {
    color: #0466C8;
}

.cart-item-description {
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-quantity-input {
    width: 60px;
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #DDD;
    border-radius: 4px;
    background: #FFFFFF;
    color: #333333;
    text-align: center;
    -moz-appearance: textfield; /* Firefox */
}

.cart-item-quantity-input::-webkit-outer-spin-button,
.cart-item-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: auto; /* Show arrows in Webkit browsers */
}

.cart-item-quantity-input:focus {
    outline: none;
    border-color: #0466C8;
    box-shadow: 0 0 5px rgba(4, 102, 200, 0.3);
}

.cart-item-price {
    font-size: 16px;
    color: #023E7D;
    font-weight: 600;
    margin-right: 15px;
}

.custom-remove-button {
    color: #FF0000; /* Red trash can icon */
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-remove-button:hover {
    color: #CC0000; /* Darker red on hover */
}

.custom-remove-button .dashicons-trash:before {
    content: "\f182";
}

/* Bundled Items Styling */
.bundled-items {
    list-style: none;
    padding: 0 0 0 55px; /* Align with parent card */
    margin: 0;
}

.bundled-item {
    padding: 10px 0;
}

.custom-empty-message {
    padding: 25px;
    text-align: center;
    color: #666666;
    font-size: 16px;
}

.custom-total {
    padding: 20px 0;
    text-align: right;
    color: #023E7D;
    font-size: 18px;
    font-weight: 600;
    border-top: 1px solid #EEE;
}

.custom-buttons {
    padding: 20px 0;
    text-align: right;
}

.button.wc-forward {
    background: #0466C8;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.button.wc-forward:hover {
    background: #0353A4;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
