/* =========================================================
   COUPONEARTH - OFFER PAGE
   Clean · Responsive · Premium
========================================================= */
:root {
    --ce-blue: #1e3a8a;
    --ce-blue-dark: #0f172a;
    --ce-blue-main: #2563eb;
    --ce-blue-light: #eff6ff;
    --ce-yellow: #f59e0b;
    --ce-yellow-dark: #d97706;
    --ce-slate-950: #0f172a;
    --ce-slate-900: #1e293b;
    --ce-slate-700: #334155;
    --ce-slate-600: #475569;
    --ce-slate-500: #02419c;
    --ce-slate-400: #94a3b8;
    --ce-slate-300: #cbd5e1;
    --ce-slate-200: #e2e8f0;
    --ce-slate-100: #f1f5f9;
    --ce-slate-50: #f8fafc;
    --ce-radius: 16px;
    --ce-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

/* PAGE */
.ce-offer-page {
    background: #f1f5f9;
    color: var(--ce-slate-900);
    font-size: 0.9rem;
    line-height: 1.55;
    overflow-x: hidden;
}
.ce-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .ce-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .ce-container { padding-left: 2rem; padding-right: 2rem; }
}

/* BREADCRUMB */
.ce-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    color: var(--ce-slate-500);
}
.ce-breadcrumb a {
    color: var(--ce-slate-500);
    text-decoration: none;
    transition: color 0.2s;
}
.ce-breadcrumb a:hover { color: var(--ce-blue-main); }
.ce-breadcrumb svg {
    width: 13px;
    height: 13px;
    color: var(--ce-slate-300);
    flex-shrink: 0;
}
.ce-breadcrumb-current {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--ce-slate-800);
    font-weight: 600;
}


/* =========================================================
   PROMO BANNER – Clean Live Look
========================================================= */
.ce-promo {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #058ee9 0%, #5770c5 100%);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

.ce-promo-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.ce-promo-content {
    flex: 1;
    min-width: 0;
}

.ce-promo-text-wrap {
    max-width: 880px;
}

.ce-promo-text {
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

/* Store Box – Medium Logo */
.ce-promo-saving {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: #f1f5f9;
    border: none;
    min-width: 130px;
    text-align: center;
}

.ce-promo-store-logo {
    width: 64px;                 /* medium size */
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ce-promo-store-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.ce-promo-store-name {
    color: #0f172a;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ce-promo-store-name:hover {
    color: #2563eb;
}

/* Mobile */
@media (max-width: 767px) {
    .ce-promo {
        padding: 1.15rem;
    }

    .ce-promo-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.15rem;
    }

    .ce-promo-text {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .ce-promo-saving {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.85rem;
        padding: 0.85rem 1rem;
        text-align: left;
    }

    .ce-promo-store-logo {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .ce-promo-store-name {
        max-width: none;
        font-size: 0.9rem;
    }
}

/* =========================================================
   PREFERENCE + TOP PICKS
========================================================= */
.ce-preference-section {
    margin-bottom: 1.75rem;
}
.ce-pref-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
@media (min-width: 1280px) {
    .ce-pref-grid {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 1.5rem;
        align-items: start;
    }
}

.ce-preference-card {
    padding: 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
    box-shadow: var(--ce-shadow);
}
.ce-section-heading {
    margin-bottom: 1.1rem;
}
.ce-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}
.ce-section-heading h2 {
    margin-top: 0.4rem;
    color: var(--ce-slate-950);
    font-size: 1.15rem;
    font-weight: 750;
}
.ce-section-heading p {
    margin-top: 0.2rem;
    color: var(--ce-slate-500);
    font-size: 0.82rem;
}

/* Category Grid */
.ce-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}
@media (min-width: 480px) {
    .ce-category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
}
.ce-category-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 70px;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}
.ce-category-card:nth-child(1) { background: #eff6ff; }
.ce-category-card:nth-child(2) { background: #ecfdf5; }
.ce-category-card:nth-child(3) { background: #f5f3ff; }
.ce-category-card:nth-child(4) { background: #fff7ed; }
.ce-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}
.ce-category-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.15rem;
}
.ce-category-card:nth-child(1) .ce-category-icon { background: #dbeafe; }
.ce-category-card:nth-child(2) .ce-category-icon { background: #d1fae5; }
.ce-category-card:nth-child(3) .ce-category-icon { background: #ede9fe; }
.ce-category-card:nth-child(4) .ce-category-icon { background: #ffedd5; }
.ce-category-content {
    min-width: 0;
    flex: 1;
}
.ce-category-title {
    display: block;
    color: var(--ce-slate-900);
    font-size: 0.85rem;
    font-weight: 650;
}
.ce-category-description {
    display: block;
    margin-top: 0.12rem;
    color: var(--ce-slate-500);
    font-size: 0.72rem;
}
.ce-category-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    color: var(--ce-slate-500);
    font-size: 10px;
}

/* Details Form */
.ce-details-panel { margin-top: 1.15rem; }
.ce-details-card {
    padding: 1.2rem;
    border-radius: 14px;
    background: var(--ce-slate-50);
    border: 1.5px solid #e0f2fe;
}
.ce-details-header {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}
.ce-selected-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--ce-blue-main);
    color: #fff;
    font-size: 1.05rem;
}
.ce-details-label {
    color: var(--ce-blue-main);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}
.ce-details-title {
    margin-top: 0.15rem;
    color: var(--ce-slate-950);
    font-size: 0.95rem;
    font-weight: 700;
}
.ce-details-description {
    margin-top: 0.15rem;
    color: var(--ce-slate-500);
    font-size: 0.78rem;
}
.ce-close-button {
    width: 30px;
    height: 30px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
    color: var(--ce-slate-400);
    cursor: pointer;
    transition: all 0.2s;
}
.ce-close-button:hover {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}
.ce-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
@media (min-width: 480px) {
    .ce-form-grid { grid-template-columns: 1fr 1fr; }
}
.ce-form-group.full { grid-column: 1 / -1; }
.ce-form-label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--ce-slate-700);
    font-size: 0.78rem;
    font-weight: 650;
}
.ce-form-input {
    width: 100%;
    height: 42px;
    padding: 0 0.85rem;
    border-radius: 10px;
    background: #fff;
    border: 1.5px solid var(--ce-slate-200);
    color: var(--ce-slate-900);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ce-form-input:focus {
    border-color: var(--ce-blue-main);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.ce-submit-button {
    width: 100%;
    height: 44px;
    margin-top: 0.15rem;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
    transition: all 0.2s;
}
.ce-submit-button:hover {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-1px);
}
.ce-form-note {
    margin-top: 0.65rem;
    text-align: center;
    color: var(--ce-slate-400);
    font-size: 0.72rem;
}

/* =========================================================
   TOP PICKS SLIDER
========================================================= */
.ce-top-picks {
    padding: 1.15rem;
    border-radius: 16px;
    /*background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 100%);*/
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    border: 1px solid #848afa;
}
.ce-top-picks-header {
    margin-bottom: 1rem;
}
.ce-top-picks-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.18);
    color: #fbbf24;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}
.ce-top-picks-title {
    margin-top: 0.25rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 750;
}
.ce-top-picks-description {
    margin-top: 0.12rem;
    color: #94a3b8;
    font-size: 0.75rem;
}

.ce-picks-slider-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.ce-picks-slider {
    display: flex;
    gap: 0.7rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 0.15rem 0 0.3rem;
    scrollbar-width: none;
}
.ce-picks-slider::-webkit-scrollbar {
    display: none;
}

.ce-pick-card {
    flex: 0 0 140px;
    width: 140px;
    max-width: 140px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    padding: 0.8rem;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ce-pick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.ce-pick-logo {
    width: 42px;
    height: 42px;
    margin-bottom: 0.55rem;
    border-radius: 9px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ce-pick-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.ce-pick-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.ce-pick-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ce-pick-stars {
    font-size: 0.7rem;
    color: #f59e0b;
    margin-bottom: 0.2rem;
}
.ce-pick-rating {
    color: #64748b;
    font-size: 0.65rem;
    margin-left: 0.15rem;
}
.ce-pick-discount {
    font-size: 0.72rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ce-pick-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.62rem;
    font-weight: 650;
}
.ce-pick-empty {
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 1.2rem 0;
    text-align: center;
    width: 100%;
}

.ce-top-picks-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ce-verified {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #94a3b8;
    font-size: 0.7rem;
}
.ce-verified-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    flex-shrink: 0;
}
.ce-trusted {
    color: #fbbf24;
    font-size: 0.7rem;
    font-weight: 650;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .ce-pick-card {
        flex: 0 0 152px;
        width: 152px;
        max-width: 152px;
    }
}
@media (min-width: 768px) {
    .ce-pick-card {
        flex: 0 0 160px;
        width: 160px;
        max-width: 160px;
        padding: 0.85rem;
    }
}

/* =========================================================
   OFFER GRID
========================================================= */
.ce-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 900px) {
    .ce-offer-grid {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 1.5rem;
        align-items: start;
    }
}
@media (min-width: 1200px) {
    .ce-offer-grid {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 1.75rem;
    }
}

/* OFFER HEADER */
.ce-offer-header {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
    box-shadow: var(--ce-shadow);
}
.ce-store-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
}
.ce-store-logo img {
    width: 100%;
    height: 100%;
    padding: 0.4rem;
    object-fit: contain;
}
.ce-offer-info { min-width: 0; }
.ce-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}
.ce-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}
.ce-badge-code { background: #e0f2fe; color: #0284c7; }
.ce-badge-exclusive { background: #fef3c7; color: #b45309; }
.ce-offer-title {
    color: var(--ce-slate-950);
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 750;
}
.ce-offer-store {
    margin-top: 0.25rem;
    color: var(--ce-slate-500);
    font-size: 0.82rem;
}
.ce-offer-store a {
    color: var(--ce-blue-main);
    font-weight: 650;
    text-decoration: none;
}
.ce-offer-store a:hover { text-decoration: underline; }

@media (max-width: 479px) {
    .ce-offer-header { padding: 1rem; }
    .ce-store-logo { width: 50px; height: 50px; }
    .ce-offer-title { font-size: 1.05rem; }
}

/* CODE BOX */
.ce-code-card {
    margin-top: 1rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
    box-shadow: var(--ce-shadow);
}
.ce-code-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.6rem;
    color: var(--ce-slate-600);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}
.ce-code-label-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #e0f2fe;
    color: #0284c7;
}
.ce-code-row {
    display: flex;
    gap: 0.6rem;
}
.ce-coupon-code {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.6rem 0.9rem;
    border-radius: 11px;
    background: #f8fafc;
    border: 1.5px dashed #93c5fd;
    color: var(--ce-slate-950);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}
.ce-copy-button {
    min-height: 48px;
    padding: 0.6rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 11px;
    background: #fff;
    border: 1.5px solid #bfdbfe;
    color: var(--ce-blue-main);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.ce-copy-button:hover {
    background: #eff6ff;
    border-color: var(--ce-blue-main);
}
.ce-get-deal {
    position: relative;
    width: 100%;
    min-height: 50px;
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(245, 158, 11, 0.35);
    transition: all 0.22s;
}
.ce-get-deal:hover {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.ce-get-deal::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 180%;
    top: -40%;
    left: -90px;
    transform: rotate(20deg);
    background: rgba(255,255,255,0.25);
    transition: left 0.55s ease;
}
.ce-get-deal:hover::after { left: 120%; }
.ce-expiry {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #b45309;
    font-size: 0.75rem;
    font-weight: 600;
}
@media (max-width: 479px) {
    .ce-code-row { flex-direction: column; }
    .ce-copy-button { width: 100%; }
}

/* CONTENT */
.ce-content-section {
    margin-top: 1.1rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
    box-shadow: var(--ce-shadow);
}
.ce-content-section h2 {
    margin-bottom: 0.45rem;
    color: var(--ce-slate-950);
    font-size: 1rem;
    font-weight: 700;
}
.ce-content-section p {
    color: var(--ce-slate-600);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* RELATED STORES */
.ce-related-card {
    position: sticky;
    top: 1.25rem;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
    box-shadow: var(--ce-shadow);
}
.ce-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.05rem;
    border-bottom: 1px solid var(--ce-slate-100);
}
.ce-related-label {
    color: var(--ce-blue-main);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}
.ce-related-title {
    margin-top: 0.1rem;
    color: var(--ce-slate-950);
    font-size: 0.95rem;
    font-weight: 700;
}
.ce-related-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e0f2fe;
    color: #0284c7;
}
.ce-related-list { padding: 0.45rem; }
.ce-related-item { margin-bottom: 0.08rem; }
.ce-related-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.65rem;
    border-radius: 10px;
    color: var(--ce-slate-700);
    text-decoration: none;
    transition: all 0.2s;
}
.ce-related-link:hover {
    background: #f0f9ff;
    color: var(--ce-blue-main);
}
.ce-related-store-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--ce-slate-50);
    color: var(--ce-slate-500);
}
.ce-related-link:hover .ce-related-store-icon {
    background: #e0f2fe;
    color: #0284c7;
}
.ce-related-name {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    font-size: 0.82rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ce-related-arrow {
    color: var(--ce-slate-300);
    font-size: 0.5rem;
}
.ce-related-link:hover .ce-related-arrow {
    color: var(--ce-blue-main);
}
@media (max-width: 899px) {
    .ce-related-card { position: static; }
}

/* FAQ / SHARE */
.ce-similar-section,
.ce-faq-section { margin-top: 2.1rem; }
.ce-heading-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.95rem;
}
.ce-heading-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #e0f2fe;
    color: #0284c7;
}
.ce-heading-row h2 {
    color: var(--ce-slate-950);
    font-size: 1.05rem;
    font-weight: 750;
}

.ce-faq-item {
    overflow: hidden;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
}
.ce-faq-item:hover {
    border-color: #bfdbfe;
    box-shadow: var(--ce-shadow);
}
.ce-faq-button {
    width: 100%;
    padding: 0.85rem 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border: 0;
    background: transparent;
    color: var(--ce-slate-900);
    text-align: left;
    cursor: pointer;
}
.ce-faq-question {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}
.ce-faq-number {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 0.68rem;
    font-weight: 700;
}
.ce-faq-question-text {
    color: var(--ce-slate-800);
    font-size: 0.85rem;
    font-weight: 650;
    line-height: 1.4;
}
.ce-faq-arrow {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--ce-slate-100);
    color: var(--ce-slate-500);
    transition: transform 0.22s;
}
.ce-faq-button[aria-expanded="true"] .ce-faq-arrow {
    transform: rotate(180deg);
    background: #e0f2fe;
    color: #0284c7;
}
.ce-faq-content { padding: 0 0.95rem 0.9rem 3.1rem; }
.ce-faq-answer {
    padding-left: 0.7rem;
    border-left: 2.5px solid #bfdbfe;
    color: var(--ce-slate-500);
    font-size: 0.82rem;
    line-height: 1.6;
}

.ce-share-section {
    margin-top: 1.65rem;
    padding: 1.15rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--ce-slate-200);
    box-shadow: var(--ce-shadow);
}
.ce-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ce-share-button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--ce-slate-50);
    border: 1.5px solid var(--ce-slate-200);
    color: var(--ce-slate-600);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.ce-share-button:hover {
    transform: translateY(-2px);
    border-color: #93c5fd;
    background: #eff6ff;
    color: var(--ce-blue-main);
}
.ce-share-facebook:hover { color: #1877f2; }
.ce-share-whatsapp:hover { color: #16a34a; }

/* Final mobile polish */
@media (max-width: 639px) {
    .ce-preference-card,
    .ce-top-picks,
    .ce-code-card,
    .ce-content-section {
        padding: 1.05rem;
    }
    .ce-section-heading h2 { font-size: 1.1rem; }
}