/* Floating cart icon */
.apc-cart-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2C7A7B;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.apc-cart-icon:hover {
    transform: scale(1.05);
}
.apc-icon {
    font-size: 24px;
}
.apc-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FFB74D;
    color: #0B2B40;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Drawer */
.apc-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: white;
    z-index: 1001;
    box-shadow: -2px 0 12px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.apc-drawer.open {
    right: 0;
}
.apc-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.apc-drawer-header h3 {
    margin: 0;
}
.apc-close-drawer {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}
.apc-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.apc-cart-items {
    margin-bottom: 20px;
}
.apc-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.apc-item-info {
    flex: 2;
}
.apc-item-name {
    font-weight: 600;
}
.apc-item-price {
    font-size: 0.8rem;
    color: #666;
}
.apc-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.apc-item-qty input {
    width: 50px;
    text-align: center;
}
.apc-item-total {
    font-weight: 600;
    min-width: 70px;
    text-align: right;
}
.apc-remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}
.apc-cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
    margin: 15px 0;
}
.apc-checkout-btn {
    display: block;
    background: #2C7A7B;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}
.apc-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}
.apc-drawer-overlay.active {
    display: block;
}