/* ==========================================================================
   0. LOCAL FONTS (@font-face matching subfolder structure in /public/fonts/)
   ========================================================================== */

@font-face {
    font-family: 'Bebas Neue';
    src: url("/fonts/BebasNeue-Regular/BebasNeue-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant SC';
    src: url("/fonts/CormorantSC-Regular/CormorantSC-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url("/fonts/Oswald-Regular/Oswald-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   1. NAVIGATION: ACCOUNT & CART LINK STYLES
   ========================================================================== */

.bloc-link.account,
.bloc-link.cart {
    font-family: "Cormorant SC", serif !important;
    font-size: 18px !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.bloc-link.account {
    letter-spacing: 5px !important;
}

.bloc-link.cart {
    letter-spacing: 10px !important;
}

/* ==========================================================================
   2. PRODUCT CARDS & ARMORY GRID
   ========================================================================== */

.product-card-container,
.product-card-container:focus,
.product-card-container:active {
    position: relative;
    border-radius: 0 !important;
    overflow: hidden;
    background: #0D0D0D !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transition: box-shadow 0.4s ease !important;
}

.product-card-container:hover {
    border: none !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.95), 0 0 24px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(255, 255, 255, 0.015) !important;
}

.product-image {
    display: block;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    transition: filter 0.3s ease !important;
}

.product-card-container:hover .product-image,
.product-image:hover {
    transform: none !important;
    filter: brightness(1.05) contrast(1.02);
    border-color: transparent !important;
    box-shadow: none !important;
}

.product-ribbon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 85px;
    overflow: hidden;
    z-index: 12;
    pointer-events: none !important;
}

.product-ribbon-essential {
    position: absolute;
    top: 16px;
    left: -32px;
    width: 120px;
    background-color: #0D0D0D !important;
    color: #FFFFFF !important;
    font-family: "Cormorant SC", serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-align: center;
    line-height: 22px;
    transform: rotate(-45deg);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9) !important;
    text-transform: uppercase;
}

.product-cart-stripe-right-minimal {
    position: absolute;
    top: 0 !important;
    right: 0 !important;
    width: 44px;
    height: auto;
    background: #0D0D0D !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10;
    padding: 12px 4px;
    box-shadow: none !important;
    outline: none !important;
}

.product-cart-stripe-right-minimal .stripe-plus {
    font-family: "Cormorant SC", serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1;
    margin-bottom: 2px;
    transition: color 0.3s ease !important;
}

.product-cart-stripe-right-minimal .stripe-word {
    font-family: "Cormorant SC", serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    color: #FFFFFF !important;
    writing-mode: horizontal-tb;
    text-transform: uppercase;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease !important;
}

.product-cart-stripe-right-minimal:hover .stripe-plus,
.product-cart-stripe-right-minimal:hover .stripe-word {
    color: #898995 !important;
}

.price-armory-page {
    font-family: "Bebas Neue", sans-serif !important;
    font-size: 12px !important;
    color: #FFFFFF !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: 1px !important;
}

/* ==========================================================================
   MINI-CART DRAWER & BACKDROP SCHEME (ALL RIGHT ALIGNED, PACKED TOGETHER)
   ========================================================================== */

/* Glassmorphism Backdrop */
.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99998 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto !important;
}

/* Drawer Shell */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 88vw;
    height: 100vh;
    background: #0D0D0D !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
    z-index: 99999 !important;
    pointer-events: auto !important;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header (Title & Close Button on Right) */
.cart-drawer-header {
    padding: 22px 24px;
    background: #0D0D0D !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.cart-drawer-title {
    font-family: "Cormorant SC", serif !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-align: right !important;
}

.cart-close-btn {
    background: transparent !important;
    border: none !important;
    color: #71717a !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: color 0.2s ease !important;
}

.cart-close-btn:hover {
    color: #71717a !important;
}

/* Body Container */
.cart-drawer-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end !important;
    text-align: right !important;
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
}

/* Items List & Rows */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: flex-end !important;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: flex-end !important;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-item-details {
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: flex-end !important;
    gap: 14px !important;
    width: auto !important;
    max-width: 100% !important;
    margin-left: auto !important;
}

/* Larger Item Image */
.cart-item-img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    margin-right: 48px !important;
}

.cart-item-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end !important;
    text-align: right !important;
}

.cart-item-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.1rem !important;
    color: #FFFFFF !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    text-align: right !important;
}

.cart-item-price {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 0.95rem !important;
    color: #FFFFFF !important;
    letter-spacing: 1px !important;
    margin-top: 4px !important;
    text-align: right !important;
}

/* Swapped Action Layout: Quantity on left, Remove ('X') button on right */
.cart-item-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-top: 8px !important;
    width: 100% !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 5;
}

.cart-qty {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.8rem !important;
    color: #ffffff !important;
    pointer-events: auto !important;
}

.qty-btn {
    background: transparent !important;
    border: none !important;
    color: #71717a !important;
    cursor: pointer !important;
    padding: 2px 6px !important;
    font-size: 0.85rem !important;
    line-height: 1 !important;
    pointer-events: auto !important;
    transition: color 0.2s ease !important;
}

.qty-btn:hover {
    color: #ffffff !important;
}

.cart-remove-btn {
    background: transparent !important;
    border: none !important;
    color: #52525b !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.75rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    padding: 4px !important;
    pointer-events: auto !important;
    transition: color 0.2s ease !important;
}

.cart-remove-btn:hover {
    color: #ff4d4d !important;
}

/* Empty State */
.cart-empty-state {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right !important;
    min-height: 180px;
    width: 100%;
}

.cart-empty-text {
    font-family: 'Bebas Neue', sans-serif !important;
    color: #71717a !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-align: right !important;
}

/* Footer & Subtotal Section */
.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0D0D0D !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end !important;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cart-subtle-count {
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
    color: #71717a !important;
    text-transform: uppercase !important;
    text-align: right !important;
    width: 100% !important;
    margin-bottom: 6px !important;
}

.cart-summary-line {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100% !important;
    padding-bottom: 12px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.15rem !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    flex-direction: row !important;
    text-align: right !important;
}

.cart-subtotal-label {
    color: #71717a !important;
}

.cart-subtotal-value {
    color: #ffffff !important;
}

.cart-checkout-btn {
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    color: #ffffff !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.05rem !important;
    letter-spacing: 2.5px !important;
    text-align: right !important;
    padding: 4px 0 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    pointer-events: auto !important;
}

.cart-checkout-btn:hover {
    color: #71717a !important;
}


body {
    background-color: #0D0D0D;
    color: #898995;
    font-family: 'Karrera-Regular', sans-serif, system-ui;
}

.product-management-wrapper {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Header & Navigation */
.inv-top-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 25px;
}

.inv-title-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inv-title {
    font-family: 'Michroma-Regular', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin: 0;
}

.inv-datetime {
    font-family: monospace;
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    text-align: right;
}

.inv-quick-add-link {
    font-family: "Michroma-Regular", sans-serif;
    font-size: 22px;
    color: #898995;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.inv-quick-add-link:hover {
    color: #FFFFFF;
}

/* Tabs */
.catalog-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 35px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 20px;
    font-family: 'Michroma-Regular', sans-serif;
    font-size: 8px;
    overflow-x: auto;
    flex-wrap: wrap;
}

.catalog-tab {
    padding: 10px 18px;
    border: 1px solid #1a1a1a;
    color: #666;
    text-decoration: none;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.catalog-tab.active {
    border-color: #444;
    color: #FFF;
    background: #141414;
}

/* Top Action Bar */
.inv-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 15px;
}

.inv-header-label {
    font-family: 'Michroma-Regular', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
}

/* Spacious Minimal Rows */
.inv-row-group {
    border-bottom: 1px solid #161616;
    transition: background-color 0.2s;
}

.inv-row-group:hover {
    background-color: #111111;
}

.inv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 15px;
    cursor: pointer;
    gap: 20px;
}

.inv-item-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2;
    min-width: 0;
}

.inv-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 1px solid #222;
    flex-shrink: 0;
}

.inv-item-info {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inv-item-title {
    color: #FFF;
    font-family: 'Michroma-Regular', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.inv-item-slug {
    font-size: 10px;
    color: #777;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.inv-item-price {
    font-family: 'Michroma-Regular', sans-serif;
    font-size: 11px;
    color: #DDD;
    width: 90px;
    flex-shrink: 0;
    text-align: right;
}

.inv-item-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    width: 220px;
    flex-shrink: 0;
}

/* Click-to-Shift Controls */
.inv-shift-btns {
    display: flex;
    gap: 3px;
    align-items: center;
    margin-right: 8px;
}

.shift-btn {
    background: #121212;
    border: 1px solid #222;
    color: #777;
    font-size: 9px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.shift-btn:hover {
    border-color: #555;
    color: #FFF;
    background: #1a1a1a;
}

/* Variants Accordion */
.variants-dropdown {
    display: none;
    background: #080808;
    padding: 25px 35px 30px 85px;
    border-top: 1px dashed #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.variants-dropdown.active {
    display: block;
}

.variants-header-label {
    font-family: 'Michroma-Regular', sans-serif;
    font-size: 8px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #121212;
    font-size: 11px;
    gap: 15px;
}

.variant-row:last-child {
    border-bottom: none;
}

.variant-info-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 2;
    min-width: 0;
}

.variant-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border: 1px solid #222;
}

.variant-text-wrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.variant-title {
    color: #DDD;
}

.variant-meta {
    font-size: 9px;
    color: #666;
}

.variant-price {
    width: 80px;
    color: #AAA;
    font-family: 'Michroma-Regular', sans-serif;
    text-align: right;
}

.variant-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    width: 140px;
}

/* Quick Add Form Container */
.new-row-container {
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease;
    max-height: 0;
    opacity: 0;
}

.new-row-container.active {
    max-height: 350px;
    opacity: 1;
    border-bottom: 1px solid #333;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

/* Minimal Clean Buttons */
.inv-btn {
    font-family: "Michroma-Regular", sans-serif;
    font-size: 8px;
    letter-spacing: 1px;
    padding: 8px 12px;
    color: #898995;
    border: 1px solid #222;
    background: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.2s;
}

.inv-btn:hover {
    color: #FFF;
    border-color: #666;
    background: #1a1a1a;
}

.inv-btn-danger {
    border-color: #311;
    color: #ff6b6b;
}

.inv-btn-danger:hover {
    border-color: #ff6b6b;
    background: rgba(255, 0, 0, 0.05);
}

.expand-arrow {
    font-size: 9px;
    color: #555;
    transition: transform 0.2s;
    display: inline-block;
}

.inv-row-group.open .expand-arrow {
    transform: rotate(90deg);
    color: #FFF;
}

.empty-notice {
    padding: 40px;
    text-align: center;
    color: #555;
    font-family: 'Michroma-Regular', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .inv-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 22px 15px;
        cursor: default;
    }
    .inv-item-actions, .inv-item-price {
        width: 100% !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    .variants-dropdown {
        padding: 15px 15px 20px 15px;
    }
}

/* Slow fade hover effect for product card images */
.product-card-container .product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-card-container .product-image-wrapper img {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-container .product-image-wrapper .secondary-img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-container:hover .product-image-wrapper .secondary-img {
    opacity: 1;
}

.product-card-container:hover .product-image-wrapper .primary-img {
    opacity: 0;
}

/* = Rails Devise Auth Card (Elite & Minimal - Right Aligned)
-------------------------------------------------------------- */

.devise-auth-card {
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(8, 158, 199, 0.25);
    padding: 40px 30px;
    border-radius: 2px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8), 0px 0px 10px rgba(8, 158, 199, 0.1);
}

.auth-title {
    font-family: "Michroma-Regular", sans-serif;
    color: #FFFFFF !important;
    font-size: 20px;
    letter-spacing: 3px;
    text-shadow: 0px -2px 2px #000000;
    border-bottom: 1px solid rgba(8, 158, 199, 0.3);
    padding-bottom: 15px;
}

.custom-label {
    font-family: "AnekLatinSemiExpanded-Regular", sans-serif;
    font-size: 0.75rem !important;
    color: #888888 !important;
    letter-spacing: 1.5px;
}

.custom-auth-input {
    background-color: rgba(20, 20, 20, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    font-family: "Oswald-Regular", sans-serif;
    padding: 12px 15px !important;
    border-radius: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-auth-input:focus {
    border-color: #089EC7 !important;
    box-shadow: 0 0 10px rgba(8, 158, 199, 0.25) !important;
    outline: none !important;
}

.remember-container {
    font-family: "Oswald-Regular", sans-serif;
    font-size: 0.8rem;
    color: #CCCCCC;
    letter-spacing: 1px;
}

.custom-checkbox {
    background-color: rgba(20, 20, 20, 1);
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-checkbox:checked {
    background-color: #089EC7;
    border-color: #089EC7;
}

.custom-auth-btn {
    background-color: #089EC7 !important;
    color: #FFFFFF !important;
    font-family: "BebasNeue-Regular", sans-serif !important;
    letter-spacing: 2px;
    font-size: 18px !important;
    padding: 12px !important;
    border: none !important;
    border-radius: 2px;
    text-shadow: 0px -1px 2px #000000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.custom-auth-btn:hover {
    background-color: #0a8cb0 !important;
    box-shadow: 0 0 15px rgba(8, 158, 199, 0.4);
}

.auth-links a {
    font-family: "Oswald-Regular", sans-serif;
    color: #089EC7 !important;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #FFFFFF !important;
    text-decoration: underline;
}

/* = Armory Section Page Padding & Right-Aligned Layout
-------------------------------------------------------------- */
.armory-section {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
}

@media (min-width: 1200px) {
    .armory-section {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

/* = Armory Trading Card (Yu-Gi-Oh Style) Bottom Marquee Ticker
-------------------------------------------------------------- */
.armory-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(10, 10, 10, 0.98);
    border-top: 2px solid rgba(8, 158, 199, 0.4);
    border-bottom: 2px solid rgba(8, 158, 199, 0.4);
    padding: 30px 0;
    white-space: nowrap;
    border-radius: 6px;
}

.armory-ticker-track {
    display: inline-flex;
    gap: 30px;
    width: max-content;
    animation: armoryMarqueeScroll 65s linear infinite;
}

.armory-ticker-track:hover {
    animation-play-state: paused;
}

.armory-ticker-card {
    display: inline-flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(12, 12, 12, 0.98));
    border: 2px solid rgba(8, 158, 199, 0.35);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none !important;
    flex-shrink: 0;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: all 0.35s ease;
}

.armory-ticker-card:hover {
    border-color: #089EC7;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(8, 158, 199, 0.3);
}

.armory-ticker-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    background: #050505;
}

.ticker-card-details {
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    gap: 6px;
    background: rgba(16, 16, 16, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: right; /* Explicit right alignment for ticker text */
}

.ticker-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF !important;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-card-price {
    font-size: 1rem;
    font-weight: 600;
    color: #089EC7 !important;
}

@keyframes armoryMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }

.img-protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none; /* Prevents clicking, dragging, and native right-click save menus */
}

/* Optional wrapper if you need a transparent overlay layer */
.protected-image-container {
    position: relative;
    display: inline-block;
}

.protected-image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
