/* Launchshop Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --ls-primary: #FF5A2C;
    --ls-primary-hover: #e0451a;
    --ls-dark: #1E2335;
    --ls-gray-dark: #4A5568;
    --ls-gray: #718096;
    --ls-gray-light: #F7FAFC;
    --ls-white: #FFFFFF;
    --ls-border: #E2E8F0;
    --ls-success: #10B981;
    --font-primary: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hide scrollbars globally across all browsers while keeping page scrollable */
* {
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE 10+ */
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

*::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
}

*::-webkit-scrollbar-track {
    display: none !important;
    background: transparent !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary) !important;
    color: var(--ls-gray-dark);
    line-height: 1.6;
    background-color: var(--ls-white);
    overflow-x: hidden;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary) !important;
    font-weight: 700;
    color: var(--ls-dark);
    margin-top: 0;
}

/* Typography & Titles */
.section-subtitle {
    display: inline-block;
    color: var(--ls-primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    color: var(--ls-dark);
}

/* Templates section heading — "Ecom Store" highlighted orange via span */
.templates-section .section-title span,
.templates-section .section-title em {
    color: var(--ls-primary);
}

/* Buttons */
.btn-ls-primary {
    background-color: var(--ls-primary) !important;
    color: var(--ls-white) !important;
    border: 1px solid var(--ls-primary) !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-ls-primary:hover {
    background-color: var(--ls-primary-hover) !important;
    border-color: var(--ls-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 44, 0.2);
}

.btn-ls-outline {
    background-color: transparent !important;
    color: var(--ls-dark) !important;
    border: 1px solid var(--ls-border) !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-ls-outline:hover {
    border-color: var(--ls-dark) !important;
    background-color: var(--ls-dark) !important;
    color: var(--ls-white) !important;
    transform: translateY(-2px);
}

/* Header Overrides */
.header-area {
    background: var(--ls-white) !important;
    box-shadow: none !important;
    padding: 15px 0 !important;
    border-bottom: none !important;
    border-top: none !important;
}

.main-navbar {
    border-bottom: none !important;
    border-top: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.main-navbar .navbar {
    border-bottom: none !important;
    border-top: none !important;
    padding-bottom: 0 !important;
}

.navbar {
    border: none !important;
    border-radius: 0 !important;
}

.navbar-nav .nav-link {
    font-weight: 600 !important;
    color: var(--ls-dark) !important;
    font-size: 15px !important;
    border-bottom: none !important;
    border-top: none !important;
}

.navbar-nav .nav-link:hover {
    color: var(--ls-primary) !important;
}

@media (max-width: 1199px) {
    .header-area {
        box-shadow: none !important;
        border-bottom: none !important;
    }

    .header-area .main-responsive-nav {
        box-shadow: none !important;
        border-bottom: none !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu {
        box-shadow: none !important;
        border-bottom: none !important;
    }
}

/* Hero Section */
.hero-wrapper {
    padding: 40px 0 60px;
    background: radial-gradient(circle at 100% 0%, #fff5f2 0%, #ffffff 100%);
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #fff5f2;
    color: var(--ls-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 90, 44, 0.1);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ls-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--ls-primary);
}

.hero-text {
    font-size: 18px;
    color: var(--ls-gray-dark);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: var(--ls-gray);
    font-weight: 500;
}

.hero-features i {
    color: var(--ls-success);
    margin-right: 5px;
}

.hero-mockup-wrapper {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .hero-mockup-wrapper {
        margin-right: -40px;
        transform: scale(1.05);
        transform-origin: left center;
    }
}

@media (min-width: 1200px) {
    .hero-mockup-wrapper {
        margin-right: -60px;
        transform: scale(1.1);
        transform-origin: left center;
    }
}

@media (min-width: 1400px) {
    .hero-mockup-wrapper {
        margin-right: -100px;
        transform: scale(1.15);
        transform-origin: left center;
    }
}

.hero-stats-banner {
    background: var(--ls-white);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    padding: 40px 24px 45px;
    margin-top: 60px;
    border: 1px solid var(--ls-border);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff5f2;
    color: var(--ls-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.hero-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--ls-dark);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--ls-gray-dark);
    font-weight: 500;
    line-height: 1.4;
    min-height: 38px;
}

/* Templates Section */
.templates-section {

    background: var(--ls-white);
}

.theme-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.theme-filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--ls-border);
    background: var(--ls-white);
    color: var(--ls-gray-dark);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.theme-filter-btn:hover,
.theme-filter-btn.active {
    background: #fff5f2;
    color: var(--ls-primary);
    border-color: var(--ls-primary);
}

.theme-card {
    background: var(--ls-white);
    border-radius: 16px;
    border: 1px solid var(--ls-border);
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
}

.theme-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.theme-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid var(--ls-border);
}

.theme-card-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.theme-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ls-dark);
    margin: 0;
}

.theme-card-cat {
    font-size: 13px;
    color: var(--ls-primary);
    font-weight: 500;
}

.theme-card-badge {
    background: var(--ls-gray-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ls-gray-dark);
}

/* Password eye icon color (applies to password visibility toggles) */
.show-password-field i,
.show-password-field .show-icon,
.show-password i,
.show-password-field i.fa-eye,
.show-password-field i.fa-eye-slash,
#passEyeIcon,
#eyeIcon1,
#eyeIcon2,
#password-eye-icon,
#password-confirm-eye-icon,
i[id$="-eye-icon"],
i[id$="EyeIcon"] {
    color: var(--ls-primary) !important;
    transition: color 0.15s ease !important;
}

.show-password-field:hover i,
.show-password-field i:hover,
#passEyeIcon:hover,
#eyeIcon1:hover,
#eyeIcon2:hover,
#password-eye-icon:hover,
#password-confirm-eye-icon:hover,
i[id$="-eye-icon"]:hover,
i[id$="EyeIcon"]:hover {
    color: var(--ls-primary-hover) !important;
}

/* Ensure 'View cart' button text is white */
.cart-footer .cart-button .btn-primary,
.cart-button .btn-primary {
    color: #ffffff !important;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f2 0%, #fffaf8 40%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 90, 44, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.steps-line {
    position: absolute;
    top: 58px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    z-index: 0;
    overflow: visible;
}

.steps-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff5a2c, #ff9f43, #ff5a2c);
    background-size: 200% 100%;
    box-shadow: 0 0 10px rgba(255, 90, 44, 0.8), 0 0 20px rgba(255, 90, 44, 0.4);
    animation: laserGlow 1s linear infinite;
    border-radius: 4px;
    transition: width 0.1s linear, height 0.1s linear;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 15%;
    /* Clean minimal card on desktop */
    background: transparent;
    border-radius: 12px;
    padding: 18px 10px 16px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #ffc6b5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(255, 90, 44, 0.1);
}

.step-icon-wrap img,
.step-icon-wrap i {
    width: 32px;
    height: 32px;
    object-fit: contain;
    color: var(--ls-primary);
    font-size: 32px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ls-dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: #333333;
    line-height: 1.4;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 0;
    background: var(--ls-white);
}

.pricing-card {
    background: var(--ls-white);
    border: 1px solid var(--ls-border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border: 2px solid var(--ls-primary);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ls-primary);
    color: var(--ls-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    background: #e6f6ec;
    color: var(--ls-success);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

.pricing-card.popular .pricing-icon {
    background: #fff5f2;
    color: var(--ls-primary);
}

.pricing-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ls-dark);
    margin-bottom: 5px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--ls-gray);
    margin-bottom: 25px;
}

.pricing-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--ls-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: flex-end;
}

.pricing-price span {
    font-size: 16px;
    color: var(--ls-gray);
    font-weight: 500;
    margin-bottom: 8px;
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    font-size: 14px;
    color: var(--ls-gray-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features li i.fa-check {
    color: var(--ls-success);
    margin-right: 10px;
    font-size: 16px;
}

.pricing-features li i.fa-times {
    color: #fca5a5;
    margin-right: 10px;
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
}

/* Features Grid */
.features-grid {
    padding: 50px 0;
    background: var(--ls-gray-light);
}

.feature-box {
    background: var(--ls-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--ls-border);
    transition: all 0.3s;
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ls-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--ls-gray);
}

/* Subdomain Banner */
.subdomain-banner {
    background: linear-gradient(90deg, #161a29 0%, #1e2335 100%);
    padding: 60px 0;
    position: relative;
}

.subdomain-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subdomain-title {
    color: var(--ls-white);
    font-size: 24px;
    margin-bottom: 5px;
}

.subdomain-title-icon {
    width: 48px;
    height: 48px;
    background: var(--ls-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.subdomain-input-group {
    display: flex;
    background: var(--ls-white);
    border-radius: 8px;
    overflow: hidden;
    width: 500px;
}

.subdomain-input-group input {
    border: none;
    padding: 15px 20px;
    flex-grow: 1;
    font-size: 15px;
    outline: none;
}

.subdomain-input-group .domain-ext {
    padding: 15px 20px;
    background: #f8fafc;
    color: var(--ls-gray-dark);
    font-weight: 600;
    border-left: 1px solid var(--ls-border);
}

.subdomain-input-group button {
    background: var(--ls-primary);
    color: var(--ls-white);
    border: none;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.subdomain-input-group button:hover {
    background: var(--ls-primary-hover);
}

/* Testimonials */
.testimonials-section {
    padding: 50px 0;
    background: var(--ls-white);
}

.testimonial-card {
    background: var(--ls-white);
    border: 1px solid var(--ls-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.testi-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testi-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testi-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ls-dark);
    margin: 0;
}

.testi-designation {
    font-size: 13px;
    color: var(--ls-gray);
}

.testi-text {
    font-size: 15px;
    color: var(--ls-gray-dark);
    font-style: italic;
}

.testi-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-top: 15px;
}

/* Brands */
.brands-banner {
    padding: 40px 0;
    border-top: 1px solid var(--ls-border);
    border-bottom: 1px solid var(--ls-border);
    text-align: center;
}

.brands-title {
    font-size: 14px;
    color: var(--ls-gray);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brands-list img {
    height: 30px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.3s;
}

.brands-list img:hover {
    opacity: 1;
    filter: none;
}

/* Bottom CTA */
.bottom-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, #ff7b54 0%, #ff5a2c 100%);
}

.bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-title {
    color: var(--ls-white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-btns .btn-ls-outline {
    border-color: var(--ls-white) !important;
    color: var(--ls-white) !important;
}

.cta-btns .btn-ls-outline:hover {
    background: var(--ls-white) !important;
    color: var(--ls-primary) !important;
}

.cta-illustration {
    width: 300px;
}

/* Footer Redesign - Professional Dark Theme */
.footer-area {
    background: #0b0f19 !important;
    /* Deep dark background */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8 !important;
    margin-top: 40px;
}

.footer-area p,
.footer-widget p,
.footer-area .footer-widget p {
    color: #94a3b8 !important;
    font-size: 14px;
    line-height: 1.6;
}

.footer-widget h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--ls-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #94a3b8 !important;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links li a:hover {
    color: var(--ls-primary) !important;
    transform: translateX(4px);
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #94a3b8 !important;
}

.info-list li i {
    color: var(--ls-primary) !important;
    margin-right: 12px;
    font-size: 16px;
    margin-top: 4px;
}

.info-list li a,
.info-list li span {
    color: #94a3b8 !important;
    transition: color 0.2s ease;
}

.info-list li a:hover {
    color: var(--ls-primary) !important;
}

.social-link {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    text-decoration: none;
}

.social-link a:hover {
    background: var(--ls-primary) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 90, 44, 0.3);
}

#footerSubscriber {
    margin-top: 15px;
}

#footerSubscriber .input-group {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#footerSubscriber input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    height: auto !important;
}

#footerSubscriber input::placeholder {
    color: #64748b !important;
}

#footerSubscriber .btn {
    background: var(--ls-primary) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.2s ease !important;
}

#footerSubscriber .btn:hover {
    background: var(--ls-primary-hover) !important;
    transform: none !important;
}

.copy-right-area {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #090c14 !important;
    /* Even darker footer bottom */
    padding: 24px 0 !important;
}

.copy-right-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copy-right-content span {
    color: #64748b !important;
    font-size: 14px;
}



/* Custom language select */
.custom-lang-select {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 8px 15px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    height: 44px;
}

.footer-widget .social-link a {
    background-color: #fff5f2 !important;
    color: var(--ls-primary) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px !important;
    transition: 0.3s;
}

.footer-widget .social-link a:hover {
    background-color: var(--ls-primary) !important;
    color: var(--ls-white) !important;
}

.footer-widget .info-list li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 15px !important;
}

.footer-widget .info-list li i {
    color: var(--ls-primary) !important;
    font-size: 18px !important;
    margin-right: 15px !important;
    margin-top: 3px !important;
}

/* Fix Header right alignment */
.header-area .side-option {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area .side-option .item {
    margin-right: 0 !important;
}

/* Hero Mockup Collage */
.hero-mockup-wrapper-v2 {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 520px;
    margin: 0 auto;
}

.mockup-collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 2px 5px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 50 !important;
}

/* 1. Main Shop mockup */
.mockup-main-shop {
    width: 72%;
    position: absolute;
    top: 40px;
    left: 14%;
    z-index: 10;
}

.mockup-main-shop .shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 8px;
    font-weight: 700;
}

.mockup-main-shop .shop-logo {
    letter-spacing: 0.5px;
    color: #1e293b;
    font-size: 8px;
    font-weight: 800;
}

.mockup-main-shop .shop-menu {
    display: flex;
    gap: 6px;
    color: #64748b;
}

.mockup-main-shop .shop-menu span {
    font-size: 6px;
    font-weight: 700;
}

.mockup-main-shop .shop-icons {
    color: #1e293b;
    font-size: 8px;
}

.mockup-main-shop .shop-hero {
    display: flex;
    background: #fdfdfd;
    height: 110px;
    overflow: hidden;
}

.mockup-main-shop .shop-hero-text {
    flex: 1.2;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mockup-main-shop .hero-tag {
    font-size: 6.5px;
    color: #ff5a2c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-main-shop .hero-subheading {
    font-size: 10px;
    font-weight: 800;
    margin: 2px 0 3px;
    color: #1e293b;
    line-height: 1.2;
}

.mockup-main-shop .hero-desc {
    font-size: 7px;
    color: #64748b;
    margin-bottom: 5px;
    line-height: 1.3;
}

.mockup-main-shop .shop-now-btn {
    align-self: flex-start;
    background: #1e293b;
    color: #ffffff !important;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 6.5px;
    font-weight: 700;
    text-decoration: none !important;
}

.mockup-main-shop .shop-hero-img {
    width: 38%;
    position: relative;
}

.mockup-main-shop .shop-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mockup-main-shop .shop-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    background: #ffffff;
}

.mockup-main-shop .shop-product-item {
    display: flex;
    flex-direction: column;
}

.mockup-main-shop .prod-img {
    background: #f8fafc;
    border-radius: 4px;
    overflow: hidden;
    height: 38px;
    margin-bottom: 3px;
}

.mockup-main-shop .prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-main-shop .prod-name {
    font-size: 6.5px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-main-shop .prod-price {
    font-size: 6.5px;
    font-weight: 700;
    color: #0f172a;
}

/* 2. Choose Theme mockup */
.mockup-choose-theme {
    width: 34%;
    position: absolute;
    top: 15px;
    left: -2%;
    z-index: 15;
    padding: 10px;
}

.mock-card-title {
    font-size: 8.5px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #1e293b;
}

.theme-previews {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.theme-prev-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 5px;
    padding: 3px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.theme-prev-item.active {
    border-color: #ff5a2c;
    background: #fff5f2;
}

.theme-prev-item img {
    width: 100%;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-prev-name {
    font-size: 5px;
    font-weight: 700;
    color: #64748b;
    margin-top: 3px;
    line-height: 1;
    text-transform: uppercase;
}

.theme-prev-item.active .theme-prev-name {
    color: #ff5a2c;
}

.view-themes-link {
    font-size: 6.5px;
    color: #ff5a2c;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* 3. Subdomain mockup */
.mockup-subdomain {
    width: 36%;
    position: absolute;
    bottom: 130px;
    left: -2%;
    z-index: 15;
    padding: 10px;
}

.subdomain-mock-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 6.5px;
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 4px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

.subdomain-mock-input .prefix {
    color: #94a3b8;
}

.subdomain-mock-input .val {
    color: #0f172a;
    font-weight: 700;
}

.subdomain-mock-input .suffix {
    color: #475569;
}

.subdomain-mock-status {
    font-size: 7.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #10b981;
}

/* 4. Setup Progress mockup */
.mockup-setup-progress {
    width: 32%;
    position: absolute;
    top: 5px;
    right: -2%;
    z-index: 15;
    padding: 10px;
}

.progress-circle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 8px;
}

.progress-pct {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    color: #1e293b;
}

.progress-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-steps-list li {
    font-size: 7px;
    font-weight: 600;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
}

.progress-steps-list li.completed {
    color: #1e293b;
}

.progress-steps-list li.completed i {
    color: #10b981;
}

.progress-steps-list li.active {
    color: #94a3b8;
}

.progress-steps-list li.active i {
    color: #cbd5e1;
}

/* 5. Total Sales mockup */
.mockup-total-sales {
    width: 34%;
    position: absolute;
    bottom: 45px;
    right: -2%;
    z-index: 15;
    padding: 10px;
}

.mock-card-subtitle {
    font-size: 7px;
    color: #64748b;
    font-weight: 600;
}

.sales-value-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1px;
    margin-bottom: 6px;
}

.sales-value {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.sales-trend {
    font-size: 7px;
    font-weight: 700;
    color: #10b981;
}

.sparkline-chart {
    height: 22px;
    margin-bottom: -4px;
}

.sparkline-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.mock-card-subtitle {
    font-size: 7.5px;
    color: #64748b;
    font-weight: 600;
}

.sales-value-wrap {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 1px;
    margin-bottom: 6px;
}

.sales-value {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.sales-trend {
    font-size: 7px;
    font-weight: 700;
    color: #10b981;
}

.sparkline-chart {
    height: 22px;
    margin-bottom: -4px;
}

.sparkline-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Hand-drawn Arrow Decor */
.mockup-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.arrow-curve-down {
    position: absolute;
    bottom: 45px;
    left: 20%;
    transform: rotate(10deg);
}

/* Responsive Scaling for Mockup */
@media (max-width: 1200px) {
    .hero-mockup-wrapper-v2 {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

@media (max-width: 991px) {
    .hero-mockup-wrapper-v2 {
        transform: scale(1);
        max-width: 500px;
        height: 480px;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-mockup-wrapper-v2 {
        transform: scale(0.8);
        transform-origin: center top;
        height: 380px;
    }
}

@media (max-width: 420px) {
    .hero-mockup-wrapper-v2 {
        transform: scale(0.65);
        transform-origin: center top;
        height: 310px;
    }
}

/* Hero Stats Row Grid (5 columns) */
.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.hero-stat-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 10px;
    padding-left: 10px;
}

@media (max-width: 991px) {
    .hero-stat-col {
        flex: 0 0 20%;
        max-width: 20%;
        padding-right: 8px;
        padding-left: 8px;
        margin-bottom: 0;
    }
}

.hero-stat-icon.icon-stores {
    background: #fff5f2;
    color: #ff5a2c;
}

.hero-stat-icon.icon-themes {
    background: #f5f3ff;
    color: #8b5cf6;
}

.hero-stat-icon.icon-uptime {
    background: #ecfdf5;
    color: #10b981;
}

.hero-stat-icon.icon-merchants {
    background: #fffbeb;
    color: #f59e0b;
}

.hero-stat-icon.icon-support {
    background: #fdf2f8;
    color: #ec4899;
}

/* Templates Section & Hover overlay */
.theme-card-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.theme-card-img-wrap .theme-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-card:hover .theme-card-img {
    transform: scale(1.05);
}

.theme-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 35, 53, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.theme-card:hover .theme-card-overlay {
    opacity: 1;
    visibility: visible;
}

.btn-overlay-preview,
.btn-overlay-purchase {
    width: 160px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-overlay-preview {
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid #ffffff;
}

.btn-overlay-preview:hover {
    background: #ffffff;
    color: var(--ls-dark) !important;
    transform: translateY(-2px);
}

.btn-overlay-purchase {
    background: var(--ls-primary);
    color: #ffffff !important;
    border: 1.5px solid var(--ls-primary);
}

.btn-overlay-purchase:hover {
    background: var(--ls-primary-hover);
    border-color: var(--ls-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 44, 0.3);
}

.theme-card-cat-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.badge-fashion {
    background-color: #e0f2fe;
    color: #ffffff;
}

.badge-grocery {
    background-color: #dcfce7;
    color: #000000;
}

.badge-electronics {
    background-color: #f1f5f9;
    color: #ffffff;
}

.badge-beauty {
    background-color: #fce7f3;
    color: #db2777;
}

.badge-default {
    background-color: #f3f4f6;
    color: #4b5563;
}

/* Dotted connections and numbers for How it works */
.step-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--ls-dark);
    margin-bottom: 8px;
    margin-top: 10px;
}

/* Subdomain Check banner styling */
.subdomain-check-container {
    flex-grow: 1;
}

.subdomain-input-group {
    display: flex;
    background: var(--ls-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.subdomain-input-group .domain-prefix {
    padding: 15px 10px 15px 20px;
    background: #f8fafc;
    color: #94a3b8;
    font-weight: 500;
    border-right: 1px solid var(--ls-border);
    font-size: 15px;
    user-select: none;
}

.subdomain-input-group input {
    border: none;
    padding: 15px 15px;
    flex-grow: 1;
    font-size: 15px;
    outline: none;
    font-weight: 600;
    color: var(--ls-dark);
}

.subdomain-input-group .domain-ext {
    padding: 15px 20px;
    background: #f8fafc;
    color: var(--ls-gray-dark);
    font-weight: 600;
    border-left: 1px solid var(--ls-border);
    font-size: 15px;
}

.subdomain-input-group button {
    background: var(--ls-primary);
    color: var(--ls-white);
    border: none;
    padding: 0 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    flex-shrink: 0 !important;
}

.subdomain-input-group button:hover {
    background: var(--ls-primary-hover);
}

.subdomain-status-msg {

    font-weight: 600;
    padding-left: 5px;
}

.subdomain-status-msg.text-success {
    color: #22c55e !important;
}

.subdomain-status-msg.text-danger {
    color: #ef4444 !important;
}

.subdomain-status-msg.text-warning {
    color: #eab308 !important;
}

.subdomain-status-msg.text-info {
    color: #3b82f6 !important;
}

@media (max-width: 991px) {
    .subdomain-input-group {
        flex-direction: row !important;
        width: 100% !important;
    }

    .subdomain-input-group .domain-prefix {
        padding: 12px 10px !important;
        font-size: 13px !important;
    }

    .subdomain-input-group input {
        padding: 12px 10px !important;
        font-size: 13px !important;
    }

    .subdomain-input-group .domain-ext {
        padding: 12px 10px !important;
        font-size: 13px !important;
    }

    .subdomain-input-group button {
        padding: 12px 15px !important;
        font-size: 13px !important;
        width: auto !important;
    }
}

@media (max-width: 576px) {
    .subdomain-input-group .domain-prefix {
        display: none !important;
    }

    .subdomain-input-group {
        border-radius: 8px !important;
    }

    .subdomain-input-group button {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }

    .subdomain-input-group input {
        font-size: 12px !important;
    }

    .subdomain-input-group .domain-ext {
        font-size: 12px !important;
        padding: 10px 6px !important;
    }
}

/* Custom UI Polishes for Professional Look */
.feature-box {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s ease !important;
}

.feature-box:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-5px) !important;
    border-color: rgba(255, 90, 44, 0.15) !important;
}

.testimonial-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-5px) !important;
    border-color: rgba(255, 90, 44, 0.15) !important;
}

.pricing-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-5px) !important;
}

.pricing-card.popular {
    border: 2px solid var(--ls-primary) !important;
    box-shadow: 0 10px 30px rgba(255, 90, 44, 0.06) !important;
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 40px rgba(255, 90, 44, 0.12) !important;
}

.theme-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    border: 2px solid #cbd5e1 !important;
    /* Clear distinct outline/border */
    transition: all 0.3s ease !important;
    border-radius: 16px !important;
    /* Ensures rounded corners on the card border */
    overflow: hidden !important;
}

.theme-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-6px) !important;
    border-color: var(--color-primary, #ff5a2c) !important;
    /* Highlights brand color on hover */
}

/* Responsive styling for "How It Works" steps */
@media (max-width: 991px) {
    .steps-container {
        flex-direction: column !important;
        gap: 45px !important;
        align-items: center !important;
        position: relative !important;
    }

    .steps-line {
        display: block !important;
        position: absolute !important;
        top: 40px !important;
        bottom: 40px !important;
        left: 50% !important;
        right: auto !important;
        width: 4px !important;
        height: auto !important;
        background: #e2e8f0 !important;
        border-radius: 4px !important;
        border-top: none !important;
        border-left: none !important;
        z-index: 0 !important;
        transform: translateX(-50%) !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease;
    }

    .steps-line-fill {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        height: 0%;
        background: linear-gradient(180deg, #ff5a2c, #ff9f43, #ff5a2c) !important;
        background-size: 100% 200% !important;
        box-shadow: 0 0 10px rgba(255, 90, 44, 0.8), 0 0 20px rgba(255, 90, 44, 0.4) !important;
        animation: laserGlowVertical 1s linear infinite !important;
        border-radius: 4px !important;
        border-top: none !important;
        border-left: none !important;
        transition: height 0.1s linear !important;
    }

    .step-item {
        width: 100% !important;
        max-width: 320px !important;
    }

    .step-desc {
        line-height: 1.2 !important;
    }
}

/* Brands Infinite Marquee */
.brands-marquee {
    overflow: hidden;
    user-select: none;
    display: flex;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.brands-marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 39s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 60px;
    padding-right: 60px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-item img:hover {
    opacity: 1;
    filter: none;
}

/* SVG inline brand logos — same greyscale/opacity treatment as img logos */
.brand-item-svg {
    padding: 0 10px;
    cursor: default;
}

.brand-item-svg svg {
    height: 32px;
    width: auto;
    max-width: 130px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    display: block;
}

.brand-item-svg:hover svg {
    opacity: 1;
    filter: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Slider Tweaks */
.testimonials-slider {
    padding-bottom: 50px !important;
    overflow: hidden;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--ls-primary) !important;
    width: 24px;
    border-radius: 5px;
}

/* Pricing Section Custom active tab states */
#pricing-tabs .nav-link {
    color: var(--ls-dark);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #ff5a2c !important;
}

/* Comprehensive Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
    .hero-wrapper {
        padding: 20px 0 50px !important;
    }

    .hero-wrapper .row.align-items-center {
        display: flex !important;
        flex-direction: column !important;
        margin-top: 20px !important;
    }

    .hero-wrapper .col-lg-5,
    .hero-wrapper .col-lg-7,
    .hero-wrapper .hero-content {
        display: contents !important;
    }

    .hero-wrapper .hero-badge {
        order: 1 !important;
        margin: 70px auto 12px !important;
        display: inline-flex !important;
    }

    .hero-wrapper .hero-title {
        order: 2 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .hero-wrapper .hero-mockup-wrapper {
        order: 4 !important;
        margin-bottom: 25px !important;
        width: 100% !important;
        transform: none !important;
        margin-right: 0 !important;
        text-align: center !important;
    }

    .hero-wrapper .hero-text {
        order: 3 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-wrapper .hero-btns {
        order: 5 !important;
        margin-bottom: 25px !important;
        justify-content: center !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    .hero-wrapper .hero-features {
        order: 6 !important;
        justify-content: center !important;
    }

    .templates-section,
    .how-it-works,
    .pricing-section,
    .features-grid,
    .testimonials-section {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 35px !important;
    }

    .subdomain-inner {
        flex-direction: column !important;
        padding: 30px 20px !important;
    }

    .subdomain-inner .d-flex {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        margin-bottom: 25px !important;
    }

    .subdomain-inner .subdomain-title-icon {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
    }

    .subdomain-inner .subdomain-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    .theme-filters {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding: 5px 15px 12px !important;
        margin: 0 -15px 25px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .theme-filters::-webkit-scrollbar {
        display: none;
    }

    .theme-filter-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    .hero-text {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .hero-stats-banner {
        padding: 20px 10px !important;
        margin-top: 40px !important;
        overflow: hidden !important;
    }

    .hero-stats-banner .hero-stats-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        gap: 20px !important;
        margin: 0 !important;
        animation: stats-marquee 8s linear infinite alternate !important;
        /* Sped up from 16s to 8s */
        padding: 5px 0 !important;
        will-change: transform;
    }

    .hero-stats-banner .hero-stat-col {
        flex: 0 0 145px !important;
        max-width: 145px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-stats-banner .hero-stats-row:hover,
    .hero-stats-banner .hero-stats-row:active {
        animation-play-state: paused !important;
    }

    /* Contact Page mobile text size overrides */
    .contact-hero-title {
        font-size: 38px !important;
    }

    .contact-hero-desc {
        font-size: 16.5px !important;
    }

    .contact-info-card .card-details h4 {
        font-size: 17px !important;
    }

    .contact-info-card .card-details p {
        font-size: 15px !important;
    }

    .contact-info-card .card-details .sub-label {
        font-size: 13px !important;
    }

    .form-group-custom label {
        font-size: 15px !important;
    }

    .form-group-custom .form-control {
        font-size: 15px !important;
    }

    .bottom-cta {
        padding: 50px 0 !important;
    }

    .bottom-cta-inner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .cta-title {
        font-size: 28px !important;
    }

    .cta-text {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }

    .cta-btns {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 34px !important;
    }

    .hero-content .d-flex {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100%;
    }

    .hero-content .btn-ls-primary,
    .hero-content .btn-ls-outline {
        width: 100% !important;
        padding: 14px 20px !important;
        text-align: center;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        margin-top: 25px !important;
    }

    .hero-features span {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-btns {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .cta-btns .btn-ls-primary,
    .cta-btns .btn-ls-outline {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }
}

/* 1. Mobile Actions Li Hide on Desktop */
@media (min-width: 1200px) {
    .mobile-menu-actions-li {
        display: none !important;
    }
}

/* 2. Subdomain check availability styling fixes */
.subdomain-input-group {
    width: 100% !important;
    max-width: 650px !important;
}

@media (max-width: 991px) {
    .subdomain-inner {
        align-items: stretch !important;
    }

    .subdomain-check-container {
        width: 100% !important;
        margin-top: 15px !important;
    }

    .subdomain-input-group {
        width: 100% !important;
        max-width: 100% !important;
    }

    .subdomain-status-msg {
        text-align: center !important;
        margin-top: 10px !important;
    }
}

/* 3. Testimonial cards visual enhancements for 5-column layout */
@media (min-width: 1200px) {
    .testimonial-card {
        padding: 20px 15px !important;
    }

    .testi-header {
        margin-bottom: 12px !important;
    }

    .testi-header img {
        width: 40px !important;
        height: 40px !important;
        margin-right: 8px !important;
    }

    .testi-name {
        font-size: 13.5px !important;
        line-height: 1.2 !important;
    }

    .testi-designation {
        font-size: 11px !important;
    }

    .testi-text {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .testi-stars {
        font-size: 12px !important;
        margin-top: 10px !important;
    }
}

/* 4. Section Overflow Fixes for Mobile View Right-Side Gap */
.hero-wrapper,
.templates-section,
.how-it-works,
.pricing-section,
.features-grid,
.subdomain-banner,
.testimonials-section,
.brands-banner,
.bottom-cta,
.footer-area {
    overflow-x: hidden !important;
}

/* 5. Popup Modern Offer styling */
.popup-modern-offer {
    max-width: 900px !important;
    margin: 30px auto !important;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.popup-modern-content {
    display: flex;
    width: 100%;
}

.popup-modern-left {
    width: 42%;
    background-color: #fef6f0;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.popup-modern-right {
    width: 58%;
    background: #ffffff;
    padding: 30px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
}

/* Left Column styling */
.modern-left-logo {
    font-size: 18px;
    color: #1e2335;
}

.modern-left-logo i {
    color: #ff5a2c;
}

.modern-left-logo span {
    color: #ff5a2c;
}

.modern-browser-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.modern-browser-mockup .browser-header {
    background: #f8fafc;
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #f1f5f9;
}

.modern-browser-mockup .browser-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #10b981;
}

.modern-browser-mockup .browser-body {
    padding: 12px;
}

.mock-store-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.mock-store-nav .mock-logo {
    font-size: 10px;
    font-weight: 800;
    color: #1e2335;
}

.mock-store-nav .mock-links {
    display: flex;
    gap: 8px;
    font-size: 8px;
    color: #64748b;
    font-weight: 600;
}

.mock-store-nav .mock-icons {
    font-size: 8px;
    color: #1e2335;
    display: flex;
    gap: 6px;
}

.mock-store-banner {
    display: flex;
    background: #fafaf9;
    border-radius: 6px;
    padding: 12px 10px;
    gap: 10px;
    margin-bottom: 10px;
}

.mock-banner-text {
    flex: 1;
}

.mock-banner-text .badge {
    font-size: 6px;
    background: #fff5f2;
    color: #ff5a2c;
    padding: 2px 4px;
    border-radius: 4px;
    margin-bottom: 4px;
    display: inline-block;
}

.mock-banner-text h4 {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
}

.mock-btn {
    background: #ff5a2c;
    color: #ffffff;
    border: none;
    font-size: 7px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.mock-banner-img {
    width: 65px;
    height: 65px;
}

.mock-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.mock-store-sellers h5 {
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 6px;
}

.mock-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.mock-prod-card {
    display: flex;
    flex-direction: column;
}

.mock-prod-card .prod-img-box {
    background: #f8fafc;
    border-radius: 4px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.mock-prod-card .name {
    font-size: 6px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-prod-card .price {
    font-size: 6px;
    font-weight: 800;
    color: #0f172a;
}

.modern-left-subdomain {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.modern-left-subdomain .subdomain-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fff5f2;
    color: #ff5a2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 10px;
}

.modern-left-subdomain .subdomain-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-left-subdomain .subdomain-text .title {
    font-size: 8px;
    color: #64748b;
    font-weight: 600;
}

.modern-left-subdomain .subdomain-text .domain {
    font-size: 10px;
    color: #1e2335;
    font-weight: 800;
}

.modern-left-subdomain .check-icon {
    color: #10b981;
    font-size: 14px;
}

/* Right Column styling */
.modern-offer-badge {
    display: inline-flex;
    align-items: center;
    background: #fff5f2;
    color: #ff5a2c;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 90, 44, 0.1);
    align-self: center !important;
}

.modern-offer-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e2335;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    text-align: center !important;
    align-self: center !important;
}

.modern-offer-title span {
    color: #ff5a2c;
    position: relative;
    display: inline-block;
}

.modern-offer-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff5a2c;
    border-radius: 2px;
    opacity: 0.8;
}

.modern-offer-desc {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: center !important;
    align-self: center !important;
}

.modern-offer-ribbon {
    background: #fff5f2;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #ff5a2c;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 90, 44, 0.05);
    width: 100%;
}

.modern-offer-ribbon .divider {
    color: #ffc6b5;
}

.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 12px;
    width: 100%;
}

.m-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: left;
}

.m-feat-item i {
    font-size: 16px;
    color: #475569;
}

.m-feat-item div {
    display: flex;
    flex-direction: column;
}

.m-feat-item div strong {
    font-size: 11px;
    color: #1e2335;
    font-weight: 700;
    line-height: 1.2;
}

.m-feat-item div span {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

.modern-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    width: 100%;
}

.modern-cta-buttons .btn-ls-primary,
.modern-cta-buttons .btn-ls-outline {
    flex: 1;
    padding: 12px 15px !important;
    font-size: 14px !important;
}

.modern-bottom-notice {
    font-size: 11px;
    color: #64748b;
    text-align: center;
    font-weight: 500;
}

.modern-bottom-notice span {
    color: #ff5a2c;
    font-weight: 700;
}

/* Close button custom styling inside MagnificPopup */
.popup-modern-offer .mfp-close {
    color: #1e2335 !important;
    font-size: 28px !important;
    top: 10px !important;
    right: 10px !important;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.popup-modern-offer .mfp-close:hover {
    opacity: 1;
}

/* Timer Override */
.popup-modern-offer .syotimer__body {
    display: flex !important;
    justify-content: space-between !important;
    max-width: 100% !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
}

.popup-modern-offer .syotimer-cell {
    flex: 1 !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 10px 8px !important;
    text-align: center !important;
    margin: 0 6px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
}

.popup-modern-offer .syotimer-cell:not(:last-child) {
    position: relative;
}

.popup-modern-offer .syotimer-cell:not(:last-child)::after {
    content: ":";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    color: #ff5a2c;
}

.popup-modern-offer .syotimer-cell__value {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #ff5a2c !important;
    line-height: 1 !important;
    height: auto !important;
    margin-bottom: 4px !important;
}

.popup-modern-offer .syotimer-cell__unit {
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
}

/* Mobile responsive styling for modern popup */
@media (max-width: 768px) {
    .popup-modern-content {
        flex-direction: column;
    }

    .popup-modern-left {
        display: none !important;
    }

    .popup-modern-right {
        width: 100%;
        padding: 25px;
    }

    .modern-offer-title {
        font-size: 32px;
    }

    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .modern-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* 6. Pricing Page Redesign styling */
.modern-pricing-page-wrapper {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1e2335;
}

.custom-pricing-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.custom-pricing-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.custom-pricing-breadcrumb .breadcrumb-item a:hover {
    color: #ff5a2c;
}

.custom-pricing-breadcrumb .breadcrumb-item.active {
    color: #1e2335;
    font-weight: 600;
}

.custom-pricing-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #cbd5e1;
    font-weight: 400;
}

/* Hero Section */
.pricing-hero-row {
    padding-top: 20px;
}

.pricing-plan-badge {
    display: inline-block;
    color: #ff5a2c;
    background: #fff5f2;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 50px;
    border: 1px solid rgba(255, 90, 44, 0.1);
}

.pricing-hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #1e2335;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pricing-hero-title span {
    color: #ff5a2c;
}

.pricing-hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 480px;
}

.pricing-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    padding: 6px 12px;
    border-radius: 50px;
}

.trust-pill i {
    color: #10b981;
    font-size: 14px;
}

/* Dashboard Mockup */
.pricing-dashboard-mockup-wrapper {
    position: relative;
    padding: 20px 0;
}

.mockup-bg-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 90, 44, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.pricing-dashboard-mockup {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    display: flex;
    overflow: visible;
    z-index: 2;
    aspect-ratio: 1.6;
    max-width: 540px;
    width: 100% !important;
    margin: 0 auto;
}

.mockup-sidebar {
    width: 25%;
    border-right: 1px solid #f1f5f9;
    background: #fafafa;
    border-radius: 16px 0 0 16px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-sidebar-header {
    padding-left: 8px;
    font-size: 16px;
    color: #ff5a2c;
}

.mockup-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-sidebar-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
}

.mockup-sidebar-menu li.active {
    background: #fff5f2;
    color: #ff5a2c;
}

.mockup-sidebar-menu li i {
    font-size: 10px;
    width: 12px;
}

.mockup-main {
    width: 75%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.stat-label {
    display: block;
    font-size: 8px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 2px;
}

.stat-value {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #1e2335;
    margin-bottom: 2px;
}

.stat-growth {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 7px;
    font-weight: 700;
}

.stat-growth.success {
    color: #10b981;
}

.mockup-chart-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.chart-title {
    font-size: 9px;
    font-weight: 700;
    color: #1e2335;
}

.chart-filter {
    font-size: 8px;
    color: #64748b;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
}

.chart-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-svg {
    width: 100%;
    height: 70px;
}

.chart-months {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    color: #94a3b8;
    font-weight: 600;
    padding-top: 4px;
}

.mockup-floating-growth {
    position: absolute;
    right: -25px;
    bottom: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 3px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: floatUpDown 6s ease-in-out infinite;
}

.growth-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.growth-info {
    display: flex;
    flex-direction: column;
}

.growth-title {
    font-size: 7px;
    color: #64748b;
    font-weight: 600;
}

.growth-pct {
    font-size: 12px;
    font-weight: 800;
    color: #10b981;
    line-height: 1.1;
}

.growth-sub {
    font-size: 6px;
    color: #94a3b8;
    font-weight: 500;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Pricing Toggle Pill Switch */
.pricing-toggle-area .toggle-container {
    display: inline-block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.pricing-toggle-area .nav-pills .nav-link {
    border-radius: 50px !important;
    padding: 8px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    background: transparent !important;
    position: relative;
    overflow: visible;
}

.pricing-toggle-area .nav-pills .nav-link.active {
    background: #ff5a2c !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(255, 90, 44, 0.2);
}

.badge-best-value {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5a2c;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(255, 90, 44, 0.3);
    pointer-events: none;
    z-index: 10;
}

/* Give toggle container extra top padding so badge doesn't clip over sibling tab */
.pricing-toggle-area .toggle-container {
    padding-top: 14px !important;
}

.toggle-subtext {
    font-size: 13px;
    font-weight: 600;
    color: #ff5a2c;
    margin-top: 8px;
}

/* Pricing Cards */
.pricing-card-modern {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 25px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.pricing-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.pricing-card-modern.popular {
    border: 2px solid #ff5a2c;
    box-shadow: 0 20px 40px rgba(255, 90, 44, 0.05);
}

.pricing-card-modern.enterprise {
    background: #fafafa;
}

.pricing-card-modern.expanded {
    border-color: rgba(255, 90, 44, 0.28);
    box-shadow: 0 18px 40px rgba(255, 90, 44, 0.08);
}

.card-ribbon-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff5a2c;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 90, 44, 0.25);
}

.card-header-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header-block .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.card-header-block .icon-circle.starter {
    background: #fff5f2;
    color: #ff5a2c;
}

.card-header-block .icon-circle.growth {
    background: #eff6ff;
    color: #3b82f6;
}

.card-header-block .icon-circle.scale {
    background: #fef3c7;
    color: #d97706;
}

.card-header-block .icon-circle.enterprise {
    background: #f1f5f9;
    color: #475569;
}

.card-header-block .title-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1e2335;
    margin: 0 0 2px 0;
}

.card-header-block .title-info .subtitle {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    margin: 0;
}

.price-section {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.price-section .currency-symbol {
    font-size: 20px;
    font-weight: 700;
    color: #1e2335;
    margin-right: 2px;
}

.price-section .price-value {
    font-size: 36px;
    font-weight: 800;
    color: #1e2335;
    letter-spacing: -1px;
    line-height: 1;
}

.price-section .period {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-left: 4px;
}

.price-section.custom-price .price-value {
    font-size: 32px;
}

.billing-subtext {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

/* ================================================
   PRICING CARDS - COMPLETELY REDESIGNED
   ================================================ */

.features-list-block {
    flex-grow: 1;
    margin-bottom: 24px;
}

.features-list-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-list-block ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
    padding: 7px 0;
    border-bottom: 1px solid #f3f4f6;
}

.features-list-block ul li:last-child {
    border-bottom: none;
}

.features-list-block ul li .check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 9px;
    background: #dcfce7;
    color: #16a34a;
}

.pricing-card-modern.popular .features-list-block ul li .check-icon {
    background: #fff0eb;
    color: #ff5a2c;
}

.features-list-block ul li.disabled {
    color: #9ca3af;
    font-weight: 400;
}

.features-list-block ul li.disabled .far.fa-circle {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 9px;
    background: #f3f4f6;
    color: #d1d5db;
}

/* ---- Solid orange circle checkmarks (matching screenshot) ---- */
.feat-check-circle {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--ls-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
    flex-shrink: 0;
}

/* Custom cross/times circle style (matching tick styling) */
.feat-check-circle.times {
    background: #fee2e2;
    /* Light red/rose background */
    color: #ef4444;
    /* Strong red color */
}

.feat-check-circle.muted {
    background: #e5e7eb;
    color: #9ca3af;
}

.feat-check-circle.detail {
    background: #f3f4f6;
    color: #94a3b8;
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 8px;
}

/* Popular card orange circles are slightly more vibrant */
.pricing-card-modern.popular .feat-check-circle {
    box-shadow: 0 2px 6px rgba(255, 90, 44, 0.3);
}

/* Pricing Card Popular Solid Orange style */
.pricing-card-modern.popular {
    border: 2px solid #ff5a2c !important;
}

.pricing-card-modern.popular .pricing-title {
    color: #1e2335 !important;
}

.pricing-card-modern.popular .pricing-desc {
    color: #64748b !important;
}

.pricing-card-modern.popular .pricing-price {
    color: #1e2335 !important;
}

.pricing-card-modern.popular .pricing-price span {
    color: #64748b !important;
}

.pricing-card-modern.popular .pricing-feature-toggle {
    color: var(--ls-primary) !important;
}

.pricing-card-modern.popular .pricing-features-extra ul li span,
.pricing-card-modern.popular .features-list-block ul li span {
    color: #374151 !important;
}

.pricing-card-modern.popular .feat-check-circle {
    background: #ff5a2c !important;
    color: #ffffff !important;
}

.pricing-card-modern.popular .feat-check-circle.times {
    background: #fee2e2 !important;
    color: #ef4444 !important;
}

.pricing-card-modern.popular .card-btn-action .btn-orange-outline {
    background: #ffffff !important;
    color: #ff5a2c !important;
    border: 1px solid #ff5a2c !important;
}

.pricing-card-modern.popular .card-btn-action .btn-orange-outline:hover {
    background: #ff5a2c !important;
    color: #ffffff !important;
    border-color: #ff5a2c !important;
}

/* ---- "+ N more" text link style (matching screenshot) ---- */
/* Show More toggle */
.pricing-feature-more {
    margin-top: 4px;
    margin-bottom: 18px;
    border-top: 1px dashed #e5e7eb;
}

.pricing-feature-toggle {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--ls-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    letter-spacing: 0.1px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
    text-decoration: none;
}

.pricing-feature-toggle:hover {
    opacity: 0.75;
    background: transparent;
    color: var(--ls-primary);
    box-shadow: none;
    transform: none;
}

.pricing-card-modern.expanded .pricing-feature-toggle {
    background: transparent;
    color: var(--ls-gray);
}

/* Extra features expanded panel */
.pricing-features-extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, transform 0.35s ease;
    will-change: max-height, opacity, transform;
}

.pricing-card-modern.expanded .pricing-features-extra {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
}
#btn-toggle-compare-rows {
    transition: all 0.25s ease;
    position: relative;
}

#btn-toggle-compare-rows:hover {
    transform: translateY(-2px);
}

#btn-toggle-compare-rows i {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Compare hidden rows — hidden by JS on load (.hide() sets inline display:none) */
/* No !important here — jQuery inline styles must be able to override this */
#compare-features-hidden-rows.compare-rows-hidden {
    display: none;
}

/* Animate the rows when revealed */
#compare-features-hidden-rows tr {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes compareFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#compare-features-hidden-rows tr {
    animation: compareFadeIn 0.35s ease both;
}

.pricing-features-extra ul {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-features-extra ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
    padding: 5px 0;
    border-bottom: 1px solid #f9fafb;
}

.pricing-features-extra ul li:last-child {
    border-bottom: none;
}

.pricing-features-extra ul li .check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 9px;
    background: #fff0eb;
    color: #ff5a2c;
    margin-top: 1px;
}

.pricing-feature-detail {
    background: #f8fafc;
    border-radius: 6px;
    padding: 4px 10px 4px 28px;
    margin: 2px 0;
    font-size: 11.5px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-feature-detail .check-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 7px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trust Banner Highlights */
.pricing-highlights-row {
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff5f2;
    color: #ff5a2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.highlight-item .text-box {
    display: flex;
    flex-direction: column;
}

.highlight-item .text-box strong {
    font-size: 11px;
    font-weight: 700;
    color: #1e2335;
    line-height: 1.2;
}

.highlight-item .text-box span {
    font-size: 9px;
    color: #64748b;
    font-weight: 500;
}

/* Feature Comparison Table */
.compare-features-section {
    padding: 20px 0;
}

.compare-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.compare-table th {
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    padding: 16px 12px;
    font-size: 15px;
    font-weight: 800;
    color: #1e2335;
}

.compare-table td {
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.compare-table tr:hover td {
    background: #fafafa;
}

.compare-table th.highlight-column-header {
    border-bottom: 2px solid #ff5a2c;
    background: #fef6f0;
}

.compare-table td.highlight-column {
    background: #fef6f0;
    border-left: 1px dashed rgba(255, 90, 44, 0.15);
    border-right: 1px dashed rgba(255, 90, 44, 0.15);
}

.compare-table tr:hover td.highlight-column {
    background: #fff0ea;
}

.compare-table th .highlight-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
}

.check-green {
    color: #10b981;
    font-size: 15px;
}

/* FAQ Accordion */
.pricing-faq-section {
    padding: 20px 0;
}

.faq-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01) !important;
}

.faq-item .accordion-button {
    background: #ffffff !important;
    color: #1e2335 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 16px 20px !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    color: #ff5a2c !important;
    background: #fff5f2 !important;
}

.faq-item .accordion-body {
    padding: 16px 20px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
    background: #ffffff !important;
}

/* Footer CTA Card */
.pricing-footer-cta-card {
    background: linear-gradient(135deg, #fff7f4 0%, #fef1eb 100%);
    border: 1px solid #ffe3d8;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(255, 90, 44, 0.03);
}

.cta-store-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #ff5a2c;
    position: relative;
    flex-shrink: 0;
}

.cta-store-icon .roof-span {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 15px;
    border-bottom: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
}

.cta-store-icon .window-span {
    position: absolute;
    bottom: 12px;
    left: 20px;
    width: 20px;
    height: 12px;
    border: 2px solid #ffffff;
    border-bottom: none;
}

.cta-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e2335;
    margin: 0 0 6px 0;
}

.cta-text p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
}

.cta-buttons-wrapper .cta-btn-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-buttons-wrapper .btn-white-outline {
    background: #ffffff;
    color: #1e2335;
    border: 1px solid #e2e8f0;
}

.cta-buttons-wrapper .btn-white-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.cta-buttons-wrapper .btn-subtext {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 4px;
}

/* Mobile Responsiveness Override */
@media (max-width: 991px) {
    .pricing-hero-row {
        text-align: center;
    }

    .pricing-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-trust-pills {
        justify-content: center;
    }

    .pricing-dashboard-mockup-wrapper {
        margin-top: 40px;
    }

    .pricing-highlights-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-footer-cta-card {
        padding: 30px 20px;
        text-align: center;
    }

    .pricing-footer-cta-card .cta-buttons-wrapper {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .mockup-floating-growth {
        right: 10px !important;
        bottom: 10px !important;
        padding: 6px 10px !important;
    }

    .compare-table th,
    .compare-table td {
        white-space: nowrap !important;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        position: sticky;
        left: 0;
        background: #ffffff;
        z-index: 10;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 576px) {
    .pricing-hero-title {
        font-size: 32px;
    }

    .pricing-dashboard-mockup {
        font-size: 80%;
    }

    .mockup-sidebar span {
        display: none;
    }

    .mockup-sidebar {
        width: 15%;
    }

    .mockup-main {
        width: 85%;
    }

    .pricing-card-modern {
        padding: 20px 15px;
    }

    .compare-table th {
        font-size: 12px;
        padding: 10px 6px;
    }

    .compare-table td {
        font-size: 11px;
        padding: 8px 6px;
    }

    .pricing-toggle-area .nav-pills .nav-link {
        padding: 6px 16px !important;
        font-size: 12px !important;
    }

    .badge-best-value {
        top: -12px;
        font-size: 7px;
    }

    .faq-item .accordion-button {
        padding: 12px 15px !important;
        font-size: 13px !important;
    }

    .faq-item .accordion-body {
        padding: 12px 15px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .pricing-footer-cta-card .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .pricing-footer-cta-card .cta-buttons-wrapper .cta-btn-block {
        width: 100%;
    }

    .pricing-footer-cta-card .cta-buttons-wrapper .cta-btn-block .btn-pricing-action {
        width: 100%;
    }

    .pricing-footer-cta-card .cta-buttons-wrapper .cta-btn-block.ms-3 {
        margin-left: 0 !important;
    }
}

/* 7. Contact Page Redesign styling */
.modern-contact-page-wrapper {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1e2335;
}

.custom-contact-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.custom-contact-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.custom-contact-breadcrumb .breadcrumb-item a:hover {
    color: #ff5a2c;
}

.custom-contact-breadcrumb .breadcrumb-item.active {
    color: #1e2335;
    font-weight: 600;
}

.custom-contact-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #cbd5e1;
    font-weight: 400;
}

/* Contact Hero */
.contact-hero-row {
    padding-top: 20px;
}

.contact-hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #1e2335;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-hero-title span {
    color: #ff5a2c;
}

.contact-hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
    max-width: 480px;
}

.contact-trust-pill-banner .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ff5a2c;
    background: #fff5f2;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 90, 44, 0.1);
}

/* Devices Collage Mockup */
.contact-device-collage-wrapper {
    position: relative;
    padding: 30px 0;
}

.collage-bg-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 90, 44, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.css-device-collage {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
    z-index: 2;
}

.collage-laptop {
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: 320px;
    z-index: 2;
}

.laptop-screen {
    background: #0f172a;
    border: 8px solid #334155;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 1.6;
    padding: 10px;
    overflow: hidden;
}

.screen-dashboard-preview {
    background: #ffffff;
    height: 100%;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar-chart-preview {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 70px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 5px;
    justify-content: center;
}

.bar-chart-preview span {
    width: 16px;
    background: #ff5a2c;
    border-radius: 2px 2px 0 0;
    opacity: 0.85;
}

.store-dashboard-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.store-dashboard-header .circ {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5a2c;
}

.store-dashboard-header .line {
    height: 6px;
    width: 40px;
    background: #cbd5e1;
    border-radius: 3px;
}

.laptop-base {
    background: #475569;
    height: 8px;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #334155;
    border-radius: 0 0 4px 4px;
}

.collage-phone {
    position: absolute;
    top: 30px;
    right: 60px;
    width: 110px;
    background: #0f172a;
    border: 5px solid #1e293b;
    border-radius: 18px;
    aspect-ratio: 0.5;
    padding: 6px;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    background: #ffffff;
    height: 100%;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone-checkout-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.phone-checkout-preview .chk-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff5f2;
    color: #ff5a2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.phone-checkout-preview .chk-bar {
    width: 80%;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
}

.phone-checkout-preview .chk-bar.short {
    width: 50%;
}

.phone-checkout-preview .chk-btn {
    width: 100%;
    background: #ff5a2c;
    color: #ffffff;
    border: none;
    font-size: 8px;
    font-weight: 700;
    padding: 4px;
    border-radius: 4px;
    margin-top: 5px;
}

.collage-bag {
    position: absolute;
    bottom: 25px;
    right: 140px;
    width: 90px;
    z-index: 4;
    transform: rotate(-10deg);
    animation: floatBag 4s ease-in-out infinite;
}

.bag-body {
    background: #ff5a2c;
    border-radius: 8px;
    padding: 10px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 10px 25px rgba(255, 90, 44, 0.25);
    height: 80px;
}

.bag-body i {
    font-size: 18px;
}

.bag-logo {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.bag-handle {
    width: 40px;
    height: 20px;
    border: 3px solid #ff5a2c;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes floatBag {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-8px) rotate(-8deg);
    }
}

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.contact-info-card .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info-card .icon-circle.phone {
    background: #fff5f2;
    color: #ff5a2c;
}

.contact-info-card .icon-circle.email {
    background: #eff6ff;
    color: #3b82f6;
}

.contact-info-card .icon-circle.address {
    background: #fef3c7;
    color: #d97706;
}

.contact-info-card .icon-circle.support {
    background: #ecfdf5;
    color: #10b981;
}

.contact-info-card .card-details h4 {
    font-size: 15px;
    font-weight: 800;
    color: #1e2335;
    margin: 0 0 10px 0;
}

.contact-info-card .card-details p {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 4px 0;
}

.contact-info-card .card-details p a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-card .card-details p a:hover {
    color: #ff5a2c;
}

.contact-info-card .card-details .sub-label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 8px;
}

/* Contact Message Form */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e2335;
    margin: 0 0 6px 0;
}

.form-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-custom label {
    font-size: 12px;
    font-weight: 700;
    color: #1e2335;
}

.form-group-custom .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group-custom .input-wrapper .icon {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
}

.form-group-custom .input-wrapper .form-control {
    padding: 10px 15px 10px 42px !important;
    border-radius: 8px !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 13px !important;
    color: #1e2335 !important;
    background: #ffffff !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    height: auto !important;
}

.form-group-custom .input-wrapper .form-control:focus {
    border-color: #ff5a2c !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.1) !important;
    outline: none !important;
}

.form-group-custom .input-wrapper .form-select-custom {
    cursor: pointer;
}

/* Center the select's displayed value and ensure cross-browser consistency */
.form-group-custom .input-wrapper .form-select-custom {
    text-align: center !important;
    -moz-text-align-last: center !important;
    text-align-last: center !important;
    /* reduce left padding so centering aligns visually with the icon */
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.form-group-custom .textarea-custom {
    padding: 12px 15px !important;
    border-radius: 8px !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 13px !important;
    color: #1e2335 !important;
    background: #ffffff !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
}

.form-group-custom .textarea-custom:focus {
    border-color: #ff5a2c !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.1) !important;
}

.notice-text {
    font-size: 12px;
    font-weight: 500;
}

/* Booking Widget */
.booking-consultation-card {
    background: linear-gradient(135deg, #fffcfb 0%, #fef6f2 100%);
    border: 1px solid #ffe3d8;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(255, 90, 44, 0.02);
    position: relative;
}

.booking-consultation-card .card-top-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ff5a2c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.booking-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e2335;
    margin: 0 0 6px 0;
    max-width: 80%;
}

.booking-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.booking-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.booking-highlights li i {
    color: #ff5a2c;
    font-size: 13px;
}

/* Calendar Widget */
.calendar-mock-widget {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 5px;
}

.calendar-header .month-label {
    font-size: 12px;
    font-weight: 800;
    color: #1e2335;
}

.calendar-header .prev-month,
.calendar-header .next-month {
    color: #94a3b8;
    font-size: 10px;
    cursor: pointer;
}

.weekday-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 8px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.days-grid span {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.days-grid span:hover:not(.empty) {
    background: #f1f5f9;
}

.days-grid span.active-day {
    background: #ff5a2c;
    color: #ffffff;
    font-weight: 700;
}

.time-picker-block label {
    font-size: 10px;
    font-weight: 700;
    color: #1e2335;
}

/* Highlights Banner */
.contact-highlights-banner {
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Success Helper Section */
.success-help-section {
    padding: 20px 0;
}

.success-help-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.success-help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.success-help-card .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.success-help-card .icon-box.orange {
    background: #fff5f2;
    color: #ff5a2c;
}

.success-help-card .icon-box.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.success-help-card .icon-box.red {
    background: #fef2f2;
    color: #ef4444;
}

.success-help-card .icon-box.green {
    background: #ecfdf5;
    color: #10b981;
}

.success-help-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: #1e2335;
    margin: 0 0 8px 0;
}

.success-help-card p {
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Responsiveness overrides */
@media (max-width: 991px) {
    .contact-hero-row {
        text-align: center;
    }

    .contact-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-device-collage-wrapper {
        margin-top: 40px;
    }

    .contact-highlights-banner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .collage-laptop {
        left: 20px;
        width: 280px;
    }

    .collage-phone {
        right: 30px;
        width: 100px;
    }

    .collage-bag {
        right: 100px;
        width: 80px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 32px;
    }

    .css-device-collage {
        height: 240px;
        font-size: 80%;
    }

    .collage-laptop {
        width: 220px;
    }

    .collage-phone {
        width: 80px;
        top: 20px;
        right: 15px;
    }

    .collage-bag {
        width: 65px;
        height: 60px;
        right: 70px;
    }

    .bag-body {
        height: 60px;
    }

    .bag-body i {
        font-size: 14px;
    }

    .contact-form-card {
        padding: 25px 20px;
    }
}


/* =========================================================
   PRICING PAGE - MISSING BUTTON & CARD ACTION STYLES
   ========================================================= */

/* Pricing action buttons */
.btn-pricing-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-orange-filled {
    background: linear-gradient(135deg, #ff7a50 0%, #ff5a2c 100%) !important;
    color: #ffffff !important;
    border-color: #ff5a2c !important;
    box-shadow: 0 4px 15px rgba(255, 90, 44, 0.25);
}

.btn-orange-filled:hover {
    background: linear-gradient(135deg, #ff5a2c 0%, #e0451a 100%) !important;
    box-shadow: 0 8px 24px rgba(255, 90, 44, 0.35);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-orange-outline {
    background: transparent !important;
    color: #ff5a2c !important;
    border-color: #ff5a2c !important;
}

.btn-orange-outline:hover {
    background: #ff5a2c !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(255, 90, 44, 0.25);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent !important;
    color: #1e2335 !important;
    border: 2px solid #e2e8f0 !important;
}

.btn-outline-dark:hover {
    background: #1e2335 !important;
    color: #ffffff !important;
    border-color: #1e2335 !important;
    transform: translateY(-2px);
}

/* Card action area */
.card-btn-action {
    margin-top: auto;
}

.trial-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    margin-top: 10px;
    margin-bottom: 0;
}

.btn-subtext {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 6px;
}

/* Popular card enhancements */
.pricing-card-modern.popular {
    background: linear-gradient(180deg, #fff8f5 0%, #ffffff 40%) !important;
}

.pricing-card-modern.popular .card-btn-action .btn-pricing-action {
    box-shadow: 0 6px 20px rgba(255, 90, 44, 0.3);
}

/* Enterprise card */
.pricing-card-modern.enterprise {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%);
    border: 1px solid #e2e8f0;
}

/* Pricing card overall hover glow */
.pricing-card-modern:not(.popular):hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    border-color: #d1d5db;
}

.pricing-card-modern.popular:hover {
    box-shadow: 0 20px 50px rgba(255, 90, 44, 0.15) !important;
    transform: translateY(-6px);
}

/* Pricing cards container spacing */
.tab-pane .row.g-4>[class*='col-'] {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* =========================================================
   IMPROVED HEADER STICKY BEHAVIOR
   ========================================================= */
.header-area {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    transition: box-shadow 0.3s ease !important;
}

.header-area.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* =========================================================
   PRICING PAGE - SECTION PADDING REFINEMENTS
   ========================================================= */
.modern-pricing-page-wrapper {
    padding-top: 30px;
}

.pricing-toggle-area {
    padding-top: 20px;
}

/* Pricing plan badge with gradient */
.pricing-plan-badge {
    background: linear-gradient(135deg, #fff0eb, #fff5f2) !important;
    border: 1px solid rgba(255, 90, 44, 0.15) !important;
}

/* =========================================================
   HERO SECTION - POLISH
   ========================================================= */
.hero-wrapper {
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 90, 44, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(255, 90, 44, 0.04) 0%, transparent 60%),
        #ffffff !important;
}

/* Badge with subtle animation */
@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 90, 44, 0.15);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 90, 44, 0);
    }
}

.hero-badge {
    animation: badgePulse 3s ease-in-out infinite;
}

/* =========================================================
   SECTION DIVIDERS & BACKGROUNDS
   ========================================================= */
.templates-section {
    padding: 20px 0 60px;
}

.how-it-works {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%) !important;
}

.features-grid {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

/* Feature box icon colors */
.feature-icon {
    background: linear-gradient(135deg, #fff0eb 0%, #fff5f2 100%) !important;
    color: var(--ls-primary) !important;
}

/* =========================================================
   RESPONSIVE FIXES
   ========================================================= */
@media (max-width: 991px) {
    .pricing-highlights-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (max-width: 576px) {
    .btn-pricing-action {
        padding: 12px 16px;
        font-size: 13px;
    }

    .pricing-card-modern {
        padding: 20px 16px !important;
    }
}

/* =========================================================
   SHOPS DIRECTORY REDESIGN STYLES
   ========================================================= */
.shops-hero {
    background: #ffffff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.shops-hero-content {
    max-width: 580px;
    position: relative;
    z-index: 10;
}

.shops-hero-badge {
    text-transform: uppercase;
    color: #ff5a2c;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.shops-hero-title {
    /* font-size: 52px; */
    font-weight: 800;
    color: #0e1b3d;
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.shops-hero-title span {
    color: #ff5a2c;
}

.shops-hero-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.shops-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-shops-primary {
    background: #ff5a2c;
    color: #ffffff !important;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 90, 44, 0.35);
    text-decoration: none !important;
}

.btn-shops-primary:hover {
    background: #e0481d;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 44, 0.45);
}

.btn-shops-outline {
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #0e1b3d !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-shops-outline:hover {
    border-color: #0e1b3d;
    background: #f8fafc;
    color: #0e1b3d !important;
    transform: translateY(-2px);
}

.shops-hero-features {
    display: flex;
    gap: 24px;
    color: #64748b;
    font-size: 14px;
    flex-wrap: wrap;
}

.shops-hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shops-hero-features i {
    color: #22c55e;
}

.shops-hero-mockup-wrapper {
    position: relative;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shops-mockup-frame {
    position: absolute;
    border-radius: 12px;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 40px rgba(14, 27, 61, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #f8fafc;
}

.shops-mockup-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.frame-1 {
    width: 330px;
    height: 230px;
    left: 8%;
    top: 2%;
    z-index: 1;
    transform: rotate(-6deg);
}

.frame-2 {
    width: 320px;
    height: 420px;
    right: 2%;
    top: 2%;
    z-index: 2;
    transform: rotate(4deg);
}

.frame-3 {
    width: 380px;
    height: 270px;
    left: 16%;
    top: 38%;
    z-index: 4;
    box-shadow: 0 25px 50px rgba(14, 27, 61, 0.15);
}

.frame-4 {
    width: 170px;
    height: 260px;
    left: 8%;
    bottom: 0%;
    z-index: 3;
    transform: rotate(-10deg);
}

.shops-hero-mockup-wrapper:hover .frame-1 {
    transform: rotate(-2deg) translate(-10px, -5px);
}

.shops-hero-mockup-wrapper:hover .frame-2 {
    transform: rotate(2deg) translate(10px, -5px);
}

.shops-hero-mockup-wrapper:hover .frame-3 {
    transform: translateY(-8px) scale(1.02);
}

.shops-hero-mockup-wrapper:hover .frame-4 {
    transform: rotate(-5deg) translate(-5px, 5px);
}

@media (max-width: 1199px) {
    .shops-hero {
        padding-top: 110px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 991px) {
    .shops-hero {
        padding-top: 115px !important;
        padding-bottom: 50px !important;
    }

    .shops-hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .shops-hero-btns {
        justify-content: center;
    }

    .shops-hero-features {
        justify-content: center;
    }

    .shops-hero-mockup-wrapper {
        margin-top: 50px;
        min-height: 320px;
    }

    .frame-1 {
        width: 180px;
        height: 130px;
        left: 15%;
    }

    .frame-2 {
        width: 180px;
        height: 230px;
        right: 10%;
    }

    .frame-3 {
        width: 200px;
        height: 150px;
        left: 25%;
        top: 30%;
    }

    .frame-4 {
        display: none;
    }
}

/* Stats Banner */
.shops-stats-banner-row {
    background: #fffcfb;
    border-radius: 16px;
    border: 1px solid #ffe8e2;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(255, 90, 44, 0.04);
    margin-bottom: 60px;
}

.shops-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
}

.shops-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.shops-stat-icon.orange {
    background: #fff0eb;
    color: #ff5a2c;
}

.shops-stat-icon.red {
    background: #fff1f2;
    color: #f43f5e;
}

.shops-stat-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.shops-stat-icon.green {
    background: #f0fdf4;
    color: #22c55e;
}

.shops-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #0e1b3d;
    line-height: 1.2;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.shops-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 991px) {
    .shops-stats-banner-row {
        margin-bottom: 40px;
        padding: 12px;
    }
}

/* Category filter tabs */
.shops-filter-search {
    margin-bottom: 30px;
}

.shops-select-custom {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    color: #475569;
    padding: 0 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #ffffff;
    width: 100%;
}

.shops-select-custom:focus {
    border-color: #ff5a2c;
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.1);
    outline: none;
}

.shops-search-input-wrapper {
    position: relative;
    width: 100%;
}

.shops-search-input {
    width: 100%;
    padding-left: 45px;
    border-radius: 8px;
    height: 48px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.shops-search-input:focus {
    border-color: #ff5a2c;
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.1);
    outline: none;
}

.shops-search-icon-pos {
    position: absolute;
    left: 16px;
    top: 14px;
    color: #94a3b8;
    font-size: 16px;
}

.shops-category-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 2px 15px;
    margin-bottom: 40px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.shops-category-tabs-container::-webkit-scrollbar {
    display: none;
}

.shops-category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569 !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    margin-right: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shops-category-tab:hover {
    border-color: #ff5a2c;
    color: #ff5a2c !important;
    background: #fffcfb;
    transform: translateY(-1px);
}

.shops-category-tab.active {
    background: #ff5a2c;
    border-color: #ff5a2c;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 90, 44, 0.25);
}

/* 5-Column Grid */
.shops-grid-cols-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 1440px) {
    .shops-grid-cols-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .shops-grid-cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .shops-grid-cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .shops-grid-cols-5 {
        grid-template-columns: 1fr;
    }
}

/* Modern Card Layout */
.shop-card-modern {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #cbd5e1;
    /* Clear distinct outline/border */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 27, 61, 0.08);
    border-color: var(--color-primary, #ff5a2c) !important;
    /* Highlights brand color on hover */
}

.shop-card-banner {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.shop-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.shop-card-modern:hover .shop-card-banner img {
    transform: scale(1.05);
}

.shop-card-logo-container {
    position: absolute;
    top: 130px;
    left: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.shop-card-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.shop-card-body {
    padding: 38px 16px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shop-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.shop-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #0e1b3d;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
}

.shop-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #0e1b3d;
    flex-shrink: 0;
}

.shop-card-rating i {
    color: #eab308;
}

.shop-card-meta {
    margin-bottom: 12px;
}

.shop-card-category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

.cat-beauty {
    background: #faf5ff;
    color: #a855f7;
}

.cat-grocery {
    background: #f0fdf4;
    color: #22c55e;
}

.cat-fashion {
    background: #fdf2f8;
    color: #ec4899;
}

.cat-kids {
    background: #fef2f2;
    color: #ef4444;
}

.cat-jewellery {
    background: #fffbeb;
    color: #f59e0b;
}

.cat-multipurpose {
    background: #f0f9ff;
    color: #0ea5e9;
}

.cat-electronics {
    background: #ecfeff;
    color: #06b6d4;
}

.cat-furniture {
    background: #fff7ed;
    color: #f97316;
}

.cat-default {
    background: #f1f5f9;
    color: #64748b;
}

.shop-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.shop-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.shop-card-actions .btn-preview {
    flex: 1;
    text-align: center;
    background: #ff5a2c;
    color: #ffffff !important;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: 1px solid #ff5a2c;
}

.shop-card-actions .btn-preview:hover {
    background: #e0481d;
    border-color: #e0481d;
}

.shop-card-actions .btn-theme {

    text-align: center;
    background: #ffffff;
    color: #475569 !important;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.shop-card-actions .btn-theme:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #1e293b !important;
}

/* Featured Merchants */
.shops-featured-merchants {
    padding: 40px 0;
    background: #fffcfb;
    border-top: 1px solid #f1f5f9;
}

.shops-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0e1b3d;
    margin-bottom: 8px;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.shops-section-desc {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
}

.merchant-profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.merchant-profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.03);
    border-color: #e2e8f0;
}

.merchant-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ffe8e2;
}

.merchant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merchant-info {
    display: flex;
    flex-direction: column;
}

.merchant-name {
    font-size: 15px;
    font-weight: 700;
    color: #0e1b3d;
    margin: 0;
}

.merchant-role {
    font-size: 12px;
    color: #ff5a2c;
    font-weight: 600;
    margin-bottom: 6px;
}

.merchant-quote {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
}

.btn-merchant-stories {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0e1b3d !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.btn-merchant-stories:hover {
    border-color: #0e1b3d;
    background: #f8fafc;
}

/* Testimonials */
.shops-loved-by-merchants {
    padding: 40px 0;
    background: #ffffff;
    text-align: center;
}

.testimonial-modern-card {
    background: #fffcfb;
    border: 1px solid #ffe8e2;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(255, 90, 44, 0.02);
    text-align: left;
    height: 100%;
}

.testimonial-stars {
    color: #eab308;
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-quote-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.testimonial-author-name {
    font-size: 14px;
    font-weight: 700;
    color: #0e1b3d;
}

.testimonial-author-role {
    font-size: 12px;
    color: #64748b;
}

/* Why Choose Section */
.shops-why-choose {
    padding: 40px 0;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-item {
    text-align: left;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.why-choose-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.why-choose-icon-box.orange {
    background: #fff0eb;
    color: #ff5a2c;
}

.why-choose-icon-box.red {
    background: #fff1f2;
    color: #f43f5e;
}

.why-choose-icon-box.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.why-choose-icon-box.green {
    background: #f0fdf4;
    color: #22c55e;
}

.why-choose-title {
    font-size: 15px;
    font-weight: 700;
    color: #0e1b3d;
    margin-bottom: 8px;
}

.why-choose-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Footer CTA Block */
.shops-footer-cta-block {
    background: #0b1530;
    border-radius: 24px;
    padding: 60px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    margin-bottom: 80px;
    box-shadow: 0 20px 50px rgba(11, 21, 48, 0.25);
}

.shops-footer-cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.shops-footer-cta-desc {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 500px;
}

.shops-footer-cta-features {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 24px;
    flex-wrap: wrap;
}

.shops-footer-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shops-footer-cta-features i {
    color: #ff5a2c;
}

.shops-footer-cta-graphic {
    position: absolute;
    right: 50px;
    bottom: -20px;
    width: 400px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.shops-footer-cta-graphic img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .shops-footer-cta-block {
        padding: 40px 24px;
        text-align: center;
    }

    .shops-footer-cta-desc {
        margin: 0 auto 32px;
    }

    .shops-footer-cta-features {
        justify-content: center;
    }

    .shops-footer-cta-graphic {
        display: none;
    }
}

/* Contact Page Quotes Widget Style */
.quote-slide-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
    position: relative;
}

.quote-slide-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 90, 44, 0.06);
    border-color: #ffd5c6;
}

.quote-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffe3d8;
    flex-shrink: 0;
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-author-meta {
    display: flex;
    flex-direction: column;
}

.quote-author-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e2335;
}

.quote-author-title {
    font-size: 11px;
    color: #ff5a2c;
    font-weight: 600;
}

.quote-card-body-text {
    position: relative;
}

.quote-text-p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* Force uniform height on all text inputs under input-wrapper */
.form-group-custom .input-wrapper .form-control {
    height: 42px !important;
}

/* Make sure icons are positioned above the input backgrounds */
.form-group-custom .input-wrapper .icon {
    z-index: 2 !important;
}

/* Fix nice-select styling inside custom form fields */
.form-group-custom .input-wrapper .nice-select.form-control {
    width: 100% !important;
    height: 42px !important;
    line-height: 40px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    text-align: center !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 13px !important;
    color: #1e2335 !important;
    font-weight: 500 !important;
    float: none !important;
    display: inline-block !important;
}

.form-group-custom .input-wrapper .nice-select.form-control:after {
    right: 18px !important;
    border-color: #64748b !important;
    margin-top: -4px !important;
}

.form-group-custom .input-wrapper .nice-select.form-control .current {
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center !important;
}

/* Nice select placeholder visual treatment */
.form-group-custom .input-wrapper .nice-select.form-control.placeholder-selected .current {
    color: #94a3b8 !important;
}

/* Add focus styles to nice-select to match text fields */
.form-group-custom .input-wrapper .nice-select.form-control:focus,
.form-group-custom .input-wrapper .nice-select.form-control.open {
    border-color: #ff5a2c !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.1) !important;
}

.form-group-custom .input-wrapper .nice-select .list {
    width: 100% !important;
    border-radius: 8px !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* ==========================================================================
   Modern Templates Page Styles
   ========================================================================== */
.modern-templates-page-wrapper {
    background: #fafbfe;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.templates-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #ff5a2c;
    background: rgba(255, 90, 44, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.templates-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #0e1b3d;
    line-height: 1.2;
    margin-bottom: 18px;
}

.templates-hero-title span {
    color: #ff5a2c;
    position: relative;
    display: inline-block;
}

.templates-hero-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 30px;
}

/* Filter bar and search custom box */
.templates-filter-section {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(14, 27, 61, 0.03);
}

.search-box-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box-custom .search-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
}

.search-box-custom .form-control {
    height: 44px !important;
    padding-left: 46px !important;
    padding-right: 16px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    background: #f8fafc !important;
    color: #1e293b !important;
    transition: all 0.2s ease !important;
}

.search-box-custom .form-control:focus {
    border-color: #ff5a2c !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.1) !important;
}

.templates-tabs-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    /* Firefox */
}

.templates-tabs-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.templates-tabs-wrapper .tab-btn {
    white-space: nowrap;
    background: #f1f5f9;
    border: none;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.templates-tabs-wrapper .tab-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.templates-tabs-wrapper .tab-btn.active {
    background: #0e1b3d;
    color: #ffffff;
}

/* Template Cards Grid */
.template-card-modern {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    /* Clear distinct outline/border */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 27, 61, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.template-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(14, 27, 61, 0.08);
    border-color: var(--color-primary, #ff5a2c) !important;
    /* Highlights brand color on hover */
}

.card-image-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.card-image-wrap .image-viewport {
    display: block;
    height: 100%;
    width: 100%;
}

.card-image-wrap .scrolling-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 15s cubic-bezier(0.1, 0.2, 0.1, 1) !important;
    transform-origin: top;
}

.template-card-modern:hover .scrolling-img {
    transform: translateY(calc(-100% + 260px));
}

/* Badges for categories */
.category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-grocery {
    background: #22c55e !important;
}

.badge-multi {
    background: #6366f1 !important;
}

.badge-fashion {
    background: #ec4899 !important;
}

.badge-electronics {
    background: #3b82f6 !important;
}

.badge-beauty {
    background: #f43f5e !important;
}

.badge-others {
    background: #64748b !important;
}

/* Card Body */
.card-body-wrap {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-theme-title {
    font-size: 18px;
    font-weight: 800;
    color: #0e1b3d;
    margin-bottom: 16px;
}

.template-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.template-highlights li {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.template-highlights li i {
    font-size: 14px;
}

.card-divider {
    border: 0;
    border-top: 1px solid #f1f5f9;
    margin: 0 0 20px 0;
}

.card-action-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.btn-template-action {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    flex: 1;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.btn-template-action.outline-btn {
    border: 1px solid #cbd5e1;
    color: #475569;
    background: #ffffff;
}

.btn-template-action.outline-btn:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #0f172a;
}

.btn-template-action.primary-btn {
    background: #ff5a2c;
    color: #ffffff;
    border: 1px solid #ff5a2c;
}

.btn-template-action.primary-btn:hover {
    background: #e0481d;
    border-color: #e0481d;
    color: #ffffff;
}

/* How It Works section */
.template-how-it-works-section {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(14, 27, 61, 0.02);
}

.how-works-card {
    text-align: center;
    padding: 20px;
    height: 100%;
}

.how-works-card .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 90, 44, 0.08);
    color: #ff5a2c;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(255, 90, 44, 0.15);
}

.how-works-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0e1b3d;
    margin-bottom: 12px;
}

.how-works-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Mid-grid custom banner styling */
.templates-mid-banner {
    background: linear-gradient(135deg, #0e1b3d 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #1e293b;
    box-shadow: 0 15px 35px rgba(14, 27, 61, 0.1);
}

/* Add a glowing ambient background effect on the banner */
.templates-mid-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 44, 0.15) 0%, rgba(255, 90, 44, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.templates-mid-banner .banner-content {
    position: relative;
    z-index: 2;
}

.templates-mid-banner .banner-badge {
    background: rgba(255, 90, 44, 0.15);
    color: #ff5a2c;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.templates-mid-banner h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.templates-mid-banner p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.btn-banner-action {
    background: #ff5a2c;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    border: 1px solid #ff5a2c;
    display: inline-block;
    text-decoration: none !important;
    position: relative;
    z-index: 2;
}

.btn-banner-action:hover {
    background: #e0481d;
    border-color: #e0481d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 44, 0.3);
}

@media (max-width: 991px) {
    .templates-mid-banner {
        padding: 30px;
        text-align: center !important;
    }

    .templates-mid-banner .banner-content {
        text-align: center !important;
    }

    .btn-banner-action {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

/* FAQ Accordion Styling */
.template-faq-section {
    max-width: 850px;
    margin: 100px auto 20px auto;
}

.faq-accordion-custom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-custom {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(14, 27, 61, 0.02);
    transition: all 0.25s ease;
    overflow: hidden;
}

.faq-item-custom:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(14, 27, 61, 0.04);
}

.faq-item-custom.active {
    border-color: rgba(255, 90, 44, 0.3);
    box-shadow: 0 10px 25px rgba(255, 90, 44, 0.05);
}

.faq-question-custom {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #0e1b3d;
    user-select: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.faq-question-custom span {
    padding-right: 20px;
}

.faq-question-custom:hover {
    color: #ff5a2c;
}

.faq-question-custom .faq-arrow {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item-custom.active .faq-question-custom {
    color: #ff5a2c;
}

.faq-item-custom.active .faq-arrow {
    transform: rotate(180deg);
    color: #ff5a2c;
}

.faq-answer-custom {
    padding: 0 28px;
    display: none;
    /* Controlled by jQuery slideToggle */
}

.faq-answer-custom p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 22px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

@media (max-width: 767px) {
    .faq-question-custom {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-answer-custom {
        padding: 0 20px;
    }

    .faq-answer-custom p {
        padding-bottom: 18px;
        font-size: 13.5px;
    }
}

/* Mobile Glassmorphic Capsule Header Override */
@media (max-width: 1199px) {

    /* Lock body scroll when mobile menu is active */
    html:has(a.meanclose),
    body:has(a.meanclose) {
        overflow: hidden !important;
        height: 100vh !important;
    }

    .modern-templates-page-wrapper {
        padding-top: 110px !important;
    }

    /* Style the main header wrapper to float fixed on top of the viewport */
    .header-area,
    .header-inner-page {
        position: fixed !important;
        top: 15px !important;
        left: 0 !important;
        width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        z-index: 1000 !important;
        padding: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Keep the same styling when sticky */
    .header-area.is-sticky {
        position: fixed !important;
        top: 15px !important;
        background: transparent !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        padding: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Ensure the hero wrapper has enough padding-top so content is not hidden under the fixed capsule */
    .hero-wrapper {
        padding-top: 80px !important;
        border-top: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }

    /* Set main responsive navigation background transparent and strip borders/shadows */
    .header-area .main-responsive-nav,
    .main-responsive-nav {
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Convert the menu bar container into a beautiful glassmorphic capsule */
    .header-area .main-responsive-nav .main-responsive-menu {
        background: rgba(255, 255, 255, 0.25) !important;
        backdrop-filter: blur(12px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
        border: 1px solid rgb(0 0 0 / 30%) !important;
        border-radius: 30px !important;
        padding: 8px 24px !important;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08) !important;
        -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08) !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 60px !important;
        width: calc(100% - 30px) !important;
        margin: 0 auto !important;
        z-index: 10000 !important;
    }

    /* When the mobile menu drawer is open, disable the capsule's background, border, shadow, and backdrop-filter to prevent blurring the drawer and reveal button children */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container:has(a.meanclose) {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }

    /* Style the logo inside the capsule */
    .header-area .main-responsive-nav .main-responsive-menu .logo {
        position: absolute !important;
        left: 24px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        max-width: 130px !important;
        display: flex !important;
        align-items: center !important;
        z-index: 10 !important;
        padding: 0 !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu .logo img {

        width: auto !important;
        object-fit: contain !important;
    }

    /* Reset meanmenu outer bar position */
    .mean-container .mean-bar,
    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-bar {
        background: transparent !important;
        padding: 0 !important;
        position: static !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }

    /* Hide the mean-push spacer completely to prevent layout gaps or line artifacts */
    .mean-container .mean-push {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }

    /* Hamburger toggle button - orange square (Mockup 2) */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container a.meanmenu-reveal {
        background:
            linear-gradient(to bottom,
                #ffffff 0px, #ffffff 2.5px,
                transparent 2.5px, transparent 6.5px,
                #ffffff 6.5px, #ffffff 9px,
                transparent 9px, transparent 13px,
                #ffffff 13px, #ffffff 15.5px) no-repeat center/20px 15.5px,
            var(--color-primary, #ff5a2c) !important;
        border-radius: 12px !important;
        width: 42px !important;
        height: 42px !important;
        right: 24px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        padding: 0 !important;
        box-shadow: 0 4px 12px rgba(255, 90, 44, 0.3) !important;
        -webkit-box-shadow: 0 4px 12px rgba(255, 90, 44, 0.3) !important;
        transition: all 0.2s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100000 !important;
        text-decoration: none !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu.mean-container a.meanmenu-reveal:hover {
        background:
            linear-gradient(to bottom,
                #ffffff 0px, #ffffff 2.5px,
                transparent 2.5px, transparent 6.5px,
                #ffffff 6.5px, #ffffff 9px,
                transparent 9px, transparent 13px,
                #ffffff 13px, #ffffff 15.5px) no-repeat center/20px 15.5px,
            var(--color-primary2, #e0451a) !important;
        transform: translateY(-50%) scale(1.05) !important;
        box-shadow: 0 6px 16px rgba(255, 90, 44, 0.4) !important;
    }

    /* Style for the Close 'X' character inside the reveal button */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container a.meanmenu-reveal.meanclose {
        background: var(--color-primary, #ff5a2c) !important;
        /* Remove gradient when showing close X */
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 18px !important;
        line-height: 1 !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu.mean-container a.meanmenu-reveal.meanclose:hover {
        background: var(--color-primary2, #e0451a) !important;
        transform: translateY(-50%) scale(1.05) !important;
        box-shadow: 0 6px 16px rgba(255, 90, 44, 0.4) !important;
    }

    /* Hide the inner spans completely to avoid nesting/overlap bugs */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container a.meanmenu-reveal span {
        display: none !important;
    }

    /* Dropdown menu card styled as right-to-left sidebar drawer */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 100% !important;
        height: 100vh !important;
        margin-top: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 99999 !important;
        padding-top: 80px !important;

        /* Smooth CSS drawer transition on open and close */
        display: block !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Show drawer when meanmenu is open */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container:has(a.meanclose) .mean-nav {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Adjust nav height and scroll style */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav .navbar-nav {
        height: auto !important;
        max-height: 380px !important;
        overflow-y: auto !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        background: transparent !important;
        padding: 12px 0 !important;
    }

    /* Navigation links inside dropdown */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a {
        background: transparent !important;
        color: #0e1b3d !important;
        font-weight: 600 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding: 14px 24px !important;
        transition: all 0.2s ease !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li:first-child>a {
        border-top: none !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a:hover {
        background: rgba(255, 90, 44, 0.05) !important;
        color: var(--color-primary, #ff5a2c) !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
        color: var(--color-primary, #ff5a2c) !important;
    }

    /* Expand / Collapse submenu trigger buttons */
    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
        border-top: none !important;
        height: 28px !important;
        width: 28px !important;
        padding: 0 !important;
        line-height: 28px !important;
        text-align: center !important;
        top: 10px !important;
        right: 15px !important;
        background: rgba(0, 0, 0, 0.03) !important;
        border-radius: 50% !important;
        color: #0e1b3d !important;
    }

    .header-area .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.mean-expand:hover {
        background: rgba(255, 90, 44, 0.1) !important;
        color: var(--color-primary, #ff5a2c) !important;
    }

    /* Mobile menu action button layout inside Meanmenu */
    .mobile-menu-actions-li {
        padding: 15px 20px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        display: block !important;
    }

    .menu-action-item-wrapper {
        display: flex !important;
        gap: 12px !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }

    .menu-action-item-wrapper .menu-action-item {
        flex: 1 1 0% !important;
    }

    .menu-action-item-wrapper .menu-action-item a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 12px 10px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        text-align: center !important;
        border: 2px solid transparent !important;
        text-decoration: none !important;
        float: none !important;
        box-sizing: border-box !important;
    }

    .menu-action-item-wrapper .menu-action-item a.btn-ls-primary {
        background: var(--ls-primary, #ff5a2c) !important;
        color: #ffffff !important;
        border-color: var(--ls-primary, #ff5a2c) !important;
        box-shadow: 0 4px 12px rgba(255, 90, 44, 0.2) !important;
    }

    .menu-action-item-wrapper .menu-action-item a.btn-ls-outline {
        border-color: var(--ls-primary, #ff5a2c) !important;
        color: var(--ls-primary, #ff5a2c) !important;
        background: transparent !important;
    }

    /* Dim overlay when mobile menu drawer is open */
    .mean-container:has(a.meanclose)::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        /* background: rgba(0, 0, 0, 0.4) !important; */
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        /* z-index: 99998 !important; */
        animation: fadeIn 0.3s ease-in-out forwards !important;
    }

    /* Style the mobile menu footer information and social links inside the drawer */
    .mean-container .mean-nav .mobile-menu-footer {
        display: block !important;
        padding: 30px 24px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        background: #ffffff !important;
        float: left !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .mean-container .mean-nav .mobile-menu-footer h3 {
        font-size: 14px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        color: #0e1b3d !important;
        margin-top: 25px !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }

    .mean-container .mean-nav .mobile-menu-footer h3:first-child {
        margin-top: 0 !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .info-list {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        float: none !important;
        width: 100% !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .info-list li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        font-size: 14px !important;
        color: #4a5568 !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
        float: none !important;
        width: 100% !important;
        border: none !important;
        padding: 0 !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .info-list li i {
        color: var(--color-primary, #ff5a2c) !important;
        font-size: 16px !important;
        margin-top: 3px !important;
        width: 16px !important;
        text-align: center !important;
        display: inline-block !important;
        float: none !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .info-list li span {
        display: inline !important;
        float: none !important;
        color: #4a5568 !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .info-list li span a {
        color: #4a5568 !important;
        text-decoration: none !important;
        padding: 0 !important;
        border: none !important;
        display: inline !important;
        float: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        width: auto !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .info-list li span a:hover {
        color: var(--color-primary, #ff5a2c) !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .social-links {
        display: flex !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
        margin-top: 10px !important;
        float: none !important;
        width: 100% !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .social-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        background: #f1f5f9 !important;
        border-radius: 50% !important;
        color: #475569 !important;
        font-size: 16px !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
        border: none !important;
        padding: 0 !important;
        float: none !important;
    }

    .mean-container .mean-nav .mobile-menu-footer .social-links a:hover {
        background: var(--color-primary, #ff5a2c) !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Stats Marquee Keyframes */
@keyframes stats-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% + 100vw - 50px));
    }
}

/* Contact Highlights Banner grid styles */
.contact-highlights-banner {
    background: #fafafa !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
}

@media (max-width: 991px) {
    .contact-highlights-banner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (max-width: 768px) {
    .contact-highlights-banner .highlight-item .text-box strong {
        font-size: 14px !important;
    }

    .contact-highlights-banner .highlight-item .text-box span {
        font-size: 12px !important;
    }

    .contact-highlights-banner .highlight-item .icon-box {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .contact-highlights-banner {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .pricing-trust-pills {
        display: none !important;
    }
}

/* ==========================================
   Signup Split Screen Redesign & Plan Picker
   ========================================== */

/* Page Overrides for signup */
.signup-split-area {
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.signup-split-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #eef2f6;
    width: 100%;
}

.signup-illustration-wrapper {

    height: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.signup-illustration {
    max-height: 480px;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.signup-form-card {
    padding: 50px;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.signup-form-card .title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.signup-form-card .title p {
    font-size: 15px;
    color: #64748b;
}

/* Plan Switcher Card */
.selected-plan-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.selected-plan-card:hover {
    border-color: #cbd5e1;
}

.plan-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.plan-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.plan-price-term {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.btn-change-plan {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-change-plan:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
}

.plan-picker-panel {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
    margin-top: 8px;
}

.plan-option-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-option-item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.plan-option-item.active {
    border-color: var(--ls-primary, #FF5A2C);
    background: rgba(255, 90, 44, 0.03);
    box-shadow: 0 0 0 1px var(--ls-primary, #FF5A2C);
}

.plan-opt-name {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}

.plan-opt-price {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

/* Plan Toggle (Trial vs Regular) */
.plan-opt-type-toggle {
    border-top: 1px dashed #e2e8f0;
    padding-top: 8px;
}

.toggle-btn-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    gap: 4px;
    margin: 0;
}

.toggle-btn-label input {
    margin: 0;
    accent-color: var(--ls-primary, #FF5A2C);
}

/* Form Control Improvements */
.signup-form-card .form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 10px 18px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.signup-form-card .form-control:focus {
    border-color: var(--ls-primary, #FF5A2C);
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.1);
    color: #1f2937;
}

/* Subdomain Helper wrapper */
#subdomain-helper-wrapper {
    background: rgba(255, 90, 44, 0.04);
    border-left: 3px solid var(--ls-primary, #FF5A2C);
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .signup-illustration-wrapper {
        min-height: auto;
        padding: 30px;
    }

    .signup-form-card {
        padding: 30px 20px;
    }

    .signup-split-area {
        padding: 120px 0 60px 0 !important;
    }
}

@media (max-width: 576px) {
    .signup-form-card {
        padding: 24px 16px;
    }

    .signup-split-area {
        padding: 110px 0 40px 0 !important;
    }

    .signup-form-card .title h3 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .signup-form-card .title p {
        font-size: 13px;
    }

    .selected-plan-card {
        padding: 12px 14px;
    }

    .plan-title {
        font-size: 16px;
    }

    .plan-price-term {
        font-size: 13px;
    }
}

/* ==========================================
   SweetAlert2 Custom Styling for Soft Curves
   ========================================== */
.swal2-popup {
    border-radius: 20px !important;
    padding: 35px 24px !important;
    box-shadow: 0 20px 50px rgba(14, 27, 61, 0.12) !important;
    border: 1px solid #eef2f6 !important;
}

.swal2-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #1e2335 !important;
    margin-top: 15px !important;
}

.swal2-html-container {
    font-family: 'Inter', sans-serif !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin-top: 15px !important;
}

.swal2-confirm {
    border-radius: 10px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    box-shadow: 0 4px 12px rgba(255, 90, 44, 0.2) !important;
    transition: all 0.2s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(255, 90, 44, 0.3) !important;
}

.swal2-timer-progress-bar {
    background: #ff5a2c !important;
    height: 4px !important;
    border-bottom-left-radius: 20px !important;
}

#swal-timer {
    background: #fff5f2;
    color: #ff5a2c;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    margin: 0 4px;
}

@keyframes laserGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes laserGlowVertical {
    0% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 50% 200%;
    }
}

/* =========================================================
   FORCE REMOVE ALL SCROLLBARS INSIDE TEMPLATE SECTIONS
   ========================================================= */
.templates-section,
.templates-section *,
#templates,
#templates *,
.modern-templates-page-wrapper,
.modern-templates-page-wrapper *,
.theme-card,
.theme-card *,
.card-image-wrap,
.card-image-wrap *,
.image-viewport,
.image-viewport * {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.templates-section::-webkit-scrollbar,
.templates-section *::-webkit-scrollbar,
#templates::-webkit-scrollbar,
#templates *::-webkit-scrollbar,
.modern-templates-page-wrapper::-webkit-scrollbar,
.modern-templates-page-wrapper *::-webkit-scrollbar,
.theme-card::-webkit-scrollbar,
.theme-card *::-webkit-scrollbar,
.card-image-wrap::-webkit-scrollbar,
.card-image-wrap *::-webkit-scrollbar,
.image-viewport::-webkit-scrollbar,
.image-viewport *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* Hide mobile menu footer details on desktop */
.mobile-menu-footer {
    display: none !important;
}

/* ==========================================================================
   Sameer Request Style Changes (Black borders on pricing, mobile font/gaps)
   ========================================================================== */

/* 4. Pricing plans need a border in black */
.pricing-card-modern {
    border: 2px solid #000000 !important;
}

/* 6. Custom talk to sales btn right side need a wp icon with msg (Interested with CUSTOM Plan) */
.btn-whatsapp-sales {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #ffffff !important;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-whatsapp-sales:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* 7. WhatsApp & chatbot LEFT side, scroll-to-top RIGHT side — see consolidated rules at bottom of file */
.go-top {
    left: auto !important;
    right: 18px !important;
    bottom: 22px !important;
    border-radius: 12px !important;
}


/* 9. In contact page need a whatsapp chat with us btn */
.btn-whatsapp-chat-page {
    background-color: #25d366 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
    text-decoration: none !important;
}

.btn-whatsapp-chat-page:hover {
    background-color: #128c7e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3) !important;
    color: #ffffff !important;
}

/* 10. 14 day free trial text bigger in plans */
.trial-label {
    font-size: 17px !important;
    color: #475569 !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
}

/* 11. Compare plan features font bigger */
.compare-table th {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.compare-table td {
    font-size: 16px !important;
    padding: 12px 10px !important;
}

/* 13. "Show more" feature panel — CSS max-height animation via .expanded class */
/* The JS toggles .expanded on .pricing-card-modern; no jQuery show/hide needed here */

/* 8. Bring More Profit features grid background globally light orange */
.features-grid {
    background-color: #fff6f3 !important;
}

/* ==========================================
   MOBILE VIEWS RESPONSIVENESS OVERRIDES (<992px)
   ========================================== */
@media (max-width: 991px) {

    .section-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }

    .section-subtitle {
        font-size: 16px !important;
    }

    h1 {
        font-size: 38px !important;
    }

    /* Preserve specific hero title sizes, don't let generic h1 override them */
    .hero-title {
        font-size: 42px !important;
        line-height: 1.2 !important;
    }

    .hero-title span {
        font-size: inherit !important;
        display: inline !important;
    }

    .pricing-hero-title {
        font-size: 38px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    .hero-text {
        font-size: 16px !important;
    }


    /* 3. Reduce gap in mobile view in all section and all pages */
    .pt-120 {
        padding-top: 30px !important;
    }

    .pb-120 {
        padding-bottom: 30px !important;
    }

    .ptb-120 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .pt-90 {
        padding-top: 25px !important;
    }

    .pb-90 {
        padding-bottom: 25px !important;
    }

    .ptb-90 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .mb-50 {
        margin-bottom: 25px !important;
    }

    .mb-80 {
        margin-bottom: 35px !important;
    }

    .mt-80 {
        margin-top: 35px !important;
    }

    .mt-100 {
        margin-top: 45px !important;
    }

    .hero-wrapper {
        padding: 20px 0 30px !important;
    }

    .how-it-works {
        padding: 30px 0 !important;
    }

    .step-item {
        width: 100% !important;
        padding: 18px 14px !important;
        margin-bottom: 12px !important;
        /* Glassmorphism — mobile only */
        background: rgba(255, 255, 255, 0.60) !important;
        backdrop-filter: blur(14px) saturate(1.6) !important;
        -webkit-backdrop-filter: blur(14px) saturate(1.6) !important;
        border: 1px solid rgba(255, 255, 255, 0.75) !important;
        border-radius: 18px !important;
        box-shadow: 0 8px 32px rgba(255, 90, 44, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }

    .pricing-section {
        padding: 25px 0 !important;
    }

    .features-grid {
        padding: 25px 0 !important;
    }

    .subdomain-banner {
        padding: 30px 0 !important;
    }

    .testimonials-section {
        padding: 25px 0 !important;
    }

    .modern-contact-page-wrapper {
        padding-top: 15px !important;
        padding-bottom: 30px !important;
    }

    .modern-pricing-page-wrapper {
        padding-top: 15px !important;
        padding-bottom: 30px !important;
    }

    /* 5. Pricing plan font need big in mobile view */
    .pricing-card-modern h3 {
        font-size: 22px !important;
    }

    .card-header-block .title-info .subtitle {
        font-size: 13px !important;
    }

    .price-section .price-value {
        font-size: 42px !important;
    }

    .price-section .currency-symbol {
        font-size: 22px !important;
    }

    .price-section .period {
        font-size: 15px !important;
    }

    .billing-subtext {
        font-size: 14px !important;
    }

    .features-list-block ul li span,
    .pricing-features-extra ul li span {
        font-size: 15px !important;
    }

    .pricing-feature-toggle {
        font-size: 14px !important;
    }

    .btn-pricing-action {
        font-size: 15px !important;
    }

    .trial-label {
        font-size: 14px !important;
    }

    /* 11. Compare plan features mobile font size bigger */
    .compare-table th {
        font-size: 15px !important;
        padding: 10px 8px !important;
    }

    .compare-table td {
        font-size: 14px !important;
        padding: 8px 8px !important;
    }
}

/* 8. Bring More Profit section need 2x2 in mobile view */
@media (max-width: 767px) {

    /* Only apply grid to the features cards row, NOT the section title row */
    .features-grid .row:last-child {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin: 0 !important;
    }

    /* Keep the title row as normal full-width block */
    .features-grid .row:first-child {
        display: block !important;
        width: 100% !important;
    }

    .features-grid .row:first-child .col-12 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .features-grid .row:first-child .section-title {
        font-size: 26px !important;
        text-align: center !important;
        line-height: 1.3 !important;
        width: 100% !important;
        padding: 0 10px !important;
    }

    .features-grid .row:last-child>div {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .features-grid .feature-box {
        padding: 15px 10px !important;
        margin-bottom: 0 !important;
    }

    .features-grid .feature-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .features-grid .feature-title {
        font-size: 13px !important;
    }

    .features-grid .feature-desc {
        font-size: 11px !important;
    }
}

/* =====================================================
   WHATSAPP & CHATBOT — ALWAYS LEFT SIDE (ALL SCREENS)
   ===================================================== */
/* Floating WhatsApp button — LEFT on all devices */
.floating-wpp,
#WAButton,
#WAButton .floating-wpp,
#WAButton > div {
    left: 15px !important;
    right: auto !important;
    position: fixed !important;
    bottom: 15px !important;
}

/* WhatsApp popup — open upward from left-anchored button */
.floating-wpp .floating-wpp-popup,
.floating-wpp-popup {
    left: 0 !important;
    right: auto !important;
}

/* Tawk.to chat widget — LEFT */
iframe[src*="tawk.to"],
iframe[id^="tawkchat-"],
.tawk-min-container,
.widget-visible {
    left: 20px !important;
    right: auto !important;
}

/* Scroll-to-top button — stays RIGHT side, bottom-right aligned with WhatsApp */
.go-top {
    left: auto !important;
    right: 18px !important;
    bottom: 22px !important;
    border-radius: 12px !important;
}

/* ============================================================
   HERO ROCKET ANIMATION
   ============================================================ */

/* Container — pinned to the bottom-right of the right column */
.hero-rocket-container {
    position: absolute;
    bottom: -10px;
    right: 0;
    z-index: 20;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    animation: rocketFadeIn 0.6s ease forwards;
}

@keyframes rocketFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Inner wrapper — floats + launches */
.rocket-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: rocketFloat 2s ease-in-out infinite;
    transform-origin: center bottom;
    will-change: transform;
}

/* Floating idle animation */
@keyframes rocketFloat {
    0%,  100% { transform: translateY(0px)    rotate(0deg); }
    30%        { transform: translateY(-12px)  rotate(-1deg); }
    70%        { transform: translateY(-6px)   rotate(1deg); }
}

/* SVG rocket itself */
.rocket-svg {
    width: 88px;
    height: auto;
    filter:
        drop-shadow(0 0 10px rgba(255, 90, 44, 0.45))
        drop-shadow(0 4px 18px rgba(0, 0, 0, 0.15));
}

/* ---- Exhaust / fire assembly ---- */
.rocket-exhaust {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 44px;
    height: 54px;
    margin-top: -6px;
}

.exhaust-flame {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% 50% 40% 40%;
    transform-origin: center top;
}

/* Outermost flame — wide, orange-red */
.flame-outer {
    width: 34px;
    height: 50px;
    background: linear-gradient(to bottom,
        rgba(255, 160, 20, 0.95) 0%,
        rgba(255, 80, 20, 0.85) 45%,
        rgba(255, 40, 0, 0) 100%);
    animation: flameOuter 0.25s ease-in-out infinite alternate;
    filter: blur(1.5px);
}

/* Middle flame — narrower, brighter */
.flame-mid {
    width: 22px;
    height: 40px;
    background: linear-gradient(to bottom,
        rgba(255, 220, 60, 1) 0%,
        rgba(255, 140, 20, 0.9) 50%,
        rgba(255, 90, 10, 0) 100%);
    animation: flameMid 0.2s ease-in-out infinite alternate;
    filter: blur(0.8px);
}

/* Inner core — tiny, white-hot */
.flame-inner {
    width: 10px;
    height: 26px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 220, 1) 0%,
        rgba(255, 240, 100, 0.9) 60%,
        rgba(255, 200, 50, 0) 100%);
    animation: flameInner 0.15s ease-in-out infinite alternate;
}

@keyframes flameOuter {
    0%   { transform: translateX(-50%) scaleX(1)    scaleY(1);    opacity: 0.90; }
    100% { transform: translateX(-50%) scaleX(1.15) scaleY(0.90); opacity: 1;    }
}
@keyframes flameMid {
    0%   { transform: translateX(-50%) scaleX(0.9)  scaleY(1.05); opacity: 0.95; }
    100% { transform: translateX(-50%) scaleX(1.1)  scaleY(0.92); opacity: 1;    }
}
@keyframes flameInner {
    0%   { transform: translateX(-50%) scaleX(0.85) scaleY(1.1);  opacity: 1;    }
    100% { transform: translateX(-50%) scaleX(1.1)  scaleY(0.88); opacity: 0.85; }
}

/* ---- Sparks / embers ---- */
.exhaust-spark {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
}

.spark-1 {
    width: 5px;
    height: 5px;
    background: #ffcc00;
    bottom: 18px;
    left: calc(50% - 14px);
    animation: sparkFly1 0.7s ease-out infinite;
    animation-delay: 0s;
}
.spark-2 {
    width: 4px;
    height: 4px;
    background: #ff7a00;
    bottom: 10px;
    left: calc(50% + 8px);
    animation: sparkFly2 0.85s ease-out infinite;
    animation-delay: 0.2s;
}
.spark-3 {
    width: 3px;
    height: 3px;
    background: #ffee58;
    bottom: 22px;
    left: calc(50% + 2px);
    animation: sparkFly3 0.6s ease-out infinite;
    animation-delay: 0.4s;
}

@keyframes sparkFly1 {
    0%   { transform: translate(0, 0)    scale(1);    opacity: 1; }
    100% { transform: translate(-14px, 28px) scale(0.3); opacity: 0; }
}
@keyframes sparkFly2 {
    0%   { transform: translate(0, 0)    scale(1);    opacity: 1; }
    100% { transform: translate(12px, 32px)  scale(0.2); opacity: 0; }
}
@keyframes sparkFly3 {
    0%   { transform: translate(0, 0)    scale(1);    opacity: 1; }
    100% { transform: translate(6px, 24px)   scale(0.3); opacity: 0; }
}

/* ---- LAUNCH: rocket shoots upward and vanishes ---- */
.rocket-launching .rocket-body {
    animation: rocketLaunch 3.0s cubic-bezier(0.4, 0, 1, 1) forwards !important;
}
.rocket-launching .exhaust-flame {
    animation: none !important;
    transform: translateX(-50%) scaleY(2.5) scaleX(0.7) !important;
    filter: blur(3px) !important;
    opacity: 0.6;
    transition: all 0.15s ease;
}
.rocket-launching .flame-outer { height: 80px !important; opacity: 0.8 !important; }
.rocket-launching .flame-mid   { height: 60px !important; }
.rocket-launching .flame-inner { height: 40px !important; }

@keyframes rocketLaunch {
    0%   { transform: translateY(0)    scaleX(1);   opacity: 1; }
    12%  { transform: translateY(6px)  scaleX(1.04); opacity: 1; } /* thrust-back rumble */
    35%  { transform: translateY(-40px)  scaleX(0.98); opacity: 1; }
    65%  { transform: translateY(-240px) scaleX(0.93); opacity: 0.8; }
    100% { transform: translateY(-750px) scaleX(0.85); opacity: 0; }
}

/* Loop Helper Classes */
.hero-rocket-container.rocket-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
}
.hero-rocket-container.rocket-fade-in {
    animation: rocketFadeIn 1.0s ease forwards !important;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet (≤ 1199px) */
@media (max-width: 1199px) {
    .rocket-svg { width: 70px; }
    .exhaust-flame { }
    .flame-outer { width: 28px; height: 42px; }
    .flame-mid   { width: 18px; height: 32px; }
    .flame-inner { width: 8px;  height: 22px; }
}

/* Small tablet (≤ 991px) — column stacks, move rocket */
@media (max-width: 991px) {
    .hero-rocket-container {
        bottom: 0;
        right: 10px;
    }
    .rocket-svg { width: 60px; }
    .rocket-exhaust { width: 36px; height: 44px; }
    .flame-outer { width: 24px; height: 36px; }
    .flame-mid   { width: 16px; height: 28px; }
    .flame-inner { width: 7px;  height: 18px; }
}

/* Mobile (≤ 575px) */
@media (max-width: 575px) {
    .hero-rocket-container {
        bottom: 0;
        right: 6px;
    }
    .rocket-svg { width: 46px; }
    .rocket-exhaust { width: 26px; height: 32px; }
    .flame-outer { width: 18px; height: 28px; }
    .flame-mid   { width: 12px; height: 22px; }
    .flame-inner { width: 5px;  height: 14px; }
    .exhaust-spark { display: none; }
}