
/* ===== RESET & BASE STYLES ===== */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== FONTS ===== */
@font-face
{
    font-family: 'Valorant';
    src: url('font/Valorant_Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* ===== BASE STYLES ===== */
:root
{
    --primary-color: #ff4655;
    --secondary-color: #00d4ff;
    --bg-dark: #0f1923;
    --bg-darker: #1a2634;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --border-color: rgba(255, 70, 85, 0.3);
    --transition: all 0.3s ease;
}

body
{
    font-family: 'Valorant', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== LAYOUT ===== */
.container
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content
{
    padding: 40px 0;
    margin-top: 150px;
    position: relative;
    z-index: 10;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4
{
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-title
{
    font-size: 3.75rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
    margin-bottom: 2.5rem;
}

/* ===== UTILITY CLASSES ===== */

.text-center
{
    text-align: center;
}

.text-uppercase
{
    text-transform: uppercase;
}

.text-muted
{
    color: var(--text-muted);
}

.flex
{
    display: flex;
}

.items-center
{
    align-items: center;
}

.justify-between
{
    justify-content: space-between;
}

.gap-4
{
    gap: 1rem;
}

.mb-4
{
    margin-bottom: 1rem;
}

.mb-8
{
    margin-bottom: 2rem;
}

.relative
{
    position: relative;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(255, 70, 85, 0.2);
    border-bottom: 1px solid rgba(255, 70, 85, 0.2);
}

.lien_page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav_left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.nav_links {
    display: flex;
    gap: 45px;
}

.logo_navbar {
    height: 55px;
    width: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 70, 85, 0.3));
}

.logo_navbar:hover {
    transform: scale(1.15) rotate(14deg);
    filter: drop-shadow(0 0 20px rgba(255, 70, 85, 0.6));
}

.links {
    text-decoration: none;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.links::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4655, transparent);
    transition: transform 0.3s ease;
}

.links:hover,
.links.active {
    color: #ff4655;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
}

.links:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav_icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon_btn {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15), rgba(255, 70, 85, 0.05));
    border: 1.5px solid rgba(255, 70, 85, 0.4);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    font-family: 'Valorant', sans-serif;
}

.icon_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 70, 85, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.icon_btn:hover::before {
    width: 300px;
    height: 300px;
}

.icon_btn:hover {
    background: linear-gradient(135deg, #ff4655, #ff2a3d);
    border-color: #ff4655;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 70, 85, 0.5);
}

.icon_btn span {
    position: relative;
    z-index: 1;
}

.links::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.links:hover::after {
    width: 100%;
}

/* ===== BUTTONS ===== */
.icon_btn
{
    padding: 8px 20px;
    border: 1.5px solid var(--primary-color);
    border-radius: 6px;
    background: transparent;
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.icon_btn:hover
{
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 70, 85, 0.5);
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-effects
{
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-glow
{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: pulse 5s ease-in-out infinite;
}

.bg-glow-1
{
    top: 100px;
    left: 80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 70, 85, 0.2);
}

.bg-glow-2
{
    bottom: 100px;
    right: 80px;
    width: 250px;
    height: 250px;
    background: rgba(0, 212, 255, 0.2);
}

.scanline
{
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient;
    background-size: 100% 4px;
    animation: scanline 6s linear infinite;
    pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse
{
    0%, 100%
    {
        transform: scale(1);
        opacity: 0.4;
    }
    
    50%
    {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes scanline
{
    from
    {
        transform: translateY(-100%);
    }
    
    to
    {
        transform: translateY(100%);
    }
}

/* ===== PROMO BANNER ===== */
.promo-banner
{
    background: linear-gradient(135deg, var(--primary-color), #ff1744);
    padding: 1.5rem 1.25rem;
    color: var(--text-light);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 30px rgba(255, 70, 85, 0.6);
    margin-top: 100px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.promo-title
{
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-subtitle
{
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.promo-timer
{
    font-size: 0.875rem;
    margin-top: 0.625rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.countdown
{
    font-weight: bold;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.3rem;
}

.promo-close
{
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.3rem;
    transition: var(--transition);
    line-height: 1;
}

.promo-close:hover
{
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) rotate(90deg);
}

/* ===== MAIN CONTENT ===== */
.main-content
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    margin-top: 150px;
    position: relative;
    z-index: 10;
}

.page-title
{
    font-size: 3.75rem;
    text-align: center;
    color: var(--text-light);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 70, 85, 0.5);
    margin-bottom: 2.5rem;
}

/* ===== WEAPONS GRID ===== */
.weapons-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.125rem;
}

.weapon-card
{
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    border: 1.5px solid var(--border-color);
    cursor: pointer;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.weapon-card:hover
{
    border-color: var(--primary-color);
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 1.5rem rgba(255, 70, 85, 0.3);
}

.quantity-badge
{
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0.9375rem rgba(255, 70, 85, 0.4);
    z-index: 2;
}

.weapon-image
{
    height: 11.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 70, 85, 0.05);
    position: relative;
    overflow: hidden;
}

.weapon-image::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.weapon-image img
{
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.weapon-card:hover .weapon-image img
{
    transform: scale(1.05);
}

.weapon-info
{
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.weapon-name
{
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.625rem;
    color: var(--text-light);
}

.weapon-price
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-main
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-main span
{
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.125rem;
}

.price-total
{
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===== SUMMARY SECTION ===== */
.summary-wrapper
{
    max-width: 43.75rem;
    margin: 0 auto;
}

.summary-container
{
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    border: 1.5px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.875rem;
    box-shadow: 0 0.5rem 1.875rem rgba(255, 70, 85, 0.2);
}

.summary-title
{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.stats-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem;
    margin-bottom: 1.5625rem;
}

.stat-box
{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    text-align: center;
    padding: 0.625rem;
    transition: var(--transition);
}

.stat-box:hover
{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-label
{
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value
{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-light);
}

.stat-value-cyan
{
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-value-red
{
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 70, 85, 0.5);
}

.summary-line
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9375rem;
}

.summary-line:first-child
{
    border-top: none;
}

.discount-box
{
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--secondary-color);
    border-radius: 0.5rem;
    padding: 0.9375rem;
    margin: 1.25rem 0;
    animation: pulse 2s infinite alternate;
}

.discount-content
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-badge
{
    background: var(--secondary-color);
    color: #000;
    padding: 0.1875rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-value,
.discount-minus
{
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* ===== TOTAL & CHECKOUT ===== */
.total-box
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 70, 85, 0.1);
    border: 1.5px solid var(--primary-color);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin: 1.25rem 0;
    position: relative;
    overflow: hidden;
}

.total-box::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 70, 85, 0.2), transparent);
    transform: translateX(-100%);
    animation: shine 2s infinite;
    pointer-events: none;
}

.total-label
{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-value
{
    font-size: 1.625rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 70, 85, 0.5);
    display: flex;
    align-items: center;
    gap: 0.3125rem;
}

.checkout-btn
{
    width: 100%;
    padding: 1rem 0.5rem;
    margin-top: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff1744);
    color: var(--text-light);
    font-family: 'Valorant', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.checkout-btn::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: 0.5s;
}

.checkout-btn:hover
{
    box-shadow: 0 0 1.875rem rgba(255, 70, 85, 0.8);
    transform: translateY(-0.1875rem) scale(1.02);
    background: linear-gradient(135deg, #ff3a4a 0%, #ff5a5a 100%);
}

.checkout-btn:hover::before
{
    left: 100%;
}

@keyframes shine
{
    100%
    {
        transform: translateX(100%);
    }
}

/* ===== WEAPON RESUMER ===== */
.weapon-summary
{
    margin: 0.9375rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.summary-item
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.9375rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.summary-item:last-child
{
    border-bottom: none;
}

.summary-item:hover
{
    background: rgba(255, 255, 255, 0.05);
}

.summary-item span
{
    font-size: 0.875rem;
    color: var(--text-light);
}

.summary-item-price
{
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    font-weight: 500;
}

.vp-icon
{
    width: 32px;
    height: 32px;
    margin-left: 0.25rem;
    order: 2;
    vertical-align: middle;
}

.vp-icon-small
{
    width: 24px;
    height: 24px;
    opacity: 0.9;
    margin-left: 0.25rem;
    order: 2;
    vertical-align: middle;
}

.vp-icon-tiny
{
    width: 20px;
    height: 20px;
    opacity: 0.8;
    margin-left: 0.125rem;
    order: 2;
    vertical-align: middle;
}

.vp-icon-medium
{
    width: 28px;
    height: 28px;
    margin-left: 0.25rem;
    order: 2;
    vertical-align: middle;
}

.vp-icon-large
{
    width: 32px;
    height: 32px;
    margin-left: 0.25rem;
    order: 2;
    vertical-align: middle;
}

.weapon-price
{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
    text-align: right;
}

.price-main,
.price-total
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.price-main
{
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.price-total
{
    font-size: 0.9375rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
}

.summary-item-price
{
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 4.375rem;
    text-align: right;
}

.summary-line
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.9375rem;
}

.summary-toggle
{
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-toggle:hover
{
    color: var(--primary-color);
}

.summary-toggle .toggle-icon
{
    transition: var(--transition);
}

.summary-toggle.active .toggle-icon
{
    transform: rotate(180deg);
}

/* ===== QUANTITER ARME ===== */
.inline-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.inline-btn {
    width: 28px;
    height: 28px;
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid #ff4655;
    border-radius: 4px;
    color: #ff4655;
    font-family: 'Valorant', sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.inline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.inline-btn:hover::before {
    transform: translateX(100%);
}

.inline-btn:hover {
    background: rgba(255, 70, 85, 0.2);
    box-shadow: 0 0 10px rgba(255, 70, 85, 0.3);
    transform: scale(1.05);
}

.inline-count {
    min-width: 30px;
    text-align: center;
    color: #ece8e1;
    font-family: 'Valorant', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.inline-remove {
    margin-left: 8px;
    padding: 6px 12px;
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid #ff4655;
    border-radius: 4px;
    color: #ff4655;
    font-family: 'Valorant', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.inline-remove::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.inline-remove:hover::before {
    transform: translateX(100%);
}

.inline-remove:hover {
    background: rgba(255, 70, 85, 0.2);
    box-shadow: 0 0 10px rgba(255, 70, 85, 0.3);
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(255, 70, 85, 0.6);
}

/* ===== ARTICLES LIST ===== */
#articlesList
{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin: 0;
    opacity: 0;
}

#articlesList.show
{
    max-height: 1000px;
    opacity: 1;
    margin: 0.625rem 0;
}

.summary-item
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child
{
    border-bottom: none;
}

.price-main span,
.price-total span,
.summary-item-price span
{
    order: 1;
    display: inline-block;
    text-align: right;
}


/* ===== SUMMARY ITEM STYLES ===== */
.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(236, 232, 225, 0.1);
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.summary-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff4655, transparent);
    transition: width 0.3s ease;
}

.summary-item:hover::after {
    width: 100%;
}

.summary-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    min-width: 180px;
}

.summary-btn {
    width: 24px;
    height: 24px;
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid #ff4655;
    border-radius: 3px;
    color: #ff4655;
    font-family: 'Valorant', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.summary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.summary-btn:hover::before {
    transform: translateX(100%);
}

.summary-btn:hover {
    background: rgba(255, 70, 85, 0.2);
    box-shadow: 0 0 8px rgba(255, 70, 85, 0.3);
}

.summary-count {
    min-width: 24px;
    text-align: center;
    color: #ece8e1;
    font-family: 'Valorant', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.summary-remove {
    padding: 4px 10px;
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid #ff4655;
    border-radius: 3px;
    color: #ff4655;
    font-family: 'Valorant', sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.summary-remove::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.summary-remove:hover::before {
    transform: translateX(100%);
}

.summary-remove:hover {
    background: rgba(255, 70, 85, 0.2);
    box-shadow: 0 0 8px rgba(255, 70, 85, 0.3);
    text-shadow: 0 0 5px rgba(255, 70, 85, 0.6);
}

.summary-item > span:first-child {
    flex: 0 0 auto;
    min-width: 120px;
    color: #ece8e1;
    font-family: 'Valorant', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item-price {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Valorant', sans-serif;
    color: #ff4655;
    text-shadow: 0 0 5px rgba(255, 70, 85, 0.5);
}

/* ===== PAYMENT SECTION ===== */
.payment-section
{
    margin: 1.875rem 0;
    text-align: center;
}

.payment-title
{
    color: var(--text-light);
    margin-bottom: 0.9375rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods
{
    display: flex;
    justify-content: center;
    gap: 0.9375rem;
    margin-top: 0.625rem;
}

.payment-card
{
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.625rem 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card:hover
{
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}

.payment-logo
{
    height: 1.5rem;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    transition: var(--transition);
}

.payment-card:hover .payment-logo
{
    filter: none;
}

.payment-methods
{
    display: flex;
    justify-content: center;
    gap: 0.9375rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.payment-card
{
    background: rgba(42, 63, 95, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1.25rem;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 5rem;
}

.payment-card:hover
{
    background: rgba(255, 70, 85, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.3125rem 1.25rem rgba(255, 70, 85, 0.3);
}

.card-icon
{
    font-size: 0.875rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
}

.visa
{
    color: #1A1F71;
    background: white;
    padding: 0.375rem 0.9375rem;
    font-weight: 800;
}

.mastercard
{
    color: #EB001B;
    background: white;
    padding: 0.375rem 0.5rem;
    font-weight: 800;
}

.paypal
{
    color: #003087;
    background: white;
    padding: 0.375rem 0.75rem;
    font-weight: 800;
}

.amex
{
    color: #006FCF;
    background: white;
    padding: 0.375rem 0.625rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 25, 35, 0.95) 100%);
    padding: 60px 60px 30px 60px;
    border-top: 2px solid rgba(255, 70, 85, 0.3);
    margin-top: 100px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4655, transparent);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.6);
}

.footer_content {
    max-width: 1600px;
    margin: 0 auto;
}

.footer_links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer_link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
}

.footer_link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff4655;
    transition: width 0.3s ease;
}

.footer_link:hover {
    color: #ff4655;
    text-shadow: 0 0 8px rgba(255,70,85,0.6);
}

.footer_link:hover::after {
    width: 100%;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.vp_icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-left: 5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px)
{
    .nav_links
    {
    display: none;
    }

    .page-title
    {
    font-size: 40px;
    }

    .stats-grid
    {
        grid-template-columns: 1fr;
    }

    .weapons-grid
    {
        grid-template-columns: 1fr;
    }

    .payment-methods
    {
        flex-wrap: wrap;
        gap: 10px;
    }

    .payment-card
    {
        padding: 8px 12px;
    }

    .payment-logo
    {
        height: 20px;
    }
}