* ---------- COLOR SYSTEM ---------- */
:root {
    --bg-dark: #05060a;
    --bg-light: #0f1118;
    --accent: #ff0000;
    --accent-soft: #ff1a1a;
    --text: #f5f5f5;
    --muted: #b6b6c7;
    --card: #171924;
}

/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- BASE BODY ---------- */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #400000 0, #05060a 45%, #000 100%);
    color: var(--text);
    line-height: 1.5;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px 100px;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--accent-soft);
}

/* ============================================================
   HEADER + LOGO
============================================================ */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

/* ============================================================
   DESKTOP NAVIGATION
============================================================ */
nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
nav a {
    font-size: 0.9rem;
    color: var(--muted);
}
nav a:hover {
    color: var(--accent-soft);
}

/* ============================================================
   HAMBURGER (MOBILE ONLY)
============================================================ */
.hamburger {
    display: none;       /* mobile only */
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 32px;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 6px var(--accent);
    transition: 0.35s ease;
}

/* ACTIVE STATE */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   NEON MOBILE NAV DROPDOWN
============================================================ */
#mainNav {
    display: flex;
}

@media (max-width: 900px) {
    #mainNav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: rgba(0,0,0,0.92);
        border-bottom: 1px solid rgba(255,0,0,0.3);
        padding: 10px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    #mainNav.show {
        display: flex !important;
    }

    #mainNav a {
        padding: 14px 20px;
        text-align: center;
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 1.1rem;
        text-shadow: 0 0 6px var(--accent);
    }

    .hamburger {
        display: flex;
    }
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #fff;
}

/* ============================================================
   FOOTER (FIXED)
============================================================ */
.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    padding: 12px 0;
    border-top: 1px solid rgba(255,0,0,0.4);
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.site-footer a {
    color: var(--accent);
    font-weight: 600;
}

.hero-banner{
    text-align:center;
    padding:35px 20px;
    background:linear-gradient(135deg,#061b3d,#0b3d91);
}

.hero-banner h1{
    margin:0 0 10px;
    font-size:38px;
}

.hero-banner p{
    margin:0 0 20px;
    color:#dbe8ff;
}

.nav a {
    display: inline-block;
    background: #fff;
    color: #0b3d91;
    padding: 10px 18px;
    margin: 5px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.grid {
    max-width: 1300px;
    margin: auto;
    padding: 30px 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    color: #111;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,.45);
}

.card img {
    width: 100%;
    display: block;
    background: #f5f5f5;
}

.content {
    padding: 22px;
}

.badge {
    display: inline-block;
    background: #e60000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 12px;
}

h2 {
    margin: 5px 0 10px;
    font-size: 24px;
}

.code {
    color: #666;
    font-size: 14px;
}

.pricebox {
    margin: 20px 0;
}

.old {
    color: #777;
    text-decoration: line-through;
    font-size: 22px;
}

.new {
    color: #e60000;
    font-size: 44px;
    font-weight: bold;
}

.save {
    color: #0b3d91;
    font-weight: bold;
}

.stock {
    background: #f2f2f2;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.buttons a {
    flex: 1;
    text-align: center;
    background: #0b3d91;
    color: #fff;
    padding: 13px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

.buttons a:first-child {
    background: #25d366;
    color: #111;
}

.ads h3 {
    margin: 18px 0 8px;
    color: #0b3d91;
}

textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px;
    resize: vertical;
    font-family: Arial, sans-serif;
}

.colours{
    margin-top:12px;
}

.colour-pill{
    display:inline-block;
    padding:8px 14px;
    margin:4px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
    box-shadow:0 2px 4px rgba(0,0,0,.15);
}

.searchForm{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.searchForm input{
    padding:12px;
    border:none;
    border-radius:10px;
    min-width:220px;
}

.searchForm button{
    padding:12px 20px;
    border:none;
    border-radius:10px;
    background:#25D366;
    color:#111;
    font-weight:bold;
    cursor:pointer;
}

.hero-banner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:50px;
    background:linear-gradient(135deg,#061b3d,#0b3d91);
}

.hero-left{
    flex:1;
}

.hero-right{
    width:420px;
}

.memory-card{
    position:relative;
    background:#fff;
    color:#111;
    padding:25px;
    border-radius:20px;
    box-shadow:0 0 25px rgba(0,0,0,.4);
}

.free-badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:#e60000;
    color:#fff;
    padding:8px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.memory-card h2{
    color:#0b3d91;
    margin-bottom:10px;
}

.video-placeholder{
    margin-top:20px;
    height:220px;
    background:#111;
    border-radius:15px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    cursor:pointer;
}

.play-button{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#e60000;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:15px;
}

.video-placeholder:hover{
    transform:scale(1.02);
}

.memory-card{
    position:relative;
    overflow:visible;
}

.coming-soon-ribbon{
    position:absolute;
    bottom:15px;
    right:-45px;

    width:180px;
    text-align:center;

    background:#ff9800;
    color:#fff;

    padding:8px 0;

    font-size:12px;
    font-weight:bold;
    letter-spacing:1px;

    transform:rotate(-35deg);

    box-shadow:0 4px 12px rgba(0,0,0,.3);
    z-index:10;
}

.video-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.video-modal{
    width:min(900px,95vw);
    position:relative;
}

.video-modal video{
    width:100%;
    border-radius:12px;
    display:block;
}

.video-close{
    position:absolute;
    top:-40px;
    right:0;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.video-placeholder{
    margin-top:20px;
    border-radius:15px;
    overflow:hidden;
    background:#000;
}

.video-placeholder video{
    width:100%;
    display:block;
    border-radius:15px;
}