body.single-product {
    background: #05060a !important;
    color: #f5f7ff !important;
}

body.single-product .wp-block-post-title,
body.single-product .wp-block-woocommerce-product-price,
body.single-product .wp-block-woocommerce-product-meta,
body.single-product .wp-block-woocommerce-product-sku,
body.single-product .wp-block-post-terms,
body.single-product .taxonomy-product_cat,
body.single-product .woocommerce-breadcrumb,
body.single-product h1.product_title:not(.mp-product-title),
body.single-product .entry-title:not(.mp-product-title),
body.single-product .woocommerce-product-details__short-description,
body.single-product .product_meta,
body.single-product .posted_in,
body.single-product .tagged_as,
body.single-product .sku_wrapper,
body.single-product .wp-block-post-excerpt {
    display: none !important;
}

body.single-product header:not(.mp-header),
body.single-product .site-header,
body.single-product .main-header,
body.single-product .header,
body.single-product .top-bar,
body.single-product .storefront-primary-navigation,
body.single-product footer.wp-block-template-part,
body.single-product .site-footer {
    display: none !important;
}

body.single-product .site,
body.single-product #page,
body.single-product .site-content,
body.single-product #content,
body.single-product .content-area,
body.single-product main.site-main,
body.single-product .woocommerce {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.mp-product-page {
    --mp-bg: #05060a;
    --mp-card: rgba(16, 19, 33, 0.88);
    --mp-card-2: rgba(9, 11, 20, 0.96);
    --mp-border: rgba(255, 255, 255, 0.12);
    --mp-cyan: #00e5ff;
    --mp-blue: #2f6bff;
    --mp-purple: #9b5cff;
    --mp-text: #f5f7ff;
    --mp-muted: #aeb6c8;
    --mp-max: 1420px;

    width: 100%;
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.78), rgba(5, 6, 10, 0.96)),
        radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.20), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(155, 92, 255, 0.22), transparent 36%),
        url("https://mousepresets.com/wp-content/uploads/2026/05/Neon-Tactical-Shooter-Background.jpg") center top / cover no-repeat;
    color: var(--mp-text);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

.mp-product-page,
.mp-product-page *,
.mp-product-page *::before,
.mp-product-page *::after {
    box-sizing: border-box;
}

.mp-wrap {
    width: min(100% - 56px, var(--mp-max));
    margin: 0 auto;
}

.mp-header {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--mp-border);
    background: rgba(3, 4, 9, 0.88);
    backdrop-filter: blur(16px);
}

.mp-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mp-logo {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
    text-decoration: none;
    white-space: nowrap;
}

.mp-logo span {
    color: var(--mp-cyan);
    text-shadow: 0 0 24px rgba(0, 229, 255, 0.78);
}

.mp-nav,
.mp-footer__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.mp-nav a,
.mp-footer__links a {
    color: var(--mp-muted);
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.mp-nav a:hover,
.mp-footer__links a:hover {
    color: #fff;
    text-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
}

.mp-product-hero {
    position: relative;
    padding: 86px 0 96px;
    overflow: hidden;
}

.mp-product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 30%, rgba(0, 229, 255, 0.13), transparent 32%),
        radial-gradient(circle at 72% 22%, rgba(47, 107, 255, 0.12), transparent 34%),
        radial-gradient(circle at 68% 78%, rgba(155, 92, 255, 0.14), transparent 36%);
    animation: mpHeroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.mp-product-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
    z-index: 1;
}

.mp-product-hero__inner {
    position: relative;
    z-index: 2;
}

.mp-product-page div.product {
    display: grid;
    grid-template-columns: minmax(430px, 0.95fr) minmax(460px, 1.05fr);
    gap: 58px;
    align-items: start;
    max-width: 1420px;
    margin: 0 auto !important;
}

.mp-product-page div.product div.images,
.mp-product-page div.product div.summary {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.mp-product-page div.product div.images {
    position: relative;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
}

body.single-product .wp-block-columns > .wp-block-column:first-child {
    position: relative;
}

body.single-product .wp-block-columns > .wp-block-column:first-child::before,
body.single-product .wp-block-columns > .wp-block-column:first-child::after,
.mp-product-short-note {
    border: 1px solid rgba(0, 229, 255, 0.55) !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.075), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(0, 229, 255, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(8, 14, 24, 0.88), rgba(4, 7, 14, 0.96)) !important;
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 0 44px rgba(0, 229, 255, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.16) !important;
}

body.single-product .wp-block-columns > .wp-block-column:first-child::before {
    content: "CS2 Preset Pack";
    display: block;
    max-width: 560px;
    margin-top: 0;
    padding: 20px 24px;
    border-radius: 24px 24px 0 0;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
    text-shadow: 0 0 24px rgba(0, 229, 255, 0.22);
}

body.single-product .wp-block-columns > .wp-block-column:first-child::after {
    content: "Included in This Pack\A\A✓ Preset files for selected mouse software\A✓ Sensitivity and DPI setup notes\A✓ Import / setup guide included\A✓ Digital download after purchase\A✓ Editable settings for fine-tuning";
    display: block;
    max-width: 560px;
    margin-top: 32px;
    padding: 30px;
    border-radius: 26px;
    color: #dce3f7;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.65;
    white-space: pre-line;
}

.mp-product-page div.product div.images img,
body.single-product .woocommerce-product-gallery img {
    width: 100%;
    max-width: 560px;
    min-height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 24px 24px;
    filter: saturate(1.14) contrast(1.07);
    box-shadow: 0 30px 95px rgba(0, 0, 0, 0.42), 0 0 70px rgba(0, 229, 255, 0.13);
}

.mp-product-page div.product div.images .woocommerce-product-gallery__trigger {
    top: 20px !important;
    right: 20px !important;
    z-index: 5;
}

.mp-product-page div.product div.summary {
    position: relative;
    max-width: 660px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.mp-product-kicker,
.mp-section__kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--mp-cyan);
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mp-product-kicker {
    margin-bottom: 14px;
    padding: 9px 15px;
    border: 1px solid rgba(0, 229, 255, 0.42);
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 32px rgba(0, 229, 255, 0.16);
}

.mp-product-title {
    position: relative;
    max-width: 680px;
    margin: 0 0 16px;
    background: linear-gradient(90deg, var(--mp-cyan), var(--mp-blue), var(--mp-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: clamp(46px, 4.7vw, 70px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.065em;
    text-shadow: 0 0 36px rgba(0, 229, 255, 0.18);
}

.mp-product-title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 48%, transparent 62%);
    transform: translateX(-120%);
    animation: mpTitleShine 4.8s ease-in-out infinite;
    pointer-events: none;
    -webkit-background-clip: text;
    background-clip: text;
}

.mp-product-price {
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 179, 38, 0.45);
    border-radius: 999px;
    color: #ffd36a !important;
    background: radial-gradient(circle at 20% 20%, rgba(255, 211, 106, 0.24), transparent 45%), rgba(255, 159, 28, 0.08);
    box-shadow: 0 0 34px rgba(255, 179, 38, 0.24), inset 0 1px 0 rgba(255,255,255,0.12);
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 24px rgba(255, 179, 38, 0.35);
}

.mp-product-badges,
.mp-hero-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.mp-product-badges {
    margin: 0 0 18px;
}

.mp-product-badges span,
.mp-hero-includes span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 999px;
    color: #dce3f7;
    background: rgba(255,255,255,0.07);
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.mp-product-short-note {
    max-width: 620px;
    margin: 18px 0 14px;
    padding: 18px 20px;
    border-color: rgba(255, 179, 38, 0.46) !important;
    border-radius: 18px;
    color: #e8f8ff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.38),
        0 0 38px rgba(255, 179, 38, 0.12),
        0 0 42px rgba(0, 229, 255, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.14) !important;
}

.mp-hero-includes {
    margin: 0 0 24px;
}

.mp-product-page form.variations_form {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.mp-product-page table.variations,
.mp-product-page table.variations tbody,
.mp-product-page table.variations tr,
.mp-product-page table.variations th,
.mp-product-page table.variations td {
    display: block;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.mp-product-page table.variations tr {
    margin-bottom: 14px !important;
}

.mp-product-page table.variations label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mp-product-page table.variations select {
    display: none !important;
}

.mp-variation-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.mp-variation-picker button {
    position: relative;
    overflow: hidden;
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    color: #dce3f7;
    background: rgba(255,255,255,0.075);
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mp-variation-picker button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mp-x, 50%) var(--mp-y, 50%), rgba(0, 229, 255, 0.38), transparent 38%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.mp-variation-picker button:hover::before {
    opacity: 1;
}

.mp-variation-picker button:hover {
    transform: translateY(-3px) scale(1.025);
    border-color: rgba(0, 229, 255, 0.62);
    box-shadow: 0 0 28px rgba(0, 229, 255, 0.18);
}

.mp-variation-picker button.is-active {
    color: #03040a;
    border-color: rgba(0,229,255,0.72);
    background: linear-gradient(90deg, var(--mp-cyan), var(--mp-blue));
    box-shadow: 0 0 28px rgba(0,229,255,0.24);
}

.mp-product-page .reset_variations {
    display: inline-flex !important;
    margin-top: 0;
    color: var(--mp-cyan) !important;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.mp-product-page .single_variation_wrap {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.mp-product-page .woocommerce-variation-price {
    margin-bottom: 16px;
}

.mp-product-page .quantity {
    margin-right: 12px !important;
}

.mp-product-page .quantity input.qty {
    min-height: 58px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.mp-product-page button.single_add_to_cart_button,
.mp-product-page .single_add_to_cart_button {
    position: relative;
    overflow: hidden;
    min-width: 210px;
    min-height: 64px;
    padding: 0 28px !important;
    border: 0 !important;
    border-radius: 17px !important;
    color: #130b00 !important;
    background: linear-gradient(90deg, #ffd36a, #ff9f1c) !important;
    box-shadow: 0 0 34px rgba(255, 179, 38, 0.42), 0 0 0 0 rgba(255, 179, 38, 0.34) !important;
    font-family: Rajdhani, Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    animation: mpGoldPulse 1.9s ease-in-out infinite;
}

.mp-product-page button.single_add_to_cart_button::before,
.mp-product-page .single_add_to_cart_button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 48%, transparent 62%);
    transform: translateX(-120%);
    animation: mpButtonShine 3.2s ease-in-out infinite;
}

.mp-product-page button.single_add_to_cart_button:hover {
    transform: translateY(-3px);
}

.mp-product-page .woocommerce-tabs {
    grid-column: 1 / -1;
    max-width: 1180px;
    margin: 86px auto 0 !important;
    padding: 28px 32px !important;
    border: 1px solid rgba(0, 229, 255, 0.28) !important;
    border-radius: 26px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.045), transparent 34%), rgba(7, 10, 18, 0.82) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 34px rgba(0, 229, 255, 0.08), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

.mp-product-page .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 24px !important;
    border: 0 !important;
}

.mp-product-page .woocommerce-tabs ul.tabs::before,
.mp-product-page .woocommerce-tabs ul.tabs li::before,
.mp-product-page .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.mp-product-page .woocommerce-tabs ul.tabs li {
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.07) !important;
}

.mp-product-page .woocommerce-tabs ul.tabs li.active {
    border-color: rgba(0,229,255,0.48) !important;
    background: rgba(0,229,255,0.11) !important;
}

.mp-product-page .woocommerce-tabs ul.tabs li a {
    color: #fff !important;
    font-family: Rajdhani, Arial, sans-serif !important;
    font-weight: 700 !important;
}

.mp-product-page .woocommerce-Tabs-panel {
    color: #dce3f7;
    font-size: 16px;
    line-height: 1.7;
}

.mp-product-page .woocommerce-Tabs-panel h2 {
    margin-bottom: 18px !important;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 32px !important;
    letter-spacing: -0.035em;
}

.mp-product-page .woocommerce-Tabs-panel p {
    max-width: 980px;
    color: #dce3f7 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}

.mp-section__head {
    max-width: 780px;
    margin-bottom: 34px;
}

.mp-section__kicker {
    margin-bottom: 14px;
}

.mp-section__head h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: clamp(40px, 4.4vw, 64px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.mp-product-info {
    grid-column: 1 / -1;
    margin-top: 86px;
    padding-top: 74px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.mp-product-info__media {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 22px;
    margin-bottom: 28px;
}

.mp-demo-video,
.mp-info-image-card,
.mp-info-card,
.mp-product-faq {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.34) !important;
    border-radius: 28px;
    background: radial-gradient(circle at 84% 18%, rgba(0, 229, 255, 0.18), transparent 34%), linear-gradient(135deg, rgba(16, 19, 33, 0.88), rgba(9, 11, 20, 0.96));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), 0 0 46px rgba(0, 229, 255, 0.10), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.mp-demo-video:hover,
.mp-info-image-card:hover,
.mp-info-card:hover,
.mp-product-faq:hover,
.mp-product-page .woocommerce-tabs:hover,
.mp-product-short-note:hover,
body.single-product .wp-block-columns > .wp-block-column:first-child:hover::before,
body.single-product .wp-block-columns > .wp-block-column:first-child:hover::after {
    transform: translateY(-4px);
    border-color: rgba(255, 179, 38, 0.50) !important;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 0 52px rgba(0, 229, 255, 0.15), 0 0 34px rgba(255, 179, 38, 0.12), inset 0 1px 0 rgba(255,255,255,0.14) !important;
}

.mp-demo-video {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(180deg, rgba(5,6,10,0.12), rgba(5,6,10,0.88)), url("https://mousepresets.com/wp-content/uploads/2026/05/Counter-Strike-2-Tactical-Operators.jpg") center / cover no-repeat;
}

.mp-demo-video__play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 229, 255, 0.48);
    border-radius: 50%;
    color: #03040a;
    background: linear-gradient(90deg, #00e5ff, #2f6bff);
    box-shadow: 0 0 46px rgba(0, 229, 255, 0.42);
    font-size: 28px;
    transform: translate(-50%, -50%);
}

.mp-demo-video__label,
.mp-info-image-card span,
.mp-info-card__kicker {
    color: var(--mp-cyan);
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mp-demo-video__text {
    max-width: 520px;
    margin-top: 8px;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-shadow: 0 0 28px rgba(0, 229, 255, 0.20);
}

.mp-info-image-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(180deg, rgba(5,6,10,0.10), rgba(5,6,10,0.90)), url("https://mousepresets.com/wp-content/uploads/2026/05/Cyberpunk-RGB-Gaming-Desk-Background.jpg") center / cover no-repeat;
}

.mp-info-image-card strong {
    max-width: 320px;
    margin-top: 8px;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.mp-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.mp-info-card {
    min-height: 300px;
    padding: 32px;
}

.mp-info-card::after,
.mp-product-faq::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.22), transparent 68%);
    pointer-events: none;
}

.mp-info-card--warning::after {
    background: radial-gradient(circle, rgba(255, 159, 28, 0.24), transparent 68%);
}

.mp-info-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.mp-info-card ul,
.mp-info-card ol {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: #dce3f7;
    font-size: 16px;
    line-height: 1.55;
}

.mp-product-faq {
    margin-top: 22px;
    padding: 34px;
}

.mp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mp-faq-item {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.065);
    overflow: hidden;
}

.mp-faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #fff;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    list-style: none;
}

.mp-faq-item summary::-webkit-details-marker {
    display: none;
}

.mp-faq-item summary::after {
    content: "+";
    float: right;
    color: var(--mp-cyan);
    font-size: 24px;
    line-height: 1;
}

.mp-faq-item[open] summary::after {
    content: "–";
}

.mp-faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: #dce3f7;
    font-size: 15px;
    line-height: 1.6;
}

.mp-footer {
    display: block !important;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030409;
}

.mp-footer__inner {
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
}

.mp-footer p {
    margin: 0;
    color: #7e879d;
    font-size: 13px;
}

.mp-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.mp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes mpHeroGlow {
    0% { opacity: 0.65; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.04); }
}

@keyframes mpTitleShine {
    0%, 55% { transform: translateX(-120%); opacity: 0; }
    68% { opacity: 0.8; }
    100% { transform: translateX(120%); opacity: 0; }
}

@keyframes mpGoldPulse {
    0% { box-shadow: 0 0 32px rgba(255, 179, 38, 0.34), 0 0 0 0 rgba(255, 179, 38, 0.36); }
    70% { box-shadow: 0 0 54px rgba(255, 179, 38, 0.58), 0 0 0 16px rgba(255, 179, 38, 0); }
    100% { box-shadow: 0 0 32px rgba(255, 179, 38, 0.34), 0 0 0 0 rgba(255, 179, 38, 0); }
}

@keyframes mpButtonShine {
    0%, 45% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}

@media (max-width: 1100px) {
    .mp-product-page div.product,
    .mp-product-info__media,
    .mp-info-grid,
    .mp-faq-grid {
        grid-template-columns: 1fr;
    }

    .mp-product-page div.product div.images img,
    body.single-product .woocommerce-product-gallery img,
    body.single-product .wp-block-columns > .wp-block-column:first-child::before,
    body.single-product .wp-block-columns > .wp-block-column:first-child::after {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .mp-wrap {
        width: min(100% - 36px, var(--mp-max));
    }

    .mp-header__inner {
        min-height: auto;
        padding-block: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mp-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px;
    }

    .mp-logo {
        font-size: 28px;
    }

    .mp-product-hero {
        padding: 50px 0 70px;
    }

    .mp-product-title {
        font-size: 46px;
    }

    .mp-demo-video,
    .mp-info-image-card {
        min-height: 300px;
    }

    .mp-product-page button.single_add_to_cart_button,
    .mp-product-page .single_add_to_cart_button,
    .mp-product-page .quantity,
    .mp-product-page .quantity input.qty {
        width: 100%;
    }
}



/* MousePresets WooCommerce system pages */
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account,
body.post-type-archive-product {
    background:
        linear-gradient(90deg, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.84), rgba(5, 6, 10, 0.96)),
        radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.18), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(155, 92, 255, 0.18), transparent 36%),
        url("https://mousepresets.com/wp-content/uploads/2026/05/Neon-Tactical-Shooter-Background.jpg") center top / cover fixed no-repeat !important;
    color: #f5f7ff !important;
    font-family: Inter, Arial, sans-serif;
}

body.woocommerce-cart .wp-site-blocks,
body.woocommerce-checkout .wp-site-blocks,
body.woocommerce-account .wp-site-blocks,
body.post-type-archive-product .wp-site-blocks {
    background: transparent !important;
}

body.woocommerce-cart main,
body.woocommerce-checkout main,
body.woocommerce-account main,
body.post-type-archive-product main {
    width: min(100% - 56px, 1180px);
    margin: 0 auto;
    padding: 64px 0 90px;
}

body.woocommerce-cart h1,
body.woocommerce-checkout h1,
body.woocommerce-account h1,
body.post-type-archive-product h1 {
    margin: 0 0 34px;
    background: linear-gradient(90deg, #00e5ff, #2f6bff, #9b5cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    font-family: Rajdhani, Arial, sans-serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 700;
    letter-spacing: -0.055em;
}

body.woocommerce-cart .wc-block-cart,
body.woocommerce-cart .wc-block-cart__main,
body.woocommerce-cart .wc-block-cart__sidebar,
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
    color: #f5f7ff !important;
}

body.woocommerce-cart .wc-block-components-main,
body.woocommerce-cart .wc-block-cart__sidebar,
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-account .woocommerce-MyAccount-content {
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 26px;
    background:
        radial-gradient(circle at 84% 18%, rgba(0, 229, 255, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(16, 19, 33, 0.88), rgba(9, 11, 20, 0.96));
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.38),
        0 0 46px rgba(0, 229, 255, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.08);
    padding: 28px !important;
}

body.woocommerce-cart a,
body.woocommerce-checkout a,
body.woocommerce-account a,
body.post-type-archive-product a {
    color: #00e5ff !important;
}

body.woocommerce-cart .wc-block-components-button,
body.woocommerce-checkout .wc-block-components-button,
body.woocommerce-account .woocommerce-button,
body.post-type-archive-product .wp-block-button__link {
    border: 0 !important;
    border-radius: 17px !important;
    color: #130b00 !important;
    background: linear-gradient(90deg, #ffd36a, #ff9f1c) !important;
    box-shadow: 0 0 34px rgba(255, 179, 38, 0.34) !important;
    font-family: Rajdhani, Arial, sans-serif !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body.woocommerce-cart .wc-block-components-button:hover,
body.woocommerce-checkout .wc-block-components-button:hover,
body.woocommerce-account .woocommerce-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(255, 179, 38, 0.55) !important;
}

body.woocommerce-cart .wc-block-components-product-name,
body.woocommerce-cart .wc-block-components-product-name a,
body.woocommerce-checkout .wc-block-components-product-name {
    color: #fff !important;
    font-family: Rajdhani, Arial, sans-serif;
    font-weight: 700;
}

body.woocommerce-cart .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-totals-item,
body.woocommerce-checkout .wc-block-components-totals-item {
    color: #dce3f7 !important;
}

body.woocommerce-cart .wc-block-cart-items,
body.woocommerce-cart .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-components-totals-wrapper {
    border-color: rgba(255,255,255,0.12) !important;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title,
body.woocommerce-cart .wc-block-grid__product-title,
body.post-type-archive-product .wc-block-grid__product-title {
    color: #fff !important;
    font-family: Rajdhani, Arial, sans-serif;
    font-weight: 700;
}

body.woocommerce-cart .wc-block-grid__product,
body.post-type-archive-product .wc-block-grid__product {
    border: 1px solid rgba(0, 229, 255, 0.24);
    border-radius: 22px;
    background: rgba(9, 11, 20, 0.82);
    padding: 18px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

body.woocommerce-cart .wc-block-grid__product img,
body.post-type-archive-product .wc-block-grid__product img {
    border-radius: 16px;
}