/* ==========================================================================
   Flagship Tech Journal & Buying Guides Styles (The Verge / Apple Look)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Real-Time Reading Progress Tracker
   -------------------------------------------------------------------------- */
.reading-progress-tracker {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   1. Blog Archive Hero Section
   -------------------------------------------------------------------------- */
.blog-hero-section {
    background: linear-gradient(135deg, #090e17 0%, #1e293b 100%);
    color: #ffffff;
    padding: 65px 0 35px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-hero-inner {
    max-width: 820px;
    margin: 0 auto 30px;
}
.blog-micro-tag {
    display: inline-block;
    color: #38bdf8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.blog-hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 14px;
}
.blog-hero-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
}

/* Topic Filter Pills */
.blog-topic-pills-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.blog-topic-pills-bar::-webkit-scrollbar {
    display: none;
}
.topic-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.topic-pill:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}
.topic-pill.active {
    background: var(--primary-color, #2563eb);
    color: #ffffff;
    border-color: var(--primary-color, #2563eb);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* --------------------------------------------------------------------------
   2. Main Blog Cards Grid
   -------------------------------------------------------------------------- */
.blog-catalog-section {
    padding: 60px 0 80px;
    background-color: #f8fafc;
}
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.journal-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.featured-hero-article {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: #ffffff;
    border-radius: 24px;
    margin-bottom: 12px;
}
.featured-hero-article .journal-thumb-wrap {
    height: 100%;
    min-height: 380px;
}
.featured-hero-article .journal-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-hero-article .journal-title {
    font-size: 26px;
    margin-bottom: 14px;
}

.journal-thumb-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f1f5f9;
    overflow: hidden;
}
.journal-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.journal-card:hover .journal-thumb-wrap img {
    transform: scale(1.05);
}
.journal-cat-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
}

.journal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.journal-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
}
.meta-bullet {
    color: #cbd5e1;
}
.journal-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 10px 0;
}
.journal-title a {
    color: #0f172a;
    transition: color 0.2s;
}
.journal-title a:hover {
    color: var(--primary-color, #2563eb);
}
.journal-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
    flex-grow: 1;
}

.journal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}
.author-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}
.btn-read-article {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color, #2563eb);
}

.blog-pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}
.blog-pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-pagination-wrapper .page-numbers a,
.blog-pagination-wrapper .page-numbers span {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s;
}
.blog-pagination-wrapper .page-numbers a:hover {
    background: #f1f5f9;
}
.blog-pagination-wrapper .page-numbers.current {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
}

/* --------------------------------------------------------------------------
   3. Single Article Hero Header (`single.php`)
   -------------------------------------------------------------------------- */
.modern-single-article-page {
    background-color: #ffffff;
}
.single-article-hero {
    background: linear-gradient(135deg, #090e17 0%, #0f172a 50%, #1e293b 100%);
    color: #ffffff;
    padding: 50px 0 65px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.article-hero-container {
    max-width: 900px;
    margin: 0 auto;
}
.single-breadcrumb {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 16px;
}
.single-breadcrumb a {
    color: #cbd5e1;
}
.single-breadcrumb a:hover {
    color: #ffffff;
}
.bc-sep {
    margin: 0 8px;
    color: #64748b;
}

.article-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.article-cat-pill {
    background: #2563eb;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}
.article-read-time {
    font-size: 13px;
    color: #93c5fd;
    font-weight: 600;
}

.article-main-headline {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 28px;
}

/* Meta Bar with Author & Share Buttons */
.article-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    flex-wrap: wrap;
    gap: 20px;
}
.author-profile-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-circle-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.author-text strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
}
.author-text span {
    font-size: 12px;
    color: #94a3b8;
}
.publish-date-box {
    font-size: 13px;
    color: #cbd5e1;
}

/* Share Buttons */
.article-share-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-lbl {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 4px;
}
.share-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   4. Featured Image Hero Wrap
   -------------------------------------------------------------------------- */
.article-featured-media-container {
    max-width: 1040px;
    margin: -35px auto 40px;
    position: relative;
    z-index: 5;
}
.article-hero-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: #0f172a;
    max-height: 500px;
}
.article-hero-image-wrap img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   5. Two-Column Editorial Layout (Sidebar + Main Content)
   -------------------------------------------------------------------------- */
.editorial-split-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: flex-start;
    max-width: 1140px;
    margin: 40px auto 80px;
}

/* Sticky Left Sidebar */
.editorial-sticky-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
}
.box-micro-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2563eb;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toc-list a {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
    display: block;
}
.toc-list a:hover {
    color: #2563eb;
}

/* Hardware Buying Box in Sidebar */
.hardware-widget-box {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.hardware-widget-box h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}
.hardware-widget-box p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 12px 0;
}
.widget-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}
.w-price {
    font-size: 18px;
    font-weight: 900;
    color: #2563eb;
}
.w-mrp {
    font-size: 13px;
    color: #94a3b8;
}
.btn-widget-checkout {
    display: block;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    padding: 9px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-widget-checkout:hover {
    background: #2563eb;
    color: #ffffff;
}

.warranty-micro-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.warranty-micro-box .w-icon {
    font-size: 24px;
}
.warranty-micro-box strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
}
.warranty-micro-box small {
    font-size: 11px;
    color: #64748b;
}

/* --------------------------------------------------------------------------
   6. Main Reading Column & Modern Typography
   -------------------------------------------------------------------------- */
.editorial-main-content {
    max-width: 780px;
}

/* Key Takeaways Card */
.article-key-takeaways {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #2563eb;
    border-radius: 0 16px 16px 0;
    padding: 28px;
    margin-bottom: 35px;
}
.takeaways-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.tk-badge {
    color: #2563eb;
    font-size: 18px;
}
.takeaways-header h3 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.takeaways-bullets {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
}
.takeaways-bullets li {
    margin-bottom: 8px;
}

/* Article Typography */
.article-entry-typography {
    font-size: 17px;
    line-height: 1.85;
    color: #334155;
}
.article-entry-typography p {
    margin-bottom: 24px;
}
.article-entry-typography h2 {
    font-size: 26px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 40px 0 16px;
}
.article-entry-typography h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 30px 0 14px;
}

/* Pro-Tip Box */
.article-pro-tip-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 35px 0;
}
.tip-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.tip-text strong {
    display: block;
    font-size: 15px;
    color: #1e3a8a;
    margin-bottom: 4px;
}
.tip-text p {
    font-size: 14px;
    color: #1e40af;
    line-height: 1.6;
    margin: 0;
}

/* In-Article Recommendation Card */
.article-inline-product-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 45px 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.inline-thumb {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    flex-shrink: 0;
}
.inline-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inline-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #2563eb;
    display: block;
    margin-bottom: 4px;
}
.inline-details h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}
.inline-details p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 12px 0;
}
.inline-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}
.in-price {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
}
.in-mrp {
    font-size: 14px;
    color: #94a3b8;
}
.in-save {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
}
.btn-inline-buy {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-inline-buy:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Tags Strip */
.article-tags-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 35px 0;
    flex-wrap: wrap;
}
.tags-title {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}
.tag-chip {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
}

/* Author Profile Card */
.article-author-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 40px 0;
}
.author-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.author-card-role {
    font-size: 10px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}
.author-card-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}
.author-card-bio p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Prev / Next Cards */
.article-nav-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}
.nav-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color 0.2s;
}
.nav-card:hover {
    border-color: #2563eb;
}
.nav-direction {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.nav-card a {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}
.nav-card a:hover {
    color: #2563eb;
}

/* --------------------------------------------------------------------------
   7. Related Articles Bottom Grid
   -------------------------------------------------------------------------- */
.related-journal-section {
    padding: 60px 0 90px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.section-title-wrap {
    text-align: center;
    margin-bottom: 45px;
}
.section-micro-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color, #2563eb);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.section-title-large {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}
.heading-line {
    width: 50px;
    height: 4px;
    background-color: var(--primary-color, #2563eb);
    margin: 0 auto;
    border-radius: 999px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.related-guide-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
    border-color: #cbd5e1;
}
.r-thumb-wrap {
    width: 100%;
    height: 180px;
    background: #f1f5f9;
    overflow: hidden;
}
.r-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.related-guide-card:hover .r-thumb-wrap img {
    transform: scale(1.05);
}
.r-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.r-meta {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}
.r-title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 14px 0;
    flex-grow: 1;
}
.r-title a {
    color: #0f172a;
    text-decoration: none;
}
.r-title a:hover {
    color: #2563eb;
}
.r-link {
    font-size: 13px;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   8. Mobile Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .editorial-split-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .editorial-sticky-sidebar {
        position: static;
    }
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .article-main-headline {
        font-size: 26px;
    }
    .article-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .article-hero-image-wrap {
        border-radius: 12px;
        max-height: 260px;
    }
    .article-inline-product-card {
        flex-direction: column;
        text-align: center;
    }
    .article-author-card {
        flex-direction: column;
        text-align: center;
    }
    .article-nav-duo {
        grid-template-columns: 1fr;
    }
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Hardware Catalog Bridge Banner (🛡 TESTED HARDWARE Box Styling)
   ========================================================================== */
.blog-shop-bridge {
    padding: 20px 0 80px;
    background-color: #f8fafc;
}

.bridge-card {
    background: linear-gradient(135deg, #090e17 0%, #0f172a 50%, #1e1b4b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 55px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.bridge-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bridge-text {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.bridge-tag {
    display: inline-block;
    background: rgba(250, 204, 21, 0.15);
    border: 1px solid rgba(250, 204, 21, 0.35);
    color: #facc15;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.bridge-text h3 {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin: 0 0 10px 0;
}

.bridge-text p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.bridge-cta {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.btn-bridge-shop {
    display: inline-block;
    background: var(--primary-color, #2563eb);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    padding: 15px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-bridge-shop:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.55);
    color: #ffffff !important;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .bridge-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 24px;
    }
    .bridge-text {
        max-width: 100%;
    }
    .bridge-text h3 {
        font-size: 22px;
    }
    .btn-bridge-shop {
        width: 100%;
        text-align: center;
    }
}