/* app-creative.min.css */
.modal-header {
    padding: 6px 12px !important;
}
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:focus,
.btn-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: none;
}
body, .wrapper, .content-page {
    overflow: visible;
}

/* header */
.header-navbar {
    height: 70px;
    background-color: #fff;
    box-shadow: 0 0 35px 0 rgb(154 161 171 / 15%);
}
.header-flex {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-title {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    color: #000;
    margin-left: 10px;
    vertical-align: middle;
    font-family: "SimHei";
}

body {
    background-color: #fafafa;
    height: 100%;
}
body[data-leftbar-compact-mode=condensed] {
    min-height: 0;
}
body[data-layout=topnav] .content-page {
    padding: 0!important;
    min-height: 0;
}
.content {
    margin-bottom: 69px;
}
.page-title-right {
    display: block !important;
    float: right !important;
    margin-top: 17px !important;
}
@media screen and (max-width: 380px) {
    .app-search {
        width: 160px;
    }
}
.hyper-wrapper a {
    color: #000;
}
.hyper-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px 0;
    line-height: 16px;
    border-top: 1px solid rgba(152,166,173,.2);
    color: #98a6ad;
}
@media screen and (max-width: 768px) {
    .hyper-footer {
        text-align: center;
    }
}
.hyper-footer a {
    color: #919ca7;
}
@media screen and (max-width: 576px) {
    .container {
       padding: 0 12px; 
    }
}
@media screen and (min-width: 576px) {
    .container {
       padding: 0; 
    }
}
@media screen and (min-width: 992px) {
    .hyper-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
}

/* Home Page (Unified from home.blade.php) */
.nav.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.tab-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    min-width: 120px;
}
.tab-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.tab-link:hover::before {
    left: 100%;
}
.tab-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #007bff;
}
.tab-link.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}
.tab-link.active:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}
.img-checkmark {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tab-link.active .img-checkmark {
    opacity: 1;
}
.tab-link.active .img-checkmark img {
    filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
    .nav.nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        gap: 10px;
    }
    .tab-link {
        min-width: auto;
        padding: 15px 20px;
        font-size: 15px;
    }
}
.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    justify-content: space-between;
}
.product-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
    transition: width 0.4s ease;
}
.product-item:hover::after {
    width: 100%;
}
.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}
.product-item:hover::before {
    left: 100%;
}
.product-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}
.product-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: imageLoad 0.6s ease-out;
}
@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.product-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.product-info {
    flex: 1;
    position: relative;
    margin-right: 15px;
}
.product-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #2c3e50;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.product-item:hover .product-name {
    color: #007bff;
}
.product-price {
    font-size: 14px;
    color: #27ae60;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.product-price b {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    margin-left: 2px;
}
.product-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-status.in-stock {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}
.product-status.out-of-stock {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}
.product-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    position: relative;
    z-index: 2;
}
.product-link:hover {
    text-decoration: none;
    color: inherit;
}
.product-meta {
    display: flex;
    align-items: center;
    margin-top: 6px;
    font-size: 12px;
    color: #7f8c8d;
}
.product-meta-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.product-meta-item:hover {
    color: #007bff;
    transform: translateX(3px);
}
.product-meta-item i {
    margin-right: 5px;
    font-size: 12px;
    transition: all 0.3s ease;
}
.product-item:hover .product-meta-item i {
    transform: scale(1.1);
}
.product-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.btn-buy {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    border: none;
    cursor: pointer;
}
.btn-buy:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}
.btn-buy i {
    margin-right: 8px;
    font-size: 16px;
}
.btn-buy.btn-disabled {
    background: linear-gradient(135deg, #6c757d, #495057);
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}
.btn-buy.btn-disabled:hover {
    background: linear-gradient(135deg, #6c757d, #495057);
    transform: none;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}
.ribbon-box {
    position: relative;
}
.ribbon-two {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 10;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: ribbonPulse 2s infinite;
}
@keyframes ribbonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@media (max-width: 768px) {
    .product-item {
        padding: 10px;
        margin-bottom: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    .product-item img {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 8px;
    }
    .product-info {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    .product-actions {
        margin-left: 0;
        width: 100%;
    }
    .btn-buy {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
    }
    .product-name {
        font-size: 15px;
    }
    .product-price {
        font-size: 13px;
    }
    .product-price b {
        font-size: 16px;
    }
}
.notice-container {
    margin-bottom: 20px;
}
.notice-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: noticeSlideIn 0.6s ease-out;
    transition: all 0.3s ease;
}
.notice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}
@keyframes noticeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
}
.notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.notice-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
}
.notice-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.notice-content {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}
.notice-content p {
    margin-bottom: 10px;
}
.notice-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .notice-card {
        padding: 20px;
        margin: 0 10px;
    }
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .notice-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .notice-title {
        font-size: 18px;
    }
}
.search-container {
    margin-bottom: 20px;
}
.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.search-input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.search-input-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1), 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: searchPulse 2s infinite;
}
@keyframes searchPulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1), 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.05), 0 8px 30px rgba(0, 0, 0, 0.15);
    }
}
.search-input {
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
    width: 100%;
    border-radius: 20px;
    outline: none;
    transition: all 0.3s ease;
}
.search-input::placeholder {
    color: #999;
    font-style: italic;
}
.search-input:focus {
    box-shadow: none;
}
.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: none;
}
.search-clear {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
.search-input:not(:placeholder-shown) + .search-icon + .search-clear {
    opacity: 1;
    pointer-events: auto;
}
.search-input-wrapper.searching .search-icon {
    animation: searchSpin 1s linear infinite;
}
@keyframes searchSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}
.search-input-wrapper:focus-within .search-icon {
    color: #007bff;
    transform: translateY(-50%) scale(1.1);
}
.search-hint {
    text-align: center;
    margin-top: 10px;
    color: #777;
    font-size: 14px;
    opacity: 0.8;
}
.category-filter {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.btn-filter-toggle {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-filter-toggle:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
.btn-filter-toggle i {
    margin-right: 8px;
}
.toggle-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.btn-filter-toggle.active .toggle-icon {
    transform: rotate(180deg);
}
.filter-stats {
    font-size: 14px;
    color: #666;
}
.total-products strong {
    color: #007bff;
    font-size: 16px;
}
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
}
.category-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.category-item:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}
.category-item.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
}
.category-item i {
    margin-right: 6px;
    font-size: 14px;
}
.category-count {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}
.category-item.active .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.category-section {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.category-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.1));
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.category-header:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(0, 86, 179, 0.15));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}
.category-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.category-header:hover .category-title {
    color: #007bff;
}
.category-title i {
    margin-right: 10px;
    color: #007bff;
    transition: transform 0.3s ease;
}
.category-header:hover .category-title i {
    transform: scale(1.1);
}
.category-product-count {
    font-size: 14px;
    font-weight: 400;
    color: #7f8c8d;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.category-header:hover .category-product-count {
    background: rgba(255, 255, 255, 0.3);
    color: #007bff;
}
.btn-category-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    position: relative;
    overflow: hidden;
}
.btn-category-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}
.btn-category-toggle:hover::before {
    width: 100%;
    height: 100%;
}
.btn-category-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #007bff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}
.category-section.collapsed .btn-category-toggle i {
    transform: rotate(180deg);
}
.category-products {
    padding: 0;
    margin: 0;
    list-style: none;
    transition: all 0.3s ease;
    max-height: 1000px;
    overflow: hidden;
}
.category-section.collapsed .category-products {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.category-section.collapsed .btn-category-toggle i {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .search-wrapper {
        max-width: 100%;
        margin: 0 15px;
    }
    .search-input {
        padding: 10px 18px;
        font-size: 15px;
    }
    .search-icon {
        right: 15px;
        font-size: 16px;
    }
    .category-filter {
        padding: 15px;
        margin: 0 10px 20px 10px;
    }
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .category-list {
        flex-direction: column;
    }
    .category-item {
        width: 100%;
        justify-content: space-between;
    }
    .category-header {
        padding: 12px 15px;
    }
    .category-title {
        font-size: 16px;
    }
    .btn-category-toggle {
        width: 32px;
        height: 32px;
    }
    .notice-container {
        margin-bottom: 15px;
    }
    .notice-card {
        padding: 15px;
        margin: 0 5px;
    }
    .notice-title {
        font-size: 16px;
    }
    .nav.nav-list {
        padding: 10px;
        margin-bottom: 15px;
    }
    .tab-link {
        padding: 8px 15px;
        font-size: 14px;
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    .search-container {
        margin-bottom: 15px;
    }
    .product-list {
        padding: 0 5px;
    }
    .product-item {
        margin-bottom: 8px;
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    .product-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    .product-info {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .product-actions {
        width: 100%;
        margin-left: 0;
    }
    .btn-buy {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
    }
    .category-section {
        margin-bottom: 15px;
    }
    .page-title-box {
        display: none; /* 在移动端隐藏页面标题 */
    }
}

/* Buy Page*/
.form-group h3 {
    font-weight: 400;
    color: #212529;
}
.geetest_holder.geetest_wind {
    width: 100% !important;
    min-width: 100% !important;
}
.buy-product img {
    max-width:100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}
@media screen and (min-width: 992px) {
    .buy-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
    }
    .sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 6px;
    }
    .buy-shop {
        grid-column: span 2 / span 2;
    }
    .buy-product {
        grid-column: span 4 / span 4;
    }
}
/* pay-type */
@media screen and (min-width: 1367px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (min-width: 991px) and (max-width: 1367px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(1,minmax(0,300px));
        grid-gap: 6px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(4,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(3,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (max-width: 576px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,200px));
        grid-gap: 12px;
    }
}
@media screen and (max-width: 380px) {
    .pay-grid {
        display: grid;
        grid-template-columns: repeat(1,minmax(0,300px));
        grid-gap: 6px;
    }
}
.pay-type {
    background-color: #fff;
    color: #000;
    border: 2px solid #bdcfe1;
}
.pay-type:hover {
    background-color: #fff;
    color: #000;
}
.pay-type.active {
    background-color: #fff;
    color: #3688fc;
    border: 2px solid #3688fc;
}
.buy-price {
    color: #ea5455;
}

/* Buy Page Modern Styles */
.buy-grid-modern {
    display: grid;
    gap: 24px;
}
.buy-shop-modern .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.buy-shop-modern .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}
.buy-product-modern .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.buy-product-modern .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}
.buy-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}
.buy-price-modern {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}
.buy-price-modern small {
    font-size: 18px;
    color: #95a5a6;
    margin-left: 8px;
}
.pay-type-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}
.pay-type-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #007bff;
}
.pay-type-modern.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}
.pay-type-modern.active:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
}
.pay-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}
@media (max-width: 768px) {
    .pay-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .pay-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Orderinfo Page */

.orderinfo-grid {
    display: grid;
    grid-template-columns: auto;
}
@media screen and (min-width: 767px) {
    .orderinfo-card-grid {
        display: grid;
        grid-template-columns: repeat(6,minmax(0,1fr));
        grid-gap: 12px;
    }
    .orderinfo-info {
        grid-column: span 2 / span 2;
    }
    .orderinfo-kami {
        grid-column: span 4 / span 4;
    }
}
@media screen and (max-width: 767px) {
    .orderinfo-info {
        display: grid;
        justify-content: center;
    }
}
.textarea-kami {
    min-height: calc(100% - 48px - 38px)
}
.kami-btn {
    margin-top: 6px;
    float: right;
}

/* Orderinfo Modern Styles */
.orderinfo-modern {
    gap: 24px;
}
.orderinfo-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.orderinfo-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}
.kami-btn-modern {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.kami-btn-modern:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Footer */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 99;
}
#back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 44px;
    height: 44px;
}