/* ── Reset ── */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

a { color: #6b2fa0; text-decoration: none; }
a:hover { color: #ef4444; opacity: 0.8; text-decoration: underline; }

/* Exclude buttons and nav from global link color */
.btn-primary, .btn-primary:hover,
.btn-secondary, .btn-secondary:hover,
.nav-cta, .nav-cta:hover,
.mobile-nav-item, .mobile-nav-item:hover,
.nav-links a, .nav-links a:hover,
.nav-logo, .nav-logo:hover,
.footer a, .footer a:hover { color: revert; opacity: 1; }

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    border: 0;
}

/* ── Layout ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-default {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
}

/* LEGACY - can be removed after nav is confirmed working */
/* ── Header ── */
.site-header {
    background-color: #fff;
    padding-top: 22px;
    padding-bottom: 22px;
    box-shadow: 0 3px 14px #1214290a;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
}
.site-header .container {
    max-width: 1224px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEGACY - can be removed after nav is confirmed working */
/* Logo */
.site-logo {
    flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; }
.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* LEGACY - can be removed after nav is confirmed working */
/* Nav */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.main-nav a {
    color: #03003d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.125em;
    transition: color 0.2s ease;
}
.main-nav a:hover {
    color: #ee4000;
    text-decoration: none;
}

/* LEGACY - can be removed after nav is confirmed working */
/* CTA button */
.header-cta {
    flex-shrink: 0;
}
.btn-demo-header {
    background-image: linear-gradient(180deg, #5b0a91, #37035a);
    color: #fff;
    border-radius: 80px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    box-shadow: 0 2px 6px #12142930;
    margin-left: 16px;
    display: inline-block;
    transition: transform .3s, box-shadow .3s;
}
.btn-demo-header:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #12142940;
    text-decoration: none;
}

/* LEGACY - can be removed after nav is confirmed working */
/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #03003d;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============= NAV (site-wide) ============= */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: #ffffff; border-bottom: 1px solid #f0ecf4;
}
#wpadminbar ~ .nav {
    top: 32px;
}
.nav-banner {
    background: #6B2FA0; color: #fff; text-align: center;
    padding: 10px 16px; font-size: 13px; font-weight: 500;
}
.nav-banner strong { color: #FF8A5C; }
.nav-bar { padding: 12px 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); }
.nav-bar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin-bottom: 0; }
.nav-links a { font-size: 14px; font-weight: 500; color: #4a4a5a; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #6B2FA0; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #6B2FA0; color: #fff !important;
    padding: 15px 24px; border-radius: 50px;
    font-weight: 600; font-size: 14px; text-decoration: none;
    transition: all 0.3s; box-shadow: 0 4px 16px rgba(107,47,160,0.25);
    border: none; cursor: pointer;
}
.nav-cta:hover {
    background: #5a2888; color: #fff !important;
    transform: translateY(-1px); box-shadow: 0 6px 24px rgba(107,47,160,0.3);
}

/* ============= MOBILE HAMBURGER & MENU (site-wide) ============= */
.nav-hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; background: none; border: none; cursor: pointer;
    padding: 6px; z-index: 101;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: #1a1a2e; border-radius: 2px; transition: all 0.3s ease;
}
.mobile-menu-overlay {
    display: none; position: fixed; inset: 0; z-index: 300;
    background: rgba(26, 26, 46, 0.5); backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu {
    position: absolute; top: 0; right: 0; width: 280px; height: 100vh;
    background: #fff; padding: 24px; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px;
}
.mobile-menu-header .nav-logo-img { height: 28px; }
.mobile-menu-close {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #e2e0dc;
    background: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 20px; color: #6b6860; transition: all 0.2s;
    line-height: 1; padding: 0; padding-bottom: 2px;
}
.mobile-menu-close:hover { background: #fef2f2; color: #dc2626; }
.mobile-menu-links { list-style: none; padding: 0; margin: 0; }
.mobile-menu-links li { border-bottom: 1px solid #f0ecf4; }
.mobile-menu-links a {
    display: block; padding: 16px 0; font-size: 16px; font-weight: 500;
    color: #1a1a2e; text-decoration: none; transition: color 0.2s;
}
.mobile-menu-links a:hover { color: #6B2FA0; }
@media (max-width: 991px) {
    .nav-hamburger { display: flex !important; }
    .nav .nav-links { display: none !important; }
    .nav .nav-cta { display: none !important; }
}

/* ============= MOBILE BOTTOM NAV (site-wide) ============= */
.mobile-bottom-nav {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border-top: 1px solid #e8e4f0;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
}
.mobile-bottom-nav-inner { display: flex; align-items: center; justify-content: space-around; gap: 4px; }
.mobile-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    text-decoration: none; color: #8a8a9a;
    font-size: 10px; font-weight: 600; padding: 6px 12px;
    border-radius: 10px; transition: all 0.2s; flex: 1; text-align: center;
}
.mobile-nav-item:hover, .mobile-nav-item:active { color: #6B2FA0; background: #f6f0fc; }
.mobile-nav-item svg {
    width: 20px; height: 20px; stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.mobile-nav-item.cta-item {
    background: #6B2FA0; color: #fff !important;
    border-radius: 50px; padding: 10px 16px;
    flex-direction: row; gap: 6px; font-size: 12px;
    box-shadow: 0 4px 16px rgba(107,47,160,0.25);
    border: none; cursor: pointer;
}
.mobile-nav-item.cta-item:hover, .mobile-nav-item.cta-item:active { background: #5a2888; color: #fff !important; }
.mobile-nav-item.cta-item svg { width: 16px; height: 16px; stroke: #fff; }

/* ── Footer ── */
.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 2rem 0;
    margin-top: 0;
    color: #666;
    font-size: 0.9rem;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}
.footer-logo {
    display: flex;
    align-items: center;
}
.footer-logo img {
    height: 40px;
    width: auto;
}
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #999;
}
.footer-nav ul li a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav ul li a:hover {
    color: #03003d;
}

/* ── Pages ── */
.page-default,
.page-home,
.page-about,
.page-contact {
    padding: 2rem 0;
}
.page-default h1,
.page-about h1,
.page-contact h1 {
    margin-bottom: 1rem;
}
.page-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════
   HERO SECTION
   ═══════════════════════════════ */
.hero {
    padding-top: 60px;
    padding-bottom: 100px;
    background: #ffffff;
    text-align: center;
}

.hero-container {
    max-width: 1224px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}
.hero-container .container,
.hero-container .w-container {
    padding-left: 0;
    padding-right: 0;
}

/* Eyebrow heading (smaller h1) */
.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #03003d;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Main headline (bigger h2) */
.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #03003d;
    line-height: 1.2;
    max-width: 750px;
    margin: 0 auto 16px;
}

/* Description */
.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #7e7f88;
    margin-bottom: 0;
    line-height: 1.6;
}
.hero-desc strong {
    font-weight: 700;
    color: #03003d;
}

/* ── Stats Row ── */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 94px;
    grid-row-gap: 32px;
    justify-items: center;
    align-items: center;
    margin-top: 20px;
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    color: #5b0a91;
    font-size: 24px;
    font-weight: 700;
    line-height: 1em;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-align: center;
    white-space: nowrap;
}
.hero-stat-number span {
    color: #ee4000;
}
.hero-stat-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.125em;
    text-align: center;
    color: #7e7f88;
}

/* ── Hero Card ── */
.hero-card {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border: 1px solid #ebebf0;
    border-radius: 12px;
    box-shadow: 0 2px 6px #1b1e3e14;
    margin-top: 24px;
    overflow: hidden;
    min-height: 280px;
}
.hero-card-text {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 56px;
    padding-right: 30px;
    display: flex;
}
.hero-card-video {
    flex: 1.5;
    display: flex;
    overflow: hidden;
}
.hero-card-title {
    font-weight: 700;
    color: #03003d;
}
.hero-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #7e7f88;
    text-align: left;
    max-width: 100%;
    margin: 0 0 24px 0;
}
.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-shopify {
    background-image: linear-gradient(180deg, #5b0a91, #37035a);
    color: #fff;
    border-radius: 80px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 6px #12142930;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-shopify:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}
.btn-shopify-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.btn-shopify-logo {
    height: 22px;
    width: auto;
}
.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #03003d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}
.btn-demo:hover {
    color: #ee4000;
}
.hero-card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* ── Logo Carousel ── */
.logo-carousel-section {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}
.logo-carousel-section .container-default {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.logo-carousel {
    overflow: hidden;
    margin-top: 0;
}
.logo-image-elem {
    object-fit: contain;
    min-width: 50%;
    height: 70px;
    display: block;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
    padding: 0 20px;
}
.logo-image-elem:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── Boost Sales Section ── */
.boost-sales-section {
    padding-top: 218px;
    padding-bottom: 218px;
    overflow: hidden;
}
.boost-sales-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}
.home-screenshots-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 55%;
    max-width: 620px;
    flex-shrink: 0;
}
.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 28px;
    width: 100%;
}
.screenshots-header-img {
    width: 100%;
    display: block;
}
.second-hero-h3 {
    text-align: center;
    white-space: nowrap;
    font-size: 24px;
    color: #03003d;
    font-weight: 700;
    margin: 0;
}
.image-home-link-wrapper {
    display: block;
    border-radius: 10px;
    max-width: 280px;
    overflow: hidden;
    box-shadow: 0 0 15px 2px #a7a7a7;
    text-decoration: none;
    transition: transform .3s;
}
.image-home-link-wrapper:hover {
    transform: translateY(-2px);
}
.image-home-link {
    width: 100%;
    display: block;
}
.boost-sales-text {
    max-width: 535px;
    margin-left: auto;
}
.boost-sales-text h2 {
    color: #03003d;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.316em;
    margin-bottom: 16px;
}
.boost-sales-text p {
    color: #7e7f88;
    font-size: 16px;
    line-height: 1.75em;
    margin-bottom: 16px;
}
.boost-sales-text strong {
    color: #03003d;
}
.boost-arrow-img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 16px 0;
}

/* ── Why AdsGun Section ── */
.why-adsgun-section {
    padding-top: 120px;
    padding-bottom: 120px;
}
.wrap-theme-section-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.why-adsgun-text {
    max-width: 500px;
    margin-bottom: 80px;
}
.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.why-subtitle {
    color: #ee4000;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}
.why-heading {
    color: #03003d;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.368em;
    margin-bottom: 40px;
    margin-top: 0;
}
.why-paragraph {
    color: #7e7f88;
    font-size: 16px;
    line-height: 1.75em;
    margin-bottom: 32px;
}
.wrap-img-wrap-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
}
.why-adsgun-img {
    max-width: 100%;
    display: block;
}

/* ── Setup Guide Section ── */
.setup-guide-section {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}
.setup-guide-text {
    max-width: 500px;
    margin-bottom: 80px;
}
.setup-guide-img {
    max-width: 100%;
    display: block;
}

/* ── Channels Section ── */
.channels-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.dark-container {
    background-color: #180325;
    border-radius: 20px;
    padding: 120px 76px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.dark-grid {
    display: grid;
    align-items: center;
    gap: 74px;
}
.text-left-grid {
    grid-template-columns: 0.9fr 1fr;
}
.text-right-grid {
    grid-template-columns: 1fr 0.9fr;
}
.dark-heading {
    color: #fff;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.368em;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: left;
}
.dark-paragraph {
    color: #dbdbdd;
    font-size: 16px;
    line-height: 1.75em;
    margin-bottom: 0;
    text-align: left;
}
.dark-character-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.text-left-grid .dark-character-img {
    width: 250px !important;
}
.text-right-grid .dark-character-img {
    width: 200px !important;
}
.dark-divider {
    height: 1px;
    background-color: #7e7f88;
    opacity: 0.5;
    margin-top: 40px;
    margin-bottom: 40px;
}
.dark-stats {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 24px;
}
.dark-stat-number {
    color: #fff;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.278em;
    margin-bottom: 8px;
}
.dark-stat-accent {
    color: #ee4000;
}
.dark-stat-label {
    color: #dbdbdd;
    font-size: 16px;
    line-height: 1.125em;
}
.dark-main-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.dark-float-img {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-40%, -20%);
    width: 70%;
    border: 2px solid #ee4000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.dark-img-col.position-relative {
    position: relative;
    padding-bottom: 0;
}
.channels-section .btn-shopify {
    background-image: linear-gradient(180deg, #ee4000, #942800);
}
.btn-demo-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.btn-demo-dark:hover {
    color: #ee4000;
}

/* ── Integrations Section ── */
.integrations-section {
    padding-top: 100px;
    padding-bottom: 60px;
}
.integrations-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 74px;
    align-items: center;
}
.integrations-col {
    position: relative;
    overflow: hidden;
}
.integrations-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 635px;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
}
.integrations-wrapper {
    display: flex;
    align-items: center;
}
.integrations-wrapper.mg-left-48px {
    margin-left: 48px;
}
.integrations-line {
    display: flex;
    animation: scroll-left 20s linear infinite;
    will-change: transform;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.integration-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    border-radius: 41px;
    margin-left: 12px;
    padding: 12px 25px;
    white-space: nowrap;
}
.integration-image {
    width: 28px;
    height: 28px;
    min-width: 28px;
    object-fit: contain;
    display: block;
}
.integ-label {
    font-size: 14px;
    font-weight: 600;
    color: #03003d;
}
.bg-gradient-left {
    background-image: linear-gradient(90deg, #fff 2.58%, transparent 92.44%);
    width: 20%;
    position: absolute;
    inset: 0 auto 0 0;
    pointer-events: none;
}
.bg-gradient-right {
    background-image: linear-gradient(272deg, #fff 2.58%, transparent 92.44%);
    width: 20%;
    position: absolute;
    inset: 0 0 0 auto;
    pointer-events: none;
}
.integrations-text-col {
    max-width: 400px;
}
.integ-percent-img {
    width: 200px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: auto;
    display: block;
}

/* ── Get Started Section ── */
.get-started-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.get-started-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px;
}
.get-started-header-left {
    max-width: 375px;
}
.get-started-img {
    width: 150px;
    display: block;
    margin-top: 8px;
}
.get-started-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.get-started-step {
    border-left: 1.5px solid #dbdbdd;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}
.step-number {
    font-size: 18px;
    font-weight: 700;
    color: #ee4000;
    margin-left: 32px;
    margin-bottom: 16px;
}
.step-content {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
}
.step-heading {
    color: #03003d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 8px;
    margin-top: 0;
    position: relative;
}
.step-heading::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ee4000;
}
.step-text {
    color: #7e7f88;
    font-size: 16px;
    line-height: 1.75em;
    margin-bottom: 0;
    margin-left: 32px;
}

/* ── CTA Footer Section ── */
.cta-footer-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: linear-gradient(to bottom, #490676, #37035a);
    margin-top: 80px;
}
.cta-footer-grid {
    display: grid;
    grid-template-columns: 3.25fr 0.8fr;
    gap: 41px;
    align-items: center;
}
.cta-footer-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.cta-footer-img {
    width: 100%;
    max-width: 130px;
    display: block;
    flex-shrink: 0;
}
.cta-footer-text-wrap {
    border-left: 2px solid #dbdbdd;
    padding-left: 40px;
    display: flex;
}
.cta-footer-heading {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.368em;
    margin: 0;
    text-align: left;
}
.cta-footer-btns {
    display: flex;
    justify-content: flex-end;
}
.btn-shopify-white {
    background-image: linear-gradient(180deg, #ee4000, #942800) !important;
    background-color: transparent !important;
    color: #fff !important;
    border-radius: 80px;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(18,20,41,0.19);
    transition: transform .3s, box-shadow .3s;
}
.btn-shopify-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(18,20,41,0.25);
}
.btn-shopify-white .btn-shopify-label {
    color: #fff !important;
}

/* ── Reviews Section ── */
.reviews-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.tst-section {
    background: transparent;
    padding: 40px 20px;
}
.tst-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}
.tst-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #166534;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.tst-badge img {
    height: 16px;
    width: auto;
}
.tst-title {
    color: #03003d;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.tst-score {
    font-size: 34px;
    font-weight: 700;
    color: #03003d;
    line-height: 1;
    text-align: right;
}
.tst-stars {
    display: flex;
    gap: 2px;
}
.tst-stars svg {
    width: 20px;
    height: 20px;
}
.tst-count {
    font-size: 14px;
    color: #7e7f88;
    text-align: right;
    margin-top: 4px;
}
.tst-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.tst-featured {
    background: linear-gradient(135deg, #180325, #37035a);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}
.tst-featured-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.tst-featured-text {
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}
.tst-featured-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}
.tst-featured-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(91, 10, 145, 0.4);
    color: #c084fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
.tst-featured-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}
.tst-featured-meta {
    font-size: 13px;
    color: #dbdbdd;
    margin-top: 2px;
}
.tst-right-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tst-card {
    background: #fff;
    border: 1px solid #ebebf0;
    border-radius: 16px;
    padding: 16px 20px;
    transition: transform .3s, box-shadow .3s;
}
.tst-card:hover {
    box-shadow: 0 4px 20px rgba(91, 10, 145, 0.08);
    transform: translateY(-2px);
}
.tst-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.tst-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tst-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3e8ff;
    color: #5b0a91;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.tst-card-name {
    font-weight: 600;
    font-size: 14px;
    color: #03003d;
}
.tst-card-meta {
    font-size: 13px;
    color: #7e7f88;
    margin-top: 2px;
}
.tst-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #7e7f88;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.tst-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.tst-card-bottom {
    background: #fff;
    border: 1px solid #ebebf0;
    border-radius: 16px;
    padding: 20px;
    transition: transform .3s, box-shadow .3s;
}
.tst-card-bottom:hover {
    box-shadow: 0 4px 20px rgba(91, 10, 145, 0.08);
    transform: translateY(-2px);
}
.tst-cta {
    text-align: center;
}
.tst-cta a {
    background: linear-gradient(180deg, #5b0a91 0%, #37035a 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 80px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .3s, box-shadow .3s;
}
.tst-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #12142940;
    color: #fff;
}
.tst-cta img {
    height: 18px;
    width: auto;
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Related Posts Splide ── */
.related-posts-splide .splide__track {
    overflow: visible;
}
.related-posts-splide {
    padding: 16px 16px 24px;
}

/* ═══════════════════════════════
   HERO RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 900px) {
    .hero-headline {
        font-size: 2.1rem;
    }
    .hero-card {
        flex-direction: column;
    }
    .hero-card-video video {
        border-radius: 0;
    }
    .hero-stats {
        grid-column-gap: 32px;
    }
    .boost-sales-grid {
        flex-direction: column;
    }
    .home-screenshots-container {
        width: 100%;
        max-width: 100%;
    }
    .boost-sales-text {
        max-width: 100%;
    }
    .boost-sales-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 600px) {
    .hero {
        padding: 70px 0 40px;
    }
    .hero-eyebrow {
        font-size: 1rem;
    }
    .hero-headline {
        font-size: 1.6rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 28px 0;
    }
    .hero-stat-number {
        font-size: 1.15rem;
    }
    .hero-card {
        padding: 20px;
        gap: 20px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Schema Guide Page ── */
.styleguide {
    display: flex;
}
.styleguide_sidebar {
    z-index: 100;
    background-color: #fff;
    flex-direction: column;
    justify-content: space-between;
    width: 15rem;
    max-width: 15rem;
    min-height: 100vh;
    max-height: 100vh;
    padding: 2em;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    box-shadow: 2px 0 8px #0000001a;
}
.container-styleguide {
    width: 100%;
    margin-left: 15rem;
    margin-right: 0;
}
.fs-styleguide_header {
    background-color: #0000000d;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.fs-styleguide_heading-large {
    font-size: 5rem;
}
.fs-styleguide_heading-medium {
    font-size: 4rem;
}
.fs-styleguide_classes {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.text-size-medium {
    font-size: 1.25rem;
}
.red-text {
    color: #ee4000;
}
.green-text {
    color: #2d7a2d;
}
.link-2 {
    text-align: left;
    color: #00f;
}
.bold-text {
    transition: opacity .2s ease-in-out;
}
.styleguide h1 {
    color: #03003d;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.222em;
}
.styleguide h2 {
    color: #03003d;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.316em;
}
.styleguide p {
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 500;
}
.container-styleguide p.text-size-medium {
    color: #7e7f88;
}
.styleguide strong {
    color: #03003d;
    font-weight: 700;
}
.styleguide img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    border: 0;
}
.styleguide a:not(.styleguide_link) {
    color: #ee4000;
    text-decoration: underline;
    transition: color .3s;
}
.styleguide_list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    flex: 1;
    display: flex;
}
.nav-menu-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    height: 100%;
    display: flex;
}
.nav-link-wrapper {
    flex-direction: column;
    display: flex;
}
.styleguide_link {
    opacity: .9;
    color: #788782;
    flex-flow: column;
    padding-top: .5rem;
    padding-bottom: .5em;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 1em;
    font-weight: 400;
    text-decoration: none;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out, color .2s ease-in-out;
    display: flex;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 4px;
}
.styleguide_link:hover {
    color: inherit;
    background-color: transparent;
    cursor: default;
    text-decoration: none;
}
.styleguide_link.child_style:hover {
    opacity: 1;
    color: #ee4000;
    background-color: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
.styleguide_link.child_style {
    margin-left: 20px;
}
.w-inline-block {
    max-width: 100%;
    display: inline-block;
}
@media (min-width: 768px) and (max-width: 900px) {
    .styleguide_sidebar {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        max-height: none;
        flex-direction: row;
        padding: 16px;
    }
    .nav-link-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .styleguide_link {
        white-space: nowrap;
    }
    .styleguide_link.child_style {
        padding-left: 0;
    }
    .container-styleguide {
        margin-left: 0;
    }
    .styleguide {
        flex-direction: column;
    }
}

/* ── Code Blocks ── */
.adsgun-schema-json {
    display: flex;
    background: #1e1e1e;
    border-radius: 8px;
    margin: 1.5rem 0;
    overflow: hidden;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}
.adsgun-line-numbers {
    padding: 1rem 0.75rem;
    color: #858585;
    text-align: right;
    user-select: none;
    min-width: 2.5rem;
    background: #1e1e1e;
}
.adsgun-json-code {
    flex: 1;
    padding: 1rem;
    overflow-x: auto;
}
.adsgun-code-content {
    margin: 0;
    color: #d4d4d4;
    white-space: pre;
}
.copy-btn-wrap {
    position: absolute;
    top: 8px;
    right: 8px;
}
.adsgun_editor_copy_btn {
    width: 35px;
    height: 35px;
    padding: 5px;
    background: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
.adsgun_editor_copy_btn:hover {
    background: #f0f0f0;
}
.adsgun_editor_copy_btn svg {
    width: 25px;
    height: 25px;
    fill: #333;
}

/* ── Blog ── */
.pd-top-100px---bottom-120px {
    padding-top: 100px;
    padding-bottom: 120px;
}
.position-relative---overflow-hidden {
    position: relative;
    overflow: hidden;
}
.inner-container._780px {
    max-width: 900px;
}
.inner-container.center {
    margin-left: auto;
    margin-right: auto;
}
.color-green-100 {
    color: #03003d;
}
.color-neutral-300 {
    color: #7e7f88;
}
.mg-bottom-12px { margin-bottom: 12px; }
.mg-bottom-64px { margin-bottom: 64px; }
.mg-bottom-40px { margin-bottom: 40px; }
.mg-bottom-24px { margin-bottom: 24px; }
.mg-bottom-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.image-wrapper {
    width: 100%;
    margin-top: 48px;
}
.border-radius-12px {
    border-radius: 12px;
    overflow: hidden;
}
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.bg-top-half-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    pointer-events: none;
}
.bg-top-half {
    height: 50%;
    background: linear-gradient(135deg, #f5f0ff 0%, #ede8ff 100%);
}
.bg-half-bottom {
    height: 50%;
    background: #fff;
}
/* Rich text content */
.rich-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 64px;
    text-align: left;
}
.rich-text h1 {
    font-size: 36px;
    font-weight: 800;
    font-family: 'DM Sans', -apple-system, sans-serif;
}
.rich-text h2 {
    color: #03003d;
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.316em;
}
.rich-text h3 {
    color: #03003d;
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}
.rich-text p {
    color: #4a4a5a;
    font-size: 18px;
    font-family: 'DM Sans', -apple-system, sans-serif;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}
.rich-text strong,
.rich-text b {
    color: #1a1a2e;
    font-weight: 700;
}
.rich-text a {
    color: #6B2FA0;
    text-decoration: underline;
}
.rich-text figure {
    margin: 2rem 0;
}
.rich-text figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.rich-text blockquote {
    border-left: 4px solid #ee4000;
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #03003d;
    font-style: italic;
    font-size: 1.2rem;
}
.rich-text ul,
.rich-text ol {
    margin-bottom: 16px;
    padding-left: 1.5rem;
}
.rich-text ul li,
.rich-text ol li {
    color: #7e7f88;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 8px;
}
.rich-text ul li *,
.rich-text ol li * {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}
.rich-text ul li strong,
.rich-text ol li strong {
    color: #03003d;
    font-weight: 700;
}
/* Author box */
.div-block-10 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.image-18 {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.div-block-11 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.text-block-7 {
    font-weight: 700;
    color: #03003d;
    font-size: 1rem;
}
.text-block-8 {
    color: #7e7f88;
    font-size: 0.875rem;
}
.link-5 {
    color: #ee4000;
    font-size: 0.875rem;
    text-decoration: none;
}
.link-5:hover {
    text-decoration: underline;
}
.link-3 {
    color: #ee4000;
    font-size: 0.9rem;
    text-decoration: none;
}
.blog-hero-btn {
    display: inline-block;
    background: linear-gradient(180deg, #ee4000, #a82d00);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-top: 24px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.blog-hero-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}
/* Related posts + blog listing */
.flex-horizontal {
    display: flex;
    align-items: center;
}
.title-left---button-right {
    justify-content: space-between;
}
.grid-3-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.gap-column-56px { column-gap: 56px; }
.gap-row-48px { row-gap: 48px; }
/* Blog page background */
body.page-template-page-blogs {
    background: linear-gradient(180deg, #faf7fe 0%, #ffffff 100%);
}

/* Blog filter buttons — inactive mirrors .btn-secondary, active mirrors .btn-primary */
.blog-filter-btn {
    display: inline-flex; align-items: center;
    background: #fff; color: #6b2fa0;
    border: 2px solid #e2e0dc; border-radius: 50px;
    padding: 14px 32px; font-size: 15px; font-weight: 700; line-height: 1.4;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.blog-filter-btn:hover, .blog-filter-btn:focus {
    border-color: #6b2fa0; background: #f5ecfb;
    color: #5a1d8e; transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107,47,160,0.12);
}
.blog-filter-btn.active {
    background: #6b2fa0; color: #fff; border-color: #6b2fa0;
    box-shadow: 0 6px 24px rgba(107,47,160,0.25);
}
.blog-filter-btn.active:hover {
    background: #5a1d8e; border-color: #5a1d8e; color: #fff;
    transform: translateY(-2px); box-shadow: 0 10px 36px rgba(107,47,160,0.3);
}

.blog-card-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card-wrapper:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: #ffffff;
}
.blog-card-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}
.blog-card-content {
    display: flex;
    flex-direction: column;
}
.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.blog-card-wrapper:hover .blog-card-image {
    transform: scale(1.03);
}
.blog-card-title {
    color: #03003d;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 8px;
    transition: color 0.2s ease;
}
.blog-card-wrapper:hover .blog-card-title {
    color: #ee4000;
}
.text-300 {
    font-size: 0.875rem;
}
.medium { font-weight: 500; }
.color-neutral-800 { color: #03003d; }
.btn-secondary {
    background: transparent;
    border: 2px solid #03003d;
    color: #03003d;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.btn-secondary:hover {
    background: #03003d;
    color: #fff;
    text-decoration: none;
}
.pd-top-0 { padding-top: 0; }
.pd-0px { padding: 0; }

@media screen and (max-width: 767px) {
    .grid-3-columns {
        grid-template-columns: 1fr;
    }
    .pd-top-100px---bottom-120px {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Content sections */
.content-section {
    padding: 2rem 0;
}
.content-section h2 {
    margin-bottom: 0.75rem;
}
.page-content {
    margin-top: 1rem;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 1.5rem;
}
.contact-info p { margin-bottom: 0.75rem; }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}
.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.team-member h3 { margin-top: 0.5rem; }
.team-member .role { color: #666; font-size: 0.9rem; }

/* ── Blog ── */
.archive-header {
    margin-bottom: 2rem;
}
.archive-header h1 { margin-bottom: 0.5rem; }
.archive-desc { color: #555; margin-bottom: 1rem; }

/* Search form */
.blog-search {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin-top: 1rem;
}
.blog-search input[type="text"] {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}
.blog-search button {
    padding: 0.5rem 1.25rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
}
.blog-search button:hover { background: #0055aa; }

/* Post cards */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.post-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.post-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.post-card a { color: inherit; display: block; }
.post-card a:hover { text-decoration: none; }
.post-card-thumb img { width: 100%; display: block; }
.post-card-body { padding: 1rem; }
.post-card-cat { font-size: 0.8rem; color: #0066cc; }
.post-card-body h3 { margin: 0.25rem 0 0.5rem; font-size: 1.1rem; }
.post-card-body p { color: #555; font-size: 0.9rem; }
.post-card-date { font-size: 0.8rem; color: #999; margin-top: 0.5rem; display: block; }

/* Single post */
.single-post { padding: 2rem 0; }
.post-header { margin-bottom: 1.5rem; }
.post-meta { font-size: 0.85rem; color: #666; margin-bottom: 0.5rem; }
.post-thumbnail { margin-bottom: 1.5rem; }
.post-thumbnail img { border-radius: 6px; }
.post-content h2, .post-content h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.post-content p { margin-bottom: 1rem; }
.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

/* Pagination */
.pagination { margin-top: 2rem; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; }
.pagination a, .pagination span {
    padding: 0.4rem 0.8rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
.pagination .current { background: #0066cc; color: #fff; border-color: #0066cc; }

/* Search results */
.search-results { padding: 2rem 0; }

/* 404 */
.page-404 h1 { font-size: 3rem; }

/* ── Button ── */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #0066cc;
    color: #fff;
    border-radius: 4px;
    font-size: 0.95rem;
}
.btn:hover { background: #0055aa; text-decoration: none; }

/* ── Sidebar Toggle Button (Setup Schema / Developers) ── */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.sidebar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #03003d;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.sidebar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.sidebar-toggle.active span:nth-child(2) {
    opacity: 0;
}
.sidebar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}
.sidebar-overlay-active {
    display: block;
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET (max-width: 991px)
   ═══════════════════════════════ */
@media (max-width: 991px) {
    /* ── New Nav ── */
    .nav-links { display: none; }

    /* ── Header ── */
    .site-logo img {
        height: 34px;
    }
    .main-nav ul {
        gap: 1.25rem;
    }
    .main-nav a {
        font-size: 14px;
    }
    .btn-demo-header {
        padding: 10px 14px;
        font-size: 13px;
    }

    /* ── Homepage ── */
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-stats {
        grid-column-gap: 40px;
    }
    .boost-sales-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .boost-sales-grid {
        flex-direction: column;
    }
    .home-screenshots-container {
        width: 100%;
        max-width: 100%;
    }
    .boost-sales-text {
        max-width: 100%;
    }
    .why-adsgun-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .wrap-theme-section-flex {
        flex-direction: column;
        gap: 40px;
    }
    .why-adsgun-text {
        max-width: 100%;
        margin-bottom: 0;
    }
    .dark-container {
        padding: 60px 40px;
        gap: 60px;
    }
    .text-left-grid,
    .text-right-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dark-stats {
        gap: 32px;
    }
    .dark-stat-number {
        font-size: 40px;
    }
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .integrations-text-col {
        max-width: 100%;
    }
    .get-started-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cta-footer-btns {
        justify-content: flex-start;
    }
    .cta-footer-heading {
        font-size: 28px;
    }
    .tst-grid-top {
        grid-template-columns: 1fr;
    }
    .tst-grid-bottom {
        grid-template-columns: 1fr;
    }

    /* ── Blog listing ── */
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 24px !important;
    }

    /* ── Sections general ── */
    .channels-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .integrations-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .get-started-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .reviews-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE (max-width: 767px)
   ═══════════════════════════════ */
@media (max-width: 767px) {
    /* ── New Nav ── */
    .nav-banner { font-size: 12px; padding: 8px 12px; }
    .mobile-bottom-nav { display: block; }
    .nav-cta { display: none; }
    body { padding-bottom: 80px; }

    /* ── General ── */
    .container-default {
        padding-left: 16px;
        padding-right: 16px;
    }
    .padding-global {
        padding-left: 16px;
        padding-right: 16px;
    }
    .container-large {
        max-width: 100%;
        overflow-x: hidden;
    }
    .adsgun-schema-json {
        max-width: 100%;
        overflow-x: auto;
    }
    pre.adsgun-code-content {
        white-space: pre;
        word-break: normal;
    }
    .site-header .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* ── Header ── */
    .nav-toggle { display: flex; }
    .site-logo img {
        height: 30px;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        border-left: 1px solid #e5e5e5;
        padding: 5rem 1.5rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    .main-nav.open { right: 0; }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .main-nav a { font-size: 1rem; }
    .header-cta { display: none; }

    /* ── Homepage Hero ── */
    .hero {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .hero-eyebrow {
        font-size: 1rem;
    }
    .hero-headline {
        font-size: 1.6rem;
        max-width: 100%;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        grid-column-gap: 24px;
        padding: 20px 0;
    }
    .hero-stat-number {
        font-size: 1.1rem;
        height: auto;
    }
    .hero-stat-label {
        font-size: 13px;
    }
    .hero-card {
        flex-direction: column;
    }
    .hero-card-text {
        padding: 24px 20px;
    }
    .hero-card-video video {
        border-radius: 0;
    }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-shopify {
        padding: 14px 22px;
        font-size: 14px;
    }

    /* ── Boost Sales ── */
    .boost-sales-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .boost-sales-text h2 {
        font-size: 28px;
    }
    .second-hero-h3 {
        font-size: 18px;
    }
    .image-home-link-wrapper {
        max-width: 220px;
    }

    /* ── Why Adsgun ── */
    .why-adsgun-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .why-heading {
        font-size: 26px;
    }

    /* ── Setup Guide Section ── */
    .setup-guide-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    /* ── Channels ── */
    .channels-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .dark-container {
        padding: 40px 20px;
        gap: 40px;
        border-radius: 12px;
        overflow: hidden;
    }
    .dark-heading {
        font-size: 24px;
    }
    .dark-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .dark-stat-number {
        font-size: 32px;
    }
    .dark-float-img {
        position: absolute;
        top: 55%;
        bottom: auto;
        left: auto;
        right: -5%;
        transform: none;
        width: 55%;
        margin-top: 0;
    }

    /* ── Testimonials CTA ── */
    .tst-cta a {
        padding: 14px 22px;
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        white-space: nowrap;
    }

    /* ── Integrations ── */
    .integrations-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .integ-percent-img {
        width: 140px;
    }

    /* ── Get Started ── */
    .get-started-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .get-started-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    .get-started-header-left {
        max-width: 100%;
    }

    /* ── Why Adsgun / Setup Guide — text first on mobile ── */
    .wrap-theme-section-flex {
        display: flex;
        flex-direction: column;
    }
    .wrap-theme-section-flex .why-adsgun-text {
        order: 1;
    }
    .wrap-theme-section-flex .wrap-img-wrap-flex {
        order: 2;
    }
    .setup-guide-section .wrap-theme-section-flex .setup-guide-text {
        order: 1;
    }
    .setup-guide-section .wrap-theme-section-flex .wrap-img-wrap-flex {
        order: 2;
    }

    /* ── CTA Footer mobile ── */
    .cta-footer-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .cta-footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .cta-footer-inner {
        flex-direction: column;
        align-items: center;
    }
    .cta-footer-img {
        max-width: 200px;
        margin: 0 auto;
    }
    .cta-footer-text-wrap {
        border-left: none;
        padding-left: 0;
    }
    .cta-footer-heading {
        font-size: 20px;
        text-align: center;
    }
    .cta-footer-btns {
        width: 100%;
        justify-content: center;
    }
    .btn-shopify-white {
        width: 100%;
        justify-content: center;
    }

    /* ── Blog hero mobile ── */
    .inner-container._780px.center.text-center h1 {
        font-size: 28px !important;
    }
    .inner-container._780px.center.text-center p {
        font-size: 15px !important;
    }
    .inner-container._780px.center.text-center div[style*="font-size:14px"] {
        font-size: 12px !important;
    }

    /* ── Reviews ── */
    .reviews-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .tst-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
    .tst-title {
        font-size: 22px;
    }
    .tst-score {
        text-align: left;
        font-size: 28px;
    }
    .tst-count {
        text-align: left;
    }
    .tst-featured {
        min-height: auto;
        padding: 20px;
    }
    .tst-featured-text {
        font-size: 15px;
    }

    /* ── Blog listing ── */
    .blogs-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .blogs-listing-wrap {
        padding: 140px 16px 60px !important;
    }
    .blogs-listing-title {
        font-size: 36px !important;
        margin-bottom: 32px !important;
    }

    /* ── Single blog post ── */
    .display-1 {
        font-size: 28px !important;
    }
    .pd-top-100px---bottom-120px {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .rich-text {
        max-width: 100%;
    }
    .rich-text h2 {
        font-size: 24px;
        margin-top: 32px;
    }
    .rich-text h3 {
        font-size: 20px;
        margin-top: 24px;
    }
    .rich-text p {
        font-size: 1rem;
    }
    .rich-text ul li,
    .rich-text ol li {
        font-size: 1rem;
    }
    .rich-text blockquote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    .div-block-10 {
        flex-direction: row;
        align-items: center;
        max-width: 100%;
    }
    .grid-3-columns {
        grid-template-columns: 1fr;
    }
    .gap-column-56px {
        column-gap: 0;
    }
    .gap-row-48px {
        row-gap: 32px;
    }
    .display-2 {
        font-size: 24px;
    }
    .image-wrapper {
        margin-top: 24px;
    }

    /* ── Quick Start Guide ── */
    .quick-start-wrap h1 {
        font-size: 32px;
    }
    .quick-start-wrap h2 {
        font-size: 26px;
    }
    .quick-start-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
    .quick-start-wrap table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .quick-start-wrap img {
        width: 100%;
        height: auto;
    }
    .quick-start-section {
        margin-bottom: 40px;
    }

    /* ── Setup Schema / Developers — sidebar mobile ── */
    .sidebar-toggle {
        display: flex;
    }
    .styleguide_sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        max-width: 280px;
        min-height: 100vh;
        max-height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 100;
        flex-direction: column;
        padding: 2em;
        overflow-y: auto;
    }
    .styleguide_sidebar.sidebar-open {
        transform: translateX(0);
    }
    .styleguide {
        flex-direction: row;
    }
    .container-styleguide {
        margin-left: 0;
        width: 100%;
    }
    .nav-link-wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: visible;
    }
    .styleguide_link {
        white-space: normal;
    }
    .fs-styleguide_heading-large {
        font-size: 2.5rem;
    }
    .fs-styleguide_heading-medium {
        font-size: 2rem;
    }
    .padding-section-large {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* ── Footer ── */
    .site-footer {
        margin-top: 2rem;
        padding: 1.5rem 16px;
    }
    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo img {
        height: 32px;
    }
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* ── General ── */
    .contact-layout { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   RESPONSIVE — SMALL MOBILE (max-width: 479px)
   ═══════════════════════════════ */
@media (max-width: 479px) {
    .hero-headline {
        font-size: 1.4rem;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .hero-stat-number {
        font-size: 1rem;
    }
    .boost-sales-text h2 {
        font-size: 24px;
    }
    .dark-heading {
        font-size: 20px;
    }
    .dark-stat-number {
        font-size: 26px;
    }
    .dark-float-img {
        top: 50%;
        right: -3%;
        width: 50%;
    }
    .cta-footer-heading {
        font-size: 20px;
    }
    .fs-styleguide_heading-large {
        font-size: 2rem;
    }
    .fs-styleguide_heading-medium {
        font-size: 1.5rem;
    }
    .blogs-listing-title {
        font-size: 28px !important;
    }
    .display-1 {
        font-size: 24px !important;
    }
    .quick-start-wrap h1 {
        font-size: 26px;
    }
    .quick-start-wrap h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .cta-footer-btns {
        width: 100%;
    }
    .btn-shopify-white {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .hero-btns {
        align-items: stretch;
        width: 100%;
    }
    .btn-shopify {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .btn-demo {
        justify-content: center;
        width: 100%;
    }
    .dark-container .btn-demo-dark {
        justify-content: center;
        width: 100%;
    }
    .main-nav ul li {
        width: 100%;
    }
    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }
    .flex-horizontal.title-left---button-right {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.get-started-steps-btns {
    display: none;
}

@media (max-width: 768px) {
    .get-started-header .hero-btns {
        display: none;
    }
    .get-started-steps-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 32px;
    }
    .get-started-steps-btns .btn-shopify {
        margin-top: 12px;
    }
}

/* ============= NAV DROPDOWN ============= */
.nav-dropdown { position: relative; list-style: none; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #f0ecf4;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(107,47,160,0.08);
    min-width: 200px;
    padding: 8px;
    padding-top: 16px;
    z-index: 200;
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4a5a;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
    background: #f6f0fc;
    color: #6B2FA0;
}
