/* =========================================================
   LONDON69 - DARK NAVY / BLUE / RED STYLE
   Dark navy base with blue and red accents
   ========================================================= */

:root {
    --london69-navy: #0a0924;
    --london69-navy-2: #11102e;
    --london69-navy-3: #191735;
    --london69-panel: #17162f;
    --london69-panel-2: #0d0c28;

    --london69-blue: #0968d8;
    --london69-blue-2: #034ba5;

    --london69-red: #e50914;
    --london69-red-2: #ad0710;

    --london69-gold: #f0c328;
    --london69-gold-2: #c59c0b;

    --london69-white: #ffffff;
    --london69-muted: #c8c7d4;

    --london69-line: rgba(65, 102, 185, 0.30);
    --london69-soft-blue: rgba(9, 104, 216, 0.10);
    --london69-soft-red: rgba(229, 9, 20, 0.08);
}

/* =========================================================
   BASE / EXISTING PAGE OVERRIDES
   ========================================================= */

.panel {
    background-color: var(--london69-navy) !important;
}

#maincontent {
    background:
        radial-gradient(
            circle at 82% 8%,
            rgba(9, 104, 216, 0.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(229, 9, 20, 0.06),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            var(--london69-navy-2) 0%,
            var(--london69-navy) 100%
        );

    color: var(--london69-white);
}

.product-item-link {
    color: var(--london69-white) !important;
    font-size: 15px !important;
}

.product-item-link:hover {
    color: #4d9dff !important;
}

.product-info {
    color: var(--london69-white);
    padding: 20px;
}

.page-title {
    color: var(--london69-white) !important;
    font-size: 40px !important;
    font-weight: 800 !important;
}

.price {
    color: #4d9dff !important;
}

/* =========================================================
   COMMON PANELS
   ========================================================= */

.box,
.card,
.block,
.content-box {
    background: var(--london69-panel);
    border: 1px solid var(--london69-line);
    color: var(--london69-white);
}

/* =========================================================
   LINKS
   ========================================================= */

a {
    color: #4d9dff;
}

a:hover {
    color: var(--london69-red);
}

/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--london69-white);
}

/* =========================================================
   BUTTON
   ========================================================= */

.action.primary,
button.primary,
.btn-primary {
    background: linear-gradient(
        180deg,
        #1682f4 0%,
        var(--london69-blue) 55%,
        var(--london69-blue-2) 100%
    ) !important;

    border: 1px solid #258cff !important;
    color: #ffffff !important;
}

.action.primary:hover,
button.primary:hover,
.btn-primary:hover {
    background: linear-gradient(
        180deg,
        #ff2530 0%,
        var(--london69-red) 55%,
        var(--london69-red-2) 100%
    ) !important;

    border-color: #ff3942 !important;
}

/* =========================================================
   INPUTS
   ========================================================= */

input,
select,
textarea {
    background: var(--london69-panel-2) !important;
    border: 1px solid #302f50 !important;
    color: var(--london69-white) !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--london69-blue) !important;
    box-shadow: 0 0 0 2px var(--london69-soft-blue);
}

/* =========================================================
   HORIZONTAL LINE
   ========================================================= */

hr {
    border-color: var(--london69-line);
}

/* =========================================================
   MAIN IMAGE
   ========================================================= */

@property --rusa33-neon-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.main-image {
    --rusa33-neon-angle: 0deg;
    display: block;
    width: 100%;
    height: auto;
    padding: 2px;
    box-sizing: border-box;
    border-radius: 0;
    background: conic-gradient(
        from var(--rusa33-neon-angle),
        #080503 0deg,
        #351405 65deg,
        #ff7200 92deg,
        #ff9a3c 104deg,
        #ff7200 116deg,
        #251006 150deg,
        #080503 220deg,
        #ff7200 276deg,
        #080503 360deg
    );
    box-shadow:
        0 0 10px rgba(255, 159, 26, .30),
        0 0 26px rgba(255, 114, 0, .18);
    animation: rusa33ImageNeon 5.5s linear infinite;
}

@keyframes rusa33ImageNeon {
    from { --rusa33-neon-angle: 0deg; }
    to { --rusa33-neon-angle: 360deg; }
}
.london-testimonial {
    width: 100%;
    margin: 35px 0;
}

.london-testimonial-box {
    background: #17162f;
    border: 1px solid #292744;
    border-bottom: 4px solid #e50914;
    padding: 25px;
    box-sizing: border-box;
}

.london-testimonial-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 22px;
    padding-bottom: 13px;
    border-bottom: 1px solid #34324f;
    text-transform: uppercase;
}

.london-testimonial-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: #e50914;
    margin-top: 12px;
}

.london-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.london-testimonial-card {
    background: #0c0b29;
    border: 1px solid #292744;
    padding: 20px;
    min-height: 170px;
    box-sizing: border-box;
    transition: 0.25s ease;
}

.london-testimonial-card:hover {
    background: #111034;
    border-color: #1677df;
    transform: translateY(-2px);
}

.london-testimonial-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 11px;
    padding-left: 11px;
    border-left: 3px solid #e50914;
}

.london-testimonial-card p {
    margin: 0;
    color: #c9c9d4;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .london-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .london-testimonial-box {
        padding: 18px;
    }

    .london-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .london-testimonial-title {
        font-size: 22px;
    }

    .london-testimonial-card {
        min-height: auto;
        padding: 17px;
    }
}

.london-faq {
    width: 100%;
    margin: 35px 0;
}

.london-faq-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}

.london-faq-container {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.london-faq-item {
    position: relative;
    overflow: hidden;
    background: #17162f;
    border: 1px solid #302f50;
    border-left: 4px solid #1475df;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.london-faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0, 110, 255, 0.05)
    );
    pointer-events: none;
}

.london-faq-item[open] {
    border-color: #3b3a61;
    border-left-color: #ed111c;
    background: #1b1a38;
}

.london-faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    list-style: none;
    cursor: pointer;
}

.london-faq-question::-webkit-details-marker {
    display: none;
}

.london-faq-question::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.london-faq-icon {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    background: #0d0c28;
    border: 1px solid #1475df;
    border-radius: 5px;
}

.london-faq-icon::before,
.london-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
    transition: 0.2s ease;
}

.london-faq-icon::before {
    width: 8px;
    height: 2px;
}

.london-faq-icon::after {
    width: 2px;
    height: 8px;
}

.london-faq-item[open] .london-faq-icon {
    background: #ed111c;
    border-color: #ed111c;
}

.london-faq-item[open] .london-faq-icon::after {
    opacity: 0;
}

.london-faq-answer {
    padding: 12px 16px 15px;
}

.london-faq-answer p {
    margin: 0;
    color: #ccccd9;
    font-size: 13px;
    line-height: 1.75;
}

.london-faq-item:hover {
    border-color: #1475df;
}

.london-faq-item[open]:hover {
    border-left-color: #ed111c;
}

@media (max-width: 600px) {
    .london-faq-title {
        font-size: 22px;
    }

    .london-faq-question {
        padding: 14px 13px;
        font-size: 13px;
    }

    .london-faq-question::after {
        left: 13px;
        right: 13px;
    }

    .london-faq-answer {
        padding: 11px 13px 14px;
    }

    .london-faq-answer p {
        font-size: 12.5px;
    }
}