/**
 * Cart Drawer Styles
 * 
 * Styles for the slide-out cart drawer that appears after adding products to cart
 */

/* Cart Drawer Overlay */
.fp-cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fp-cart-drawer-overlay[hidden] {
    display: none;
}

.fp-cart-drawer-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Cart Drawer Container */
.fp-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fp-cart-drawer[hidden] {
    display: none;
}

.fp-cart-drawer.is-open {
    transform: translateX(0);
}

.fp-cart-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Cart Drawer Header */
.fp-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.fp-cart-drawer__title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.fp-cart-drawer__close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.fp-cart-drawer__close:hover,
.fp-cart-drawer__close:focus {
    color: #000;
    outline: none;
}

/* Cart Drawer Content */
.fp-cart-drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.fp-cart-drawer__items {
    padding: 16px 0;
}

.fp-cart-drawer__empty,
.fp-cart-drawer__loading {
    padding: 40px 24px;
    text-align: center;
    color: #666;
}

.fp-cart-drawer__empty p,
.fp-cart-drawer__loading p {
    margin: 0;
    font-size: 16px;
}

/* Cart Item Styles (using WooCommerce mini-cart structure) */
.fp-cart-drawer__items .woocommerce-mini-cart-item {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.fp-cart-drawer__items .woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

.fp-cart-drawer__items .woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 20px;
    line-height: 1;
    color: #999;
    text-decoration: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.fp-cart-drawer__items .woocommerce-mini-cart-item .remove:hover {
    color: #000;
}

.fp-cart-drawer__items .woocommerce-mini-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 16px;
    flex-shrink: 0;
}

.fp-cart-drawer__items .woocommerce-mini-cart-item a:not(.remove) {
    flex: 1;
    text-decoration: none;
    color: #333;
}

.fp-cart-drawer__items .woocommerce-mini-cart-item .quantity {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

/* Cart Drawer Footer */
.fp-cart-drawer__footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e5e5;
    flex-shrink: 0;
    background: #f9f9f9;
}

.fp-cart-drawer__total-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.fp-cart-drawer__total-label {
    color: #333;
}

.fp-cart-drawer__total-amount {
    color: #333;
}

.fp-cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fp-cart-drawer__view-cart,
.fp-cart-drawer__checkout {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
}

.fp-cart-drawer__view-cart {
    background: #fff;
    color: #333;
    border: 2px solid #333;
}

.fp-cart-drawer__view-cart:hover {
    background: #333;
    color: #fff;
}

.fp-cart-drawer__checkout {
    background: #333;
    color: #fff;
    border: 2px solid #333;
}

.fp-cart-drawer__checkout:hover {
    background: #000;
    border-color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fp-cart-drawer {
        max-width: 100%;
    }

    .fp-cart-drawer__header {
        padding: 16px 20px;
    }

    .fp-cart-drawer__title {
        font-size: 20px;
    }

    .fp-cart-drawer__items .woocommerce-mini-cart-item {
        padding: 12px 20px;
    }

    .fp-cart-drawer__footer {
        padding: 16px 20px;
    }
}

/* Prevent body scroll when drawer is open */
body.fp-cart-drawer-open {
    overflow: hidden;
}