/* ====================== BASE LAYOUT ====================== */
.h-vh-100 {
    height: 100dvh;
    overflow-x: hidden;
    box-sizing: border-box;
    scrollbar-width: none;
}
#index-section {
    display: flex;
    flex-direction: column;
}
.header-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    flex: 1;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.header-wrapper::-webkit-scrollbar,
.content-wrapper::-webkit-scrollbar,
.product-order::-webkit-scrollbar,
.order-success::-webkit-scrollbar {
    display: none;
}

/* ====================== SHOPS CONTAINER ====================== */
.shops-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    grid-column: span 3;
    position: relative;
}
.back-button {
    cursor: pointer;
    color: #fff;
    font-size: x-large;
}
/* ====================== HEADER & SEARCH ====================== */
.search-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px;
    width: 100%;
    height: 100%;
    background: #fd7e14;
    position: relative;
    transition: all 0.3s ease;
    flex: 0;
}
/* Search Expand */
.search-container.expanded {
    width: 100% !important;
    transition: width 0.3s ease;
}
.search-container.expanded .shops-cart-messenger {
    opacity: 0;
    visibility: hidden;
}
.search-container.expanded .shops-search-container {
    max-width: 100%;
    flex: 1 0 auto;
}
.shops-search-container {
    position: relative;
    width: 100%;
    flex: 1;
    transition: flex 0.3s ease;
}
.shops-search {
    position: relative;
    width: 100%;
}
.shops-search .form-control {
    width: 100%;
    padding-left: 2.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 40px;
}
.shops-search .form-control:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}
.shops-search .search-icon {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
}
.shops-cart-messenger {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.shops-cart-messenger img {
    width: 30px;
}
.cart-count {
    position: relative;
}
.order-count {
    position: absolute;
    top: 0;
    right: -3px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ====================== MOBILE FILTER ====================== */
#mobileFilter {
    color: white;
    cursor: pointer;
    display: none;
}
#mobileFilterPopup {
    position: fixed;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: none;
}
.mobile-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ====================== SEARCH RESULTS & OVERLAY ====================== */
.search-results {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}
.search-results.show {
    display: block;
}
.search-result-item {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    gap: 5px;
    text-decoration: none !important;
    color: #000;
}
.search-result-item:hover {
    background: #f8f9fa;
}
.search-result-info {
    display: flex;
    flex-direction: column;

}
.search-result-title {
    font-size: 0.9em;
    font-weight: 500;
    color: #000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-info span {
    font-size: 0.8rem;
    color: #666;
}
.search-result-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.search-overlay {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    pointer-events: auto;
}
.search-overlay.show {
    opacity: 1;
    visibility: visible;
}
/* ====================== CONTENT WRAPPER ====================== */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: #fafafa;
    overflow-y: auto;
}

/* ====================== PRODUCT IMAGE & SWIPER ====================== */
.product-image {
    grid-column: span 2;
}
.shop-product-image {
    flex: 1;
    max-width: 100%;
    min-width: 200px;
}
.shop-product-image img,
.shop-product-image .swiper-slide img,
.search-result-item img,
.shops-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s;
    vertical-align: middle;
}
.main-image,
.main-swiper {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px 0 0 0;
}
.thumbnail-img {
    height: 100px;
    object-fit: cover;
    cursor: pointer;
}
.thumbnail-img:hover {
    opacity: 0.7;
}
.thumbnail-swiper {
    padding: 10px;
}
.swiper-slide img {
    width: 100%;
}
.swiper-pagination {
    margin-top: 10px;
    color: #fff !important;
    background: #0006;
    width: fit-content;
    padding: 5px;
    margin-left: auto;
}

/* Swiper Buttons */
.thumbnail-swiper-button-prev,
.thumbnail-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(0 0 0 / 50%);
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    cursor: pointer;
    padding: 5px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumbnail-swiper-button-prev {
    left: 0;
}
.thumbnail-swiper-button-next {
    right: 0;
}
.thumbnail-swiper-button-prev i,
.thumbnail-swiper-button-next i {
    font-size: 18px;
}
.thumbnail-swiper-button-prev:hover,
.thumbnail-swiper-button-next:hover {
    background-color: rgba(0, 0, 0, .4);
    transition: background-color 0.3s ease;
}
.thumbnail-swiper .swiper-slide.active-thumb {
    border: 2px solid #fd7e14;
    border-radius: 5px;
    transition: border 0.3s ease;
}

/* ====================== PRODUCT INFO ====================== */
.product-info {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.product-change {
    grid-column: span 3;
    font-family: Arial, sans-serif;
    padding: 10px;
}
.product-title {
    font-size: 1.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-rank {
    display: flex;
    align-items: center;
}
.count-comment {
    color: #767676;
    font-size: .875rem;
    text-transform: capitalize;
}
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.star-rating i {
    color: #d1d1d1;
}
.star-rating .full-star {
    color: #ffc107;
}
.star-rating .partial-star {
    position: relative;
    display: inline-block;
}
.star-rating .partial-star i {
    color: #d1d1d1;
}
.star-rating .partial-star::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #ffc107 var(--fill), #d1d1d1 var(--fill));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====================== PRICE & VOUCHER ====================== */
.product-price {
    background: #fafafa;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: default;
}
.product-wow,
.product-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.original-price {
    font-family: Arial, sans-serif;
    text-decoration: line-through;
    color: #6c757d;
}
.discount-price {
    color: #fd7e14;
    font-size: 24px;
    font-weight: 600;
}
.wow-percentage {
    background-color: #28a745;
    border-radius: 5px;
    color: var(--white);
    font-weight: 700;
    padding: 0 4px;
    width: max-content;
}
.social-percentage {
    background-color: var(--red);
    border-radius: 5px;
    color: var(--white);
    font-weight: 700;
    padding: 0 4px;
    width: max-content;
}
.product-tiktok,
.product-shopee,
.shops-item-piece {
    display: flex;
    align-items: center;
    gap: 2px;
}
.tiktok-view,
.shopee-view {
    display: flex;
    flex-direction: column;
}
.tiktok-price,
.shopee-price {
    color: var(--red);
}
.product-tiktok .price-format,
.product-shopee .price-format {
    color: var(--red);
}

/* Voucher & Quantity */
.shop-voucher img,
.quantity-container img,
.product-social img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
}
.coin-mining,
.product-voucher,
.quantity-change,
.product-delivery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-bottom: 1px solid #00000020;
    width: 100%;
    cursor: default;
}
.coin-mining-left,
.product-voucher-left,
.quantity-change-left,
.product-delivery-left {
    color: #6c757d;
}
.coin-mining-left img {
    width: 100%;
}
.coin-mining-right,
.product-voucher-right {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}
.quantity-change-right {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-delivery-right {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.shop-voucher {
    background: rgba(208, 1, 27, .08);
    align-items: center;
    color: var(--orange);
    cursor: default;
    display: flex;
    padding: 3px 7px;
    position: relative;
    gap: 5px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}
.shop-original-price {
    text-decoration: line-through;
    color: #6c757d;
}
/* ====================== COUNTDOWN & BADGES ====================== */
.countdown-box {
    background: #343a40;
    align-items: center;
    color: var(--orange);
    cursor: default;
    display: flex;
    padding: 3px 7px;
    position: relative;
    gap: 5px;
    width: max-content;
}
.countdown-box:after,
.countdown-box:before,
.shop-voucher:after,
.shop-voucher:before {
    background-image: radial-gradient(#fff 2px, transparent 0);
    background-position-x: -6px;
    background-size: 6px 6px;
    content: "";
    height: calc(100% - 5px);
    position: absolute;
    top: 2.5px;
    width: 6px;
}
.countdown-box:before {
    left: -3px;
}
.countdown-box:after {
    right: -3px;
}
.shop-voucher:before {
    left: -3px;
}
.shop-voucher:after {
    right: -3px;
}
.mining-countdown {
    display: flex;
    align-items: center;
    background: #007bff;
    top: 0;
    left: 0;
    color: #fff;
    position: absolute;
    cursor: default;
    padding: 3px;
    width: max-content;
    border-radius: 5px 0;
    font-size: 12px;
    gap: 2px;
}
.countdown-box-popup {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.countdown-time {
    width: 100%;
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bold;
    font-family: 'Font Awesome 6 Free';
    color: #fd7e14;
}
.shop-discount-info {
    color: #2ecc71;
}

/* ====================== QUANTITY & BUTTONS ====================== */
.quantity-container {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.btn-light:disabled, .btn-light:not(:disabled):not(.disabled) {
    border: 1px solid #ccc;
}
.hunter-pieces img {
    width: 22px;
}
.quantity-input {
    width: 80px;
}
.coins-input-modal,
.shop-pieces-input-modal,
.golden-tickets-input-modal,
.quantity-input-modal {
    width: 60px;
}
.coins-decrement-modal,
.quantity-decrement,
.quantity-decrement-modal,
.shop-pieces-decrement-modal,
.golden-tickets-decrement-modal {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.coins-increment-modal,
.quantity-increment,
.quantity-increment-modal,
.shop-pieces-increment-modal,
.golden-tickets-increment-modal {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.quantity-input,
.quantity-input:disabled,
.shop-pieces-input-modal,
.shop-pieces-input-modal:disabled,
.golden-tickets-input-modal,
.golden-tickets-input-modal:disabled,
.coins-input-modal,
.coins-input-modal:disabled,
.quantity-input-modal,
.quantity-input-modal:disabled {
    background-color: #f8f9fa;
    border-radius: 0;
    border-top: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
    border: 0;
}
/* Buttons */
.shop-add-to-cart,
.select-quantity {
    background-color: #fd7e14;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    height: 50px;
}
.hunter-choice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}
.hunter-pieces {
    background-color: #dc3741;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    height: 50px;
}
.change-buy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

/* ====================== PRODUCT DETAIL & SHOP INFO ====================== */
.product-detail,
.product-review,
.shop-review {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.product-detail-title,
.shop-review-title {
    background: rgba(0, 0, 0, .05);
    font-size: 0.9em;
    font-weight: 500;
    padding: .875rem;
}
.product-catalog,
.product-region {
    color: #6c757d;
}
.product-catalog  span {
    color: #05a;
    cursor: pointer;
    -webkit-text-decoration: none;
    text-decoration: none;
}
.product-describe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-describe span {
    font-weight: 500;
    font-size: 1em;
}
.shop-detail {
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
}
.shop-logo {
    width: 100%;
}
.shop-view {
    grid-column: span 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
.shop-name {
    width: 100%;
    max-width: calc(100% - 10px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    display: block;
}
.shop-contact {
    grid-column: span 3;
}
.shop-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.shop-chat,
.shop-link {
    background: #d0011b14;
    color: #fd7e14 !important;
    padding: 5px;
    cursor: pointer;
}
.shop-index {
    grid-column: span 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.shop-index-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.9em;
}
.index-text {
    grid-column: span 2;
}
.index-stat {
    color: var(--red);
    grid-column: span 1;
}
.shop-index-item.active {
    grid-column: span 3;
}
/* ====================== REVIEWS ====================== */
.product-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review-item {
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
}
.review-avatar img {
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.review-content {
    flex-grow: 1;
}
.review-user-name {
    font-weight: bold;
    font-size: 16px;
}
.review-rating {
    color: #333;
    font-size: 14px;
}
.review-created-at {
    color: #666;
    font-size: 12px;
    margin: 5px 0;
}
.review-comment {
    font-size: 14px;
    color: #333;
}
.no-reviews {
    color: #666;
    font-style: italic;
}
.product-rating-overview {
    align-items: center;
    background-color: #fffbf8;
    border: 1px solid #f9ede5;
    border-radius: 2px;
    box-sizing: border-box;
    display: flex;
    padding: 10px;
    width: 100%;
}

/* ====================== PRODUCT LIST ====================== */
.product-list-catalog,
.product-list-shop,
.product-list-shop-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.product-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
    box-shadow: 0 2px 5px -1px rgba(50, 50, 93, 0.25), 0 1px 3px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid #ccc;
    background: #fff;
}
.product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    transition: transform 0.3s;
}
.piece-find {
    display: flex;
    align-items: center;
    background: #fd7e14;
    top: 0;
    right: 0;
    color: #fff;
    position: absolute;
    cursor: default;
    padding: 3px;
    width: max-content;
    border-radius: 0 5px;
    font-size: 12px;
    gap: 2px;
}
.product-info-review {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    padding: 5px;
}
.product-title-review {
    font-size: 1em;
    font-weight: 400;
    color: #000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.price-format {
    font-family: Arial, sans-serif;
    color: #fd7e14;
}
.product-piece {
    background: rgba(208, 1, 27, .08);
    align-items: center;
    color: var(--orange);
    cursor: default;
    display: flex;
    padding: 3px 7px;
    position: relative;
    gap: 5px;
}
.product-piece:before {
    left: -4px;
}
.product-piece:after {
    right: -4px;
}
.product-piece:after, .product-piece:before {
    background-image: radial-gradient(#fff 2px, transparent 0);
    background-position-x: 0px;
    background-size: 10px 10px;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 10px;
}
.product-voucher-review {
    display: flex;
    flex-direction: column;
}
.shop-voucher-review {
    display: flex;
    align-items: center;
    gap: 5px;
}
.shop-voucher-review img,
.product-tiktok-review img,
.product-shopee-review img {
    border-radius: 5px;
    width: 20px;
}
.product-discount {
    color: rgb(46, 204, 113);
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-social-review {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-tiktok-review, .product-shopee-review {
    display: flex;
    align-items: center;
    gap: 5px;
}
.social-discount {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #ff0000;
}
.product-ship {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.shops-piece-ship, shops-piece-location {
    display: flex;
    align-items: center;
    text-overflow: ellipsis;
    max-width: 50%;
    color: rgb(40, 167, 69);
    overflow: hidden;
    gap: 5px;
}
.shops-piece-location {
    color: #6c757d;
}
/* Popups and Modals */
.shop-item-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
}
.shop-item-popup .product-tiktok,
.shop-item-popup .product-shopee {
    width: 100%;
}
.shop-item-popup .product-tiktok img,
.shop-item-popup .product-shopee img,
.product-voucher-item img,
.product-voucher-support img {
    width: 70px;
    border-radius: 10px;
}
.social-link {
    display: flex;
    flex-direction: column;
}
.social-link a {
    text-decoration: none !important;
    color: #000;
}
.shop-voucher-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-voucher-item,
.product-voucher-support {
    display: flex;
    align-items: center;
    gap: 10px;
}
.swal-report-select {
    color: #6c757d;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #d2d2d2;
    width: 100%;
}
.menu-popup {
    position: absolute;
    background: white;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 10px;
    width: auto;
    display: none;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    z-index: 1000;
}
.menu-popup .menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    text-decoration: none !important;
    cursor: pointer;
}
.menu-popup .menu-item:hover {
    background-color: #f8f9fa;
}
.menu-popup .menu-item img {
    width: 20px;
    height: 20px;
}
.menu-popup .menu-item span {
    font-size: 14px;
    color: #6c757d;
}
.modal-content {
    border-radius: 0px !important;
}
/* Game Cards */
.no-focus:focus, 
.no-focus:active,
.no-focus:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
.game-card {
    position: relative;
    border-radius: 15px 50px 10px 30px;
    color: white;
    height: 70px;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.card-image {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0, -50%);
    width: 70px;
}
.game-card h5 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: 16px;
    z-index: 1;
    padding: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.game-card .card-icon-personal,
.game-card .card-icon-team,
.game-card .card-icon-game-video {
    position: absolute;
    color: white;
    opacity: 0.3;
    font-size: 30px;
}
.card-icon-personal.icon-personal-1 {
    top: 15%;
    left: 25%;
    transform: rotate(20deg);
}
.card-icon-personal.icon-personal-2 {
    top: 55%;
    left: 65%;
    transform: rotate(-15deg);
}
.card-icon-personal.icon-personal-3 {
    top: 75%;
    left: 35%;
    transform: rotate(10deg);
}
.card-icon-personal.icon-personal-4 {
    top: 35%;
    left: 85%;
    transform: rotate(10deg);
}
.card-icon-team.icon-team-1 {
    top: 25%;
    left: 70%;
    transform: rotate(-20deg);
}
.card-icon-team.icon-team-2 {
    top: 65%;
    left: 20%;
    transform: rotate(25deg);
}
.card-icon-team.icon-team-3 {
    top: 35%;
    left: 50%;
    transform: rotate(-10deg);
}
.card-icon-team.icon-team-4 {
    top: 45%;
    left: 40%;
    transform: rotate(-40deg);
}
.card-icon-game-video.icon-game-video-1 {
    top: 35%;
    left: 50%;
    transform: rotate(-10deg);
}
.card-icon-game-video.icon-game-video-2 {
    top: 15%;
    left: 70%;
    transform: rotate(-70deg);
}
.card-icon-game-video.icon-game-video-3 {
    top: 75%;
    left: 20%;
    transform: rotate(-50deg);
}
.swal2-popup .game-card {
    border: none !important;
}
#swal2-html-container,
.swal2-popup.swal2-modal.swal2-show {
    padding: 0;
}
/* Confirm Buy/Sell */
.product-buy-sell {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.product-back {
    padding: 10px;
    font-weight: 600;
    font-size: 1.2em;
    cursor: pointer;
}
.product-order,
.order-success {
    padding: 10px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.product-order-item {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}
.product-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user-delivery,
.price-in-items {
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-delivery-info,
.price-in-items-count {
    display: flex;
    flex-direction: column;
}
.shop-product {
    display: flex;
    flex-direction: column;
}
.product-box {
    display: flex;
    gap: 5px;
    padding: 5px;
}
.product-box img {
    max-width: 120px;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.price-in-items-info {
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-ship-detail {
    position: relative;
    border-radius: 5px;
    border: 1px solid #28a745;
    padding: 10px 15px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}
.product-ship-choice {
    position: absolute;
    top: 0;
    left: 0;
    background: #28a745;
    padding: 2px;
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-ship-choice i {
    color: #fff;
    font-size: 10px;
    position: absolute;
    top: 5px;
    left: 5px;
}
.payment-option {
    padding:10px;
    border-bottom:1px solid #00000020;
    cursor:pointer;
}
#wowpay-balance {
    font-family: Arial, sans-serif;
    color: var(--orange);
}
.product-buy {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    padding: 5px;
}
.product-checkout {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.product-purchase {
    background: var(--red);
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.order-success-info {
    background: var(--orange);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.orders-affter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.orders-affter a {
    color: #000;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
}
.orders-affter .next-products {
    background: var(--red);
    color: #fff;
}
.fake-loading {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fafafa;
}
.fake-order {
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fafafa;
}
.spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--orange);
}
.order-complete {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}
.product-confirm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.no-mining {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px;
}
/* ====================== MEDIA QUERIES ====================== */
@media (max-width: 767px) {
    .main-image, .main-swiper {
        border-radius: 0;
    }
    .shops-container {
        grid-column: span 6;
    }
    .product-info {
        display: flex;
        flex-direction: column;
    }
    .coin-mining, .product-voucher, .quantity-change, .product-delivery {
        grid-template-columns: repeat(9, 1fr);
    }
    .quantity-change {
        grid-template-columns: repeat(11, 1fr);
    }
    .quantity-change-left {
        grid-column: span 3;
    }
    .quantity-change-right {
        grid-column: span 8;
    }
    .coin-mining-right, .product-voucher-right, .product-delivery-right {
        grid-column: span 8;
    }
    .change-buy-item {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 50px;
        background: #fff;
        width: 100%;
        padding: 0;
        justify-content: center;
        box-sizing: border-box;
        gap: 0;
        z-index: 2;
    }
    .shop-add-to-cart,
    .change-item {
        flex: 1;
    }
    .shop-add-to-cart {
        height: 100%;
        padding: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        font-weight: 600;
        font-size: 16px;
    }
    .hunter-pieces,
    .shop-chat {
        background: #fff !important;
        color: #fd7e14 !important;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        flex: 1;
        padding: 0 !important;
        font-size: 0.9em;
    }
    .change-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }
    .shop-chat img,
    .hunter-pieces img {
        width: 26px;
    }
    .shop-detail {
        display: flex;
        flex-direction: column;
    }
        .search-results {
        position: fixed;
        top: 55px;
        width: 98%;
        left: 50%;
        transform: translateX(-50%);
        max-height: 65vh;
    }
    #mobileFilter {
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 1599px) {
    .product-list,
    .product-list-catalog,
    .product-list-shop,
    .product-list-shop-full {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-container {
        grid-template-columns: repeat(5, 1fr);
    }
    .product-content {
        grid-column: span 4;
    }
    .header-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
    .shops-container {
        grid-column: span 4;
    }
}
@media (min-width: 1600px) {
    .product-list,
    .product-list-catalog,
    .product-list-shop,
    .product-list-shop-full {
        grid-template-columns: repeat(5, 1fr);
    }
    .shops-container {
        grid-column: span 5;
    }
}