/* ===============================
BASE CONTAINER
=============================== */

#gry-sticky-cart {
    position: fixed;
    left: 0;
    width: 100%;
    background: #0d0d0d;
    border-color: #db26ff;
    z-index: 9999;
    transition: transform 0.30s ease;
    box-shadow: 0 4px 12px rgba(219, 38, 255, 0.10);
}

/* ===============================
TOP POSITION
=============================== */

#gry-sticky-cart.fsac-position-top {
    top: 0;
    border-bottom: 1px solid #db26ff;
    transform: translateY(-100%);
}

#gry-sticky-cart.fsac-position-top.active {
    transform: translateY(0);
}

/* ===============================
BOTTOM POSITION
=============================== */

#gry-sticky-cart.fsac-position-bottom {
    bottom: 0;
    border-top: 1px solid #db26ff;
    transform: translateY(100%);
}

#gry-sticky-cart.fsac-position-bottom.active {
    transform: translateY(0);
}

/* ===============================
ADMIN BAR FIX
=============================== */

body.admin-bar #gry-sticky-cart.fsac-position-top.active {
    top: 32px;
}

/* ===============================
INNER LAYOUT
=============================== */

.gry-cart-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
}

.gry-cart-inner img {
    width: 52px;
    height: auto;
}

.gry-cart-info {
    flex: 1;
}

.gry-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.gry-price {
    font-size: 14px;
    color: #cccccc;
}

/* ===============================
FORM AREA
=============================== */

.gry-cart-action form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.gry-cart-action input[type="number"],
.gry-cart-action button {
    height: 42px;
}

/* ===============================
PRIMARY BUTTON
=============================== */

.single_add_to_cart_button {
    background: #8a2be2;
    color: #ffffff;
    border: none;
    padding: 0 16px;
}

/* ===============================
BUY NOW BUTTON
=============================== */

.gry-buy-now {
    background: #ffffff;
    color: #000000;
    border: 1px solid #cccccc;
    padding: 0 16px;
}

/* ===============================
MOBILE
=============================== */

@media (max-width: 768px) {

    .gry-cart-inner img,
    .gry-cart-info {
        display: none;
    }

    .gry-cart-action {
        width: 100%;
    }

    .gry-cart-action form {
        width: 100%;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .gry-cart-action .quantity {
        flex-shrink: 0;
    }

    .gry-cart-action .quantity input {
        width: 54px;
        text-align: center;
    }

    .single_add_to_cart_button {
        flex: 1;
        min-width: 0;
    }

    .gry-buy-now {
        flex-shrink: 0;
    }

    .gry-cart-action button,
    .gry-cart-action input[type="number"] {
        height: 40px;
        font-size: 13px;
    }
}