/**
 * PCBUILDERS.LK - Modern High-Tech Footer Stylesheet
 * Optimized for Desktop (5-column grid) & Mobile (Interactive Accordions)
 */

:root {
    --pcb-ft-bg: #0b0e14;
    --pcb-ft-surface: #0f141d;
    --pcb-ft-card: rgba(255, 255, 255, 0.025);
    --pcb-ft-card-hover: rgba(255, 255, 255, 0.05);
    --pcb-ft-border: rgba(255, 255, 255, 0.07);
    --pcb-ft-border-light: rgba(255, 255, 255, 0.12);
    --pcb-ft-cyan: #00b4d8;
    --pcb-ft-cyan-glow: rgba(0, 180, 216, 0.3);
    --pcb-ft-orange: #ff5e14;
    --pcb-ft-gold: #ffb703;
    --pcb-ft-wa: #25D366;
    --pcb-ft-wa-glow: rgba(37, 211, 102, 0.35);
    --pcb-ft-text: #f1f5f9;
    --pcb-ft-muted: #94a3b8;
    --pcb-ft-dim: #64748b;
    --pcb-font-head: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --pcb-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   1. Base Footer Container
   ========================================================================== */
.pcb-modern-footer {
    position: relative;
    background-color: var(--pcb-ft-bg);
    color: var(--pcb-ft-text);
    font-family: var(--pcb-font-body);
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid var(--pcb-ft-border);
    clear: both;
    z-index: 10;
    overflow: hidden;
}

.pcb-modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--pcb-ft-cyan) 30%, var(--pcb-ft-orange) 70%, transparent 100%);
    opacity: 0.6;
}

.pcb-footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ==========================================================================
   2. Perks & Trust Badges Strip
   ========================================================================== */
.pcb-footer-perks-wrap {
    padding: 32px 0;
    border-bottom: 1px solid var(--pcb-ft-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%);
}

.pcb-footer-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pcb-perk-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--pcb-ft-card);
    border: 1px solid var(--pcb-ft-border);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.pcb-perk-card:hover {
    background: var(--pcb-ft-card-hover);
    border-color: var(--pcb-ft-border-light);
    transform: translateY(-2px);
}

.pcb-perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--pcb-ft-border);
    transition: all 0.25s ease;
}

.pcb-perk-delivery { color: #38bdf8; background: rgba(56, 189, 248, 0.1); border-color: rgba(56, 189, 248, 0.2); }
.pcb-perk-warranty { color: #4ade80; background: rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.2); }
.pcb-perk-support  { color: #f97316; background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.2); }
.pcb-perk-rewards  { color: #fbbf24; background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.2); }

.pcb-perk-card:hover .pcb-perk-delivery { box-shadow: 0 0 14px rgba(56, 189, 248, 0.4); }
.pcb-perk-card:hover .pcb-perk-warranty { box-shadow: 0 0 14px rgba(74, 222, 128, 0.4); }
.pcb-perk-card:hover .pcb-perk-support  { box-shadow: 0 0 14px rgba(249, 115, 22, 0.4); }
.pcb-perk-card:hover .pcb-perk-rewards  { box-shadow: 0 0 14px rgba(251, 191, 36, 0.4); }

.pcb-perk-title {
    margin: 0 0 4px 0;
    font-family: var(--pcb-font-head);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.pcb-perk-desc {
    margin: 0;
    font-size: 12.5px;
    color: var(--pcb-ft-muted);
    line-height: 1.4;
}

/* ==========================================================================
   3. Main Footer Grid (5 Columns on Desktop)
   ========================================================================== */
.pcb-footer-main {
    padding: 50px 0 40px;
}

.pcb-footer-main-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1.3fr 1.2fr 1.6fr;
    gap: 36px;
}

/* Brand Column */
.pcb-footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pcb-footer-logo-link {
    text-decoration: none;
    display: inline-block;
}

.pcb-logo-text {
    font-family: var(--pcb-font-head);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
}

.pcb-logo-accent {
    color: var(--pcb-ft-orange);
}

.pcb-logo-tld {
    font-size: 18px;
    color: var(--pcb-ft-cyan);
    font-weight: 700;
}

.pcb-footer-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 10px;
    font-family: var(--pcb-font-head);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pcb-ft-cyan);
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 4px;
}

.pcb-footer-bio {
    margin: 0 0 20px 0;
    font-size: 13.5px;
    color: var(--pcb-ft-muted);
    line-height: 1.55;
    max-width: 380px;
}

/* Contact List */
.pcb-footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.pcb-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--pcb-ft-muted);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.pcb-contact-item:hover {
    color: #ffffff;
}

.pcb-ci-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--pcb-ft-border);
    border-radius: 6px;
    color: var(--pcb-ft-cyan);
    margin-top: 2px;
}

.pcb-ci-text strong {
    color: #ffffff;
    font-weight: 600;
}

.pcb-hours-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pcb-hours-line strong {
    color: #ffffff;
    font-weight: 600;
}

.pcb-closed-tag {
    font-size: 12px;
    color: var(--pcb-ft-orange);
    font-weight: 500;
}

/* WhatsApp Action Box */
.pcb-footer-wa-box {
    margin-bottom: 22px;
}

.pcb-footer-wa-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.04) 100%);
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    overflow: hidden;
}

.pcb-footer-wa-btn svg {
    color: var(--pcb-ft-wa);
    filter: drop-shadow(0 0 6px var(--pcb-ft-wa-glow));
    min-width: 20px;
}

.pcb-wa-pulse-dot {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--pcb-ft-wa);
    box-shadow: 0 0 8px var(--pcb-ft-wa);
    animation: pcbPulse 2s infinite;
}

@keyframes pcbPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pcb-wa-btn-text {
    display: flex;
    flex-direction: column;
}

.pcb-wa-label {
    font-family: var(--pcb-font-head);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.pcb-wa-sub {
    font-size: 12px;
    color: var(--pcb-ft-wa);
    font-weight: 500;
}

.pcb-footer-wa-btn:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.22) 0%, rgba(37, 211, 102, 0.08) 100%);
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}

/* Social Media Buttons */
.pcb-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcb-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--pcb-ft-card);
    border: 1px solid var(--pcb-ft-border);
    color: var(--pcb-ft-muted);
    text-decoration: none;
    transition: all 0.25s ease;
}

.pcb-social-btn:hover {
    color: #ffffff;
    background: rgba(0, 180, 216, 0.15);
    border-color: var(--pcb-ft-cyan);
    box-shadow: 0 0 12px var(--pcb-ft-cyan-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   4. Navigation Columns (Desktop Static / Mobile Accordion)
   ========================================================================== */
.pcb-footer-col .pcb-col-title {
    display: block;
    font-family: var(--pcb-font-head);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
}

.pcb-footer-col .pcb-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--pcb-ft-cyan);
    border-radius: 2px;
}

/* Desktop Accordion Toggle overrides */
.pcb-accordion-toggle {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    text-align: left;
    cursor: default;
    outline: none;
}

.pcb-acc-icon {
    display: none; /* Hidden on desktop */
}

.pcb-accordion-panel {
    display: block;
}

.pcb-footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pcb-footer-nav-list li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pcb-ft-muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
    padding: 2px 0;
}

.pcb-footer-nav-list li a:hover {
    color: var(--pcb-ft-cyan);
    transform: translateX(4px);
}

.pcb-highlight-link {
    color: var(--pcb-ft-cyan) !important;
    font-weight: 600;
}

.pcb-external-link svg {
    color: var(--pcb-ft-dim);
    transition: color 0.2s ease;
}

.pcb-footer-nav-list li a:hover .pcb-external-link svg {
    color: var(--pcb-ft-cyan);
}

/* ==========================================================================
   5. PC Coins Rewards Club Spotlight Card
   ========================================================================== */
.pcb-loyalty-card {
    position: relative;
    padding: 22px;
    background: linear-gradient(145deg, rgba(255, 183, 3, 0.08) 0%, rgba(20, 26, 36, 0.8) 100%);
    border: 1px solid rgba(255, 183, 3, 0.25);
    border-radius: 14px;
    overflow: hidden;
}

.pcb-loyalty-card-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.pcb-loyalty-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pcb-loyalty-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.2) 0%, rgba(255, 183, 3, 0.05) 100%);
    border: 1px solid rgba(255, 183, 3, 0.4);
    color: var(--pcb-ft-gold);
    box-shadow: 0 0 16px rgba(255, 183, 3, 0.2);
}

.pcb-loyalty-tag {
    display: block;
    font-family: var(--pcb-font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--pcb-ft-gold);
}

.pcb-loyalty-title {
    margin: 2px 0 0 0;
    font-family: var(--pcb-font-head);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.pcb-loyalty-desc {
    margin: 0 0 18px 0;
    font-size: 13px;
    color: var(--pcb-ft-muted);
    line-height: 1.5;
}

.pcb-loyalty-desc strong {
    color: var(--pcb-ft-gold);
    font-weight: 600;
}

.pcb-loyalty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.2) 0%, rgba(255, 183, 3, 0.1) 100%);
    border: 1px solid rgba(255, 183, 3, 0.4);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--pcb-font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.pcb-loyalty-btn:hover {
    background: linear-gradient(135deg, var(--pcb-ft-gold) 0%, #d97706 100%);
    color: #0b0e14;
    border-color: var(--pcb-ft-gold);
    box-shadow: 0 0 16px rgba(255, 183, 3, 0.4);
}

/* ==========================================================================
   6. Bottom Colophon & Payment Strip
   ========================================================================== */
.pcb-footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--pcb-ft-border);
    background: rgba(0, 0, 0, 0.2);
    padding-bottom: max(24px, env(safe-area-inset-bottom, 24px));
}

.pcb-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pcb-copyright {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: var(--pcb-ft-muted);
}

.pcb-bold-brand {
    color: #ffffff;
    font-weight: 600;
}

.pcb-crafted-text {
    margin: 0;
    font-size: 12px;
    color: var(--pcb-ft-dim);
}

/* Payment Chips */
.pcb-bottom-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pcb-payment-label {
    font-size: 12px;
    color: var(--pcb-ft-dim);
    font-weight: 500;
}

.pcb-payment-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pcb-pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    background: var(--pcb-ft-card);
    border: 1px solid var(--pcb-ft-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    transition: all 0.2s ease;
}

.pcb-pay-chip:hover {
    background: var(--pcb-ft-card-hover);
    border-color: var(--pcb-ft-border-light);
}

.pcb-pay-text.visa {
    font-family: Arial, sans-serif;
    font-style: italic;
    font-weight: 900;
    color: #1a1f71;
    background: #ffffff;
    padding: 1px 4px;
    border-radius: 2px;
}

.pcb-mc-circles {
    display: inline-flex;
    position: relative;
    width: 22px;
    height: 14px;
    margin-right: 4px;
}

.mc-red {
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #eb001b;
}

.mc-gold {
    position: absolute;
    right: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #f79e1b;
    opacity: 0.9;
}

.pcb-bnpl-chip {
    gap: 6px;
    border-color: rgba(255, 94, 20, 0.3);
}

.pcb-koko-badge {
    color: #ff5e14;
    font-weight: 800;
    text-transform: lowercase;
}

.pcb-bnpl-tag {
    font-size: 9.5px;
    padding: 1px 4px;
    background: rgba(255, 94, 20, 0.2);
    color: #ff5e14;
    border-radius: 3px;
}

.pcb-pay-text.payzy {
    color: #00b4d8;
    font-weight: 800;
}

.pcb-ssl-chip {
    gap: 5px;
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.25);
    background: rgba(74, 222, 128, 0.05);
}

.pcb-ssl-chip svg {
    color: #4ade80;
}

/* ==========================================================================
   7. Responsive Tablet Breakpoint (768px - 1023px)
   ========================================================================== */
@media (max-width: 1023px) {
    .pcb-footer-perks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pcb-footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pcb-footer-col-brand {
        grid-column: span 2;
    }

    .pcb-footer-col-loyalty {
        grid-column: span 2;
    }
}

/* ==========================================================================
   8. Responsive Mobile Breakpoint (< 768px) - Interactive Accordions
   ========================================================================== */
@media (max-width: 767px) {
    /* Container: 12px horizontal padding prevents any edge clipping on small screens */
    .pcb-footer-container {
        padding: 0 12px !important;
        box-sizing: border-box !important;
    }

    /* 1. Perks Strip: Strictly constrained 2-column grid (minmax 0 prevents grid blowout) */
    .pcb-footer-perks-wrap {
        padding: 12px 0 !important;
    }

    .pcb-footer-perks-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .pcb-perk-card {
        padding: 8px 8px !important;
        border-radius: 8px !important;
        gap: 7px !important;
        min-height: 48px !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .pcb-perk-icon {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        border-radius: 6px !important;
        flex-shrink: 0 !important;
    }

    .pcb-perk-icon svg {
        width: 13px !important;
        height: 13px !important;
    }

    .pcb-perk-content {
        min-width: 0 !important;
        flex: 1 1 0% !important;
        overflow: hidden !important;
    }

    .pcb-perk-title {
        font-size: 11px !important;
        font-weight: 700 !important;
        margin: 0 0 1px 0 !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
    }

    .pcb-perk-desc {
        font-size: 9px !important;
        line-height: 1.2 !important;
        color: var(--pcb-ft-muted) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
    }

    /* 2. Main Footer Body Mobile */
    .pcb-footer-main {
        padding: 20px 0 16px !important;
    }

    .pcb-footer-main-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Brand column stays expanded at top */
    .pcb-footer-col-brand {
        margin-bottom: 16px !important;
        padding-bottom: 16px !important;
        border-bottom: 1px solid var(--pcb-ft-border);
    }

    .pcb-footer-brand-header {
        margin-bottom: 8px !important;
        gap: 8px !important;
    }

    .pcb-logo-text {
        font-size: 22px !important;
    }

    .pcb-footer-bio {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin: 0 0 12px 0 !important;
        max-width: 100% !important;
    }

    .pcb-footer-contact-items {
        gap: 8px !important;
        margin-bottom: 12px !important;
    }

    .pcb-contact-item {
        gap: 8px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
    }

    .pcb-ci-icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        border-radius: 5px !important;
        margin-top: 1px !important;
    }

    .pcb-ci-icon svg {
        width: 12px !important;
        height: 12px !important;
    }

    .pcb-hours-line {
        font-size: 11.5px !important;
        line-height: 1.3 !important;
    }

    .pcb-closed-tag {
        font-size: 10px !important;
    }

    /* WhatsApp Support Card */
    .pcb-footer-wa-box {
        margin-bottom: 12px !important;
    }

    .pcb-footer-wa-btn {
        padding: 8px 12px !important;
        min-height: 40px !important;
        border-radius: 8px !important;
        gap: 10px !important;
    }

    .pcb-footer-wa-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .pcb-wa-label {
        font-size: 13px !important;
    }

    .pcb-wa-sub {
        font-size: 10.5px !important;
    }

    .pcb-footer-socials {
        gap: 6px !important;
    }

    .pcb-social-btn {
        width: 32px !important;
        height: 32px !important;
        border-radius: 6px !important;
    }

    .pcb-social-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* 3. Mobile Accordion Items */
    .pcb-accordion-col {
        border-bottom: 1px solid var(--pcb-ft-border);
    }

    .pcb-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 44px !important;
        padding: 8px 2px !important;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .pcb-accordion-col .pcb-col-title {
        margin-bottom: 0;
        font-size: 13.5px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }

    .pcb-accordion-col .pcb-col-title::after {
        display: none; /* Remove desktop underline on mobile */
    }

    .pcb-acc-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px !important;
        height: 22px !important;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--pcb-ft-border);
        color: var(--pcb-ft-cyan);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
    }

    .pcb-acc-icon svg {
        width: 13px !important;
        height: 13px !important;
    }

    /* Accordion Open State */
    .pcb-accordion-col.is-open .pcb-acc-icon {
        transform: rotate(180deg);
        background: rgba(0, 180, 216, 0.15);
        border-color: var(--pcb-ft-cyan);
    }

    .pcb-accordion-panel {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.3s ease;
        padding: 0 4px;
    }

    .pcb-accordion-col.is-open .pcb-accordion-panel {
        max-height: 400px;
        opacity: 1;
        padding: 6px 2px 14px 2px !important;
    }

    .pcb-footer-nav-list li a {
        font-size: 12.5px !important;
        padding: 4px 0 !important;
        min-height: 30px !important;
    }

    /* 4. Loyalty Card on Mobile */
    .pcb-footer-col-loyalty {
        margin-top: 18px !important;
    }

    .pcb-loyalty-card {
        padding: 14px !important;
        border-radius: 10px !important;
    }

    .pcb-loyalty-badge-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }

    .pcb-loyalty-badge-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .pcb-loyalty-tag {
        font-size: 9px !important;
    }

    .pcb-loyalty-title {
        font-size: 14px !important;
    }

    .pcb-loyalty-desc {
        font-size: 11.5px !important;
        margin: 6px 0 10px !important;
        line-height: 1.4 !important;
    }

    .pcb-loyalty-btn {
        height: 34px !important;
        font-size: 11.5px !important;
        padding: 0 14px !important;
        border-radius: 6px !important;
    }

    /* 5. Bottom Colophon Mobile */
    .pcb-footer-bottom {
        padding: 16px 0 !important;
    }

    .single-product .pcb-footer-bottom {
        padding-bottom: calc(75px + env(safe-area-inset-bottom, 15px)) !important;
    }

    .pcb-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px !important;
    }

    .pcb-copyright {
        font-size: 11px !important;
        margin-bottom: 2px !important;
    }

    .pcb-crafted-text {
        font-size: 10px !important;
    }

    .pcb-bottom-payments {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px !important;
    }

    .pcb-payment-label {
        font-size: 10.5px !important;
    }

    .pcb-payment-chips {
        width: 100%;
        justify-content: flex-start;
        gap: 5px !important;
    }

    .pcb-pay-chip {
        height: 24px !important;
        font-size: 10px !important;
        padding: 0 7px !important;
        border-radius: 4px !important;
    }

    .pcb-pay-text.visa {
        font-size: 9px !important;
        padding: 1px 3px !important;
    }

    .pcb-mc-circles {
        width: 18px !important;
        height: 11px !important;
    }

    .mc-red, .mc-gold {
        width: 11px !important;
        height: 11px !important;
    }
}
