/* RCB Jersey 2026 Page — Modern Redesign */
:root {
    --rcb-red:   #CC0000;
    --rcb-dark:  #8B0000;
    --rcb-black: #0d0d0d;
    --rcb-gold:  #D4AF37;
    --rcb-bg:    #fdf5f5;
}
.rcb-wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* PROMO BAR */
.rcb-promo-bar {
    background: var(--rcb-gold);
    color: #111; text-align: center;
    padding: 9px 16px; font-size: .82rem; font-weight: 600;
}
.rcb-promo-bar a { color: #7b0000; font-weight: 700; text-decoration: none; }
.rcb-promo-bar a:hover { text-decoration: underline; }
.rcb-code {
    background: #111; color: var(--rcb-gold);
    padding: 2px 8px; border-radius: 4px;
    font-family: monospace; font-size: .85rem; letter-spacing: 1px;
}
.rcb-promo-pulse {
    display: inline-block; width: 8px; height: 8px;
    background: #CC0000; border-radius: 50%;
    margin-right: 8px; vertical-align: middle;
    animation: rcbpulse 1.5s infinite;
}
@keyframes rcbpulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: .5; }
}

/* HERO */
.rcb-hero {
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #2d0000 100%);
    color: #fff; text-align: center;
    padding: 64px 20px 56px;
    position: relative; overflow: hidden;
    min-height: 480px; display: flex; align-items: center; justify-content: center;
}
.rcb-hero-overlay {
    position: absolute; inset: 0;
    background: url('https://www.printigly.in/wp-content/uploads/2026/04/rcb-custom-jersey-model-2026.jpg') center/cover no-repeat;
    opacity: .12;
}
.rcb-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.rcb-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.4);
    color: var(--rcb-gold); border-radius: 999px;
    padding: 6px 18px; font-size: .8rem; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px;
}
.rcb-live-dot {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    animation: rcbpulse 1.2s infinite;
}
.rcb-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800; line-height: 1.15; margin: 0 0 16px; color: #fff;
}
.rcb-hero h1 span { color: var(--rcb-gold); }
.rcb-hero-sub { font-size: 1.05rem; color: #f5c6c6; margin: 0 0 20px; }
.rcb-hero-pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px;
}
.rcb-hero-pills span {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px; padding: 6px 16px; font-size: .8rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.rcb-hero-pills i { color: var(--rcb-gold); }

/* BUTTONS */
.rcb-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.rcb-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 10px; font-size: .95rem; font-weight: 700;
    text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.rcb-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.rcb-btn-wa    { background: #22c55e; color: #fff; }
.rcb-btn-call  { background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4); color: #fff; }
.rcb-btn-store { background: var(--rcb-gold); color: #111; }

/* TRUST BAR */
.rcb-trust {
    background: #111; display: flex; justify-content: center; flex-wrap: wrap;
}
.rcb-trust-item {
    display: flex; align-items: center; gap: 7px;
    color: #e2e8f0; font-size: .82rem; font-weight: 600;
    padding: 12px 20px; border-right: 1px solid rgba(255,255,255,.08);
}
.rcb-trust-item:last-child { border-right: none; }
.rcb-trust-item i { color: var(--rcb-gold); }

/* SECTIONS */
.rcb-section { padding: 60px 20px; }
.rcb-section-alt  { background: var(--rcb-bg); }
.rcb-section-dark { background: #0d0d0d; }
.rcb-section-head { text-align: center; margin-bottom: 36px; }
.rcb-section-head h2 { font-size: 1.7rem; font-weight: 800; color: #111; margin: 0 0 8px; }
.rcb-section-head.light h2 { color: #fff; }
.rcb-section-head h2 span { color: var(--rcb-red); }
.rcb-section-dark .rcb-section-head h2 span { color: var(--rcb-gold); }
.rcb-section-head p { color: #64748b; font-size: .92rem; margin: 0; }
.rcb-section-dark .rcb-section-head p { color: #94a3b8; }

/* GALLERY */
.rcb-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 16px;
}
.rcb-gallery-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #f1f5f9;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    cursor: pointer;
}
.rcb-gallery-card:hover {
    border-color: var(--rcb-red);
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(204,0,0,.15);
}
/* Image area — tag lives INSIDE this so position:relative works */
.rcb-card-img {
    overflow: hidden;
    line-height: 0;
    background: #f8f8f8;
    position: relative;
}
.rcb-card-img img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    transition: transform .35s;
    margin: 0; padding: 0;
}
.rcb-gallery-card:hover .rcb-card-img img { transform: scale(1.07); }
/* Tag badge — inside .rcb-card-img */
.rcb-card-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 4;
    background: var(--rcb-red);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.5;
    white-space: nowrap;
}
/* Footer — fixed height so all cards align */
.rcb-card-foot {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80px;
    justify-content: space-between;
}
.rcb-card-label {
    font-size: .82rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rcb-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--rcb-red);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 7px;
    transition: background .2s;
}
.rcb-gallery-card:hover .rcb-card-btn { background: #a50000; }

/* PRICING */
.rcb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}
.rcb-price-card {
    background: #1a1a1a; border: 2px solid #2a2a2a; border-radius: 16px;
    padding: 28px 20px 22px; text-align: center; position: relative;
    transition: border-color .2s, transform .2s;
}
.rcb-price-card:hover { border-color: #444; transform: translateY(-3px); }
.rcb-price-card.popular { border-color: var(--rcb-gold); box-shadow: 0 0 30px rgba(212,175,55,.2); }
.rcb-popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--rcb-gold); color: #111;
    font-size: .7rem; font-weight: 800; padding: 4px 16px; border-radius: 999px;
    white-space: nowrap;
}
.rcb-price-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(204,0,0,.15); border: 1px solid rgba(204,0,0,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--rcb-red); margin: 0 auto 14px;
}
.rcb-price-card.popular .rcb-price-icon {
    background: rgba(212,175,55,.15); border-color: rgba(212,175,55,.3); color: var(--rcb-gold);
}
.rcb-price-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.rcb-price-fabric { font-size: .75rem; color: #64748b; margin: 0 0 14px; }
.rcb-price-amount { font-size: 1.8rem; font-weight: 800; color: var(--rcb-red); margin: 0 0 16px; }
.rcb-price-card.popular .rcb-price-amount { color: var(--rcb-gold); }
.rcb-price-amount span { font-size: .9rem; font-weight: 600; color: #64748b; }
.rcb-price-card ul { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.rcb-price-card ul li {
    font-size: .8rem; color: #94a3b8; padding: 5px 0;
    display: flex; gap: 8px; align-items: flex-start;
}
.rcb-price-card ul li::before { content: "checkmark"; color: var(--rcb-red); font-weight: 700; flex-shrink: 0; }
.rcb-price-card ul li::before { content: "\2713"; }
.rcb-price-card.popular ul li::before { color: var(--rcb-gold); }
.rcb-price-btn {
    display: block; width: 100%; padding: 11px; border-radius: 8px; text-align: center;
    font-weight: 700; font-size: .88rem; text-decoration: none;
    background: rgba(204,0,0,.15); border: 1px solid rgba(204,0,0,.4); color: #ff6b6b;
    transition: background .2s, color .2s;
}
.rcb-price-btn:hover { background: var(--rcb-red); color: #fff; border-color: var(--rcb-red); }
.rcb-price-btn.active { background: var(--rcb-gold); border-color: var(--rcb-gold); color: #111; }
.rcb-price-btn.active:hover { background: #c49d2a; }

/* HOW TO ORDER */
.rcb-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}
.rcb-step-arrow { display: none; }
.rcb-step {
    background: #fff; border-radius: 16px; padding: 28px 20px 24px;
    text-align: center; border: 2px solid #f1f5f9;
    transition: border-color .2s, box-shadow .2s;
    position: relative;
}
.rcb-step:not(:last-child)::after {
    content: "A";
    position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
    font-size: 1.6rem; color: #cc0000; font-weight: 900; z-index: 2;
    line-height: 1;
}
.rcb-step:hover { border-color: var(--rcb-red); box-shadow: 0 4px 20px rgba(204,0,0,.1); }
.rcb-step-num {
    width: 36px; height: 36px; background: var(--rcb-red); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .9rem; margin: 0 auto 14px;
}
.rcb-step-icon { font-size: 1.8rem; color: var(--rcb-red); margin-bottom: 10px; }
.rcb-step h3 { font-size: .95rem; font-weight: 700; color: #1e293b; margin: 0 0 6px; }
.rcb-step p  { font-size: .82rem; color: #64748b; margin: 0; line-height: 1.5; }

/* SIZE TABLE */
.rcb-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid #e2e8f0; }
.rcb-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.rcb-table thead tr { background: var(--rcb-red); color: #fff; }
.rcb-table th { padding: 13px 16px; text-align: left; font-weight: 700; }
.rcb-table td { padding: 11px 16px; border-bottom: 1px solid #f1f5f9; color: #374151; }
.rcb-table tbody tr:nth-child(even) { background: #fff8f8; }
.rcb-table tbody tr:hover { background: #fef2f2; }

/* FAQ */
.rcb-faq { max-width: 760px; margin: 0 auto; }
.rcb-faq details {
    background: #fff; border: 2px solid #f1f5f9; border-radius: 12px;
    margin-bottom: 10px; overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.rcb-faq details[open] { border-color: var(--rcb-red); box-shadow: 0 4px 16px rgba(204,0,0,.08); }
.rcb-faq summary {
    padding: 16px 20px; font-weight: 700; font-size: .9rem; color: #1e293b;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.rcb-faq summary::-webkit-details-marker { display: none; }
.rcb-faq summary::after { content: '+'; font-size: 1.3rem; color: var(--rcb-red); font-weight: 800; }
.rcb-faq details[open] summary::after { content: '-'; }
.rcb-faq details p { padding: 0 20px 16px; margin: 0; font-size: .85rem; color: #475569; line-height: 1.75; }

/* BOTTOM CTA */
.rcb-cta-strip {
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 60%, var(--rcb-dark) 100%);
    padding: 56px 20px;
}
.rcb-cta-strip-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.rcb-cta-badge {
    display: inline-block;
    background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.35);
    color: var(--rcb-gold); border-radius: 999px;
    padding: 6px 18px; font-size: .78rem; font-weight: 700;
    letter-spacing: .4px; text-transform: uppercase; margin-bottom: 16px;
}
.rcb-cta-strip h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.rcb-cta-strip p  { font-size: .92rem; color: #f5c6c6; opacity: .85; margin: 0 0 26px; }

/* MOBILE STICKY */
.rcb-sticky {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: #111; padding: 10px 12px; gap: 8px;
}
@media (max-width: 640px) {
    .rcb-sticky { display: flex; }
    .rcb-sticky a {
        flex: 1; text-align: center; padding: 12px 8px; border-radius: 8px;
        font-size: .85rem; font-weight: 700; text-decoration: none;
        display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .rcb-sticky .s-call { background: #1d6ff3; color: #fff; }
    .rcb-sticky .s-wa   { background: #22c55e; color: #fff; }
    body { padding-bottom: 66px; }
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .rcb-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
    .rcb-step::after { display: none !important; }
}
@media (max-width: 600px) {
    .rcb-hero { padding: 48px 16px 44px; min-height: 0; }
    .rcb-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .rcb-trust-item { padding: 9px 12px; font-size: .76rem; }
    .rcb-steps { grid-template-columns: 1fr; }
    .rcb-section { padding: 40px 16px; }
    .rcb-section-head h2 { font-size: 1.4rem; }
    .rcb-pricing-grid { grid-template-columns: 1fr 1fr; }
    .rcb-cta-strip h2 { font-size: 1.3rem; }
}
@media (max-width: 400px) {
    .rcb-pricing-grid { grid-template-columns: 1fr; }
}
