/* Main container for the bookmakers list */
.cag-bookmakers-list-wrapper {
    font-family: 'Inter', sans-serif;
    padding: 25px;
    background-color: #f7f9fc;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 25px auto;
    max-width: 1280px;
    overflow: hidden;
}

/* Main title for the list section */
.cag-list-main-title {
    font-size: 2.8em;
    font-weight: 900;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 15px;
    position: relative;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.cag-list-main-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Individual list item (each bookmaker) */
.cag-list-item {
    display: grid;
    grid-template-columns: 90px 2fr 2.5fr 1.2fr 1.5fr;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 18px;
    background-color: #ffffff;
    padding: 20px 25px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.cag-list-item:last-child {
    margin-bottom: 0;
}

.cag-list-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Column styles */
.cag-list-col {
    padding: 0 10px;
}

/* Rank/Badge Column */
.cag-list-rank-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 100%;
    padding-left: 0;
}

.cag-list-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #28a745, #218838);
    color: #ffffff;
    font-size: 0.65em;
    font-weight: bold;
    padding: 5px 10px;
    border-bottom-right-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.cag-badge-top-sportsbook { background: linear-gradient(45deg, #f39c12, #e67e22); }
.cag-badge-best-value { background: linear-gradient(45deg, #27ae60, #2ecc71); }
.cag-badge-highly-rated { background: linear-gradient(45deg, #3498db, #5faee7); }
.cag-badge-new-sportsbook { background: linear-gradient(45deg, #9b59b6, #8e44ad); }

.cag-list-position {
    font-size: 1.6em;
    font-weight: 900;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 0;
}

/* Info Column */
.cag-list-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 10px;
}

.cag-list-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.cag-list-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cag-list-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.cag-list-title-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.cag-list-title {
    font-size: 1.25em;
    font-weight: 700;
    color: #34495e;
    margin: 0;
    line-height: 1.3;
}

.cag-list-rating-prominent {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    font-weight: 700;
    color: #34495e;
    margin-top: 5px;
}

.cag-list-stars-large {
    color: #f1c40f;
    margin-right: 6px;
    font-size: 1.1em;
}
.cag-rating-value-large {
    font-size: 1em;
    color: #555;
    margin-right: 10px;
}

.cag-list-review-link-prominent {
    color: #3498db;
    text-decoration: none;
    margin-left: 8px;
    font-size: 0.9em;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cag-list-review-link-prominent:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Offer Text Column */
.cag-list-offer-col {
    padding: 0 15px;
}

.cag-list-offer-text {
    font-size: 1.3em;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cag-list-bonus-code {
    font-size: 0.85em;
    color: #6c757d;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cag-code-highlight {
    background-color: #eaf6ff;
    border: 1px solid #d4edff;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    color: #007bff;
    margin-right: 6px;
    white-space: nowrap;
}

.cag-copy-icon {
    cursor: pointer;
    color: #7f8c8d;
    font-size: 0.9em;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.cag-copy-icon:hover {
    color: #0056b3;
}

/* Bonus Value Column */
.cag-list-bonus-value-col {
    text-align: center;
}

.cag-list-bonus-value {
    font-size: 0.95em;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.cag-value-amount {
    font-size: 2.2em;
    font-weight: 900;
    color: #27ae60;
    display: block;
    margin-top: 5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Actions Column */
.cag-list-actions-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    padding-right: 0;
}

.cag-list-claim-button {
    display: inline-block;
    background: linear-gradient(90deg, #28a745, #218838);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.cag-list-claim-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    transform: skewX(-20deg);
}

.cag-list-claim-button:hover::before {
    left: 100%;
}

.cag-list-claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(90deg, #218838, #28a745);
}

.cag-list-pros {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
}

.cag-list-pros li {
    font-size: 0.85em;
    color: #555;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cag-pro-icon {
    color: #28a745;
    margin-left: 5px;
    font-size: 0.9em;
}

/* Terms Row */
.cag-list-terms-row {
    grid-column: 2 / -1;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-top: 1px dashed #e9ecef;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.cag-list-terms-link {
    font-size: 0.75em;
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.cag-list-terms-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.cag-list-payment-methods {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    margin-left: auto;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.cag-payment-method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 51px;
    border-radius: 4px;
    background-color: #fefefe;
    padding: 0px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cag-payment-method-item img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid #e0d6d6;
}

/* No Bookmakers Message */
.cag-no-casas {
    text-align: center;
    padding: 30px;
    font-size: 1.1em;
    color: #7f8c8d;
    background-color: #f0f2f5;
    border-radius: 8px;
    margin: 15px auto;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Responsive Adjustments for List */
@media (max-width: 1024px) {
    .cag-list-item {
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: auto auto auto;
        padding: 15px 20px;
    }
    /* ... (Existing Tablet Styles) ... */
    .cag-list-rank-col { grid-column: 1 / 2; grid-row: 1 / 2; align-items: flex-start; text-align: left; padding-left: 0; position: static; margin-top: 0; }
    .cag-list-badge { position: static; margin-bottom: 5px; left: auto; top: auto; }
    .cag-list-position { font-size: 1.2em; margin-top: 0; }
    .cag-list-info-col { grid-column: 1 / 2; grid-row: 2 / 3; flex-direction: column; align-items: flex-start; padding: 0 10px; gap: 10px; }
    .cag-list-offer-col { grid-column: 1 / 2; grid-row: 3 / 4; padding: 0 10px; text-align: left; }
    .cag-list-bonus-value-col { grid-column: 2 / 3; grid-row: 1 / 2; text-align: right; padding-right: 0; }
    .cag-list-actions-col { grid-column: 2 / 3; grid-row: 2 / 4; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-right: 0; }
    .cag-list-terms-row { grid-column: 1 / -1; margin-top: 2px; padding-top: 2px; padding-bottom: 2px; justify-content: space-between; flex-direction: row; flex-wrap: wrap; padding-left: 20px; padding-right: 20px; }
    .cag-list-payment-methods { margin-left: auto; margin-right: 0; justify-content: flex-end; width: auto; flex-wrap: nowrap; }
}

@media (max-width: 767px) {
    /* ... (Existing Mobile Styles) ... */
    .cag-bookmakers-list-wrapper { padding: 15px; margin: 15px 0; }
    .cag-list-main-title { font-size: 2em; margin-bottom: 25px; }
    .cag-list-item { display: flex; flex-direction: column; align-items: center; padding: 15px; margin-bottom: 15px; gap: 15px; }
    .cag-list-col { width: 100%; padding: 0; text-align: center; margin-bottom: 0; }
    .cag-list-rank-col { order: 1; padding-top: 0; display: flex; flex-direction: column; align-items: center; gap: 5px; }
    .cag-list-badge { position: static; margin-bottom: 0; font-size: 0.6em; }
    .cag-list-position { font-size: 1.3em; margin-top: 0; }
    .cag-list-info-col { order: 2; flex-direction: column; gap: 8px; align-items: center; }
    .cag-list-logo-wrap { flex-direction: column; gap: 5px; }
    .cag-list-logo { width: 200px; height: 90px; margin-bottom: 0; }
    .cag-list-offer-col { order: 3; padding: 0; }
    .cag-list-bonus-value-col { order: 4; flex-direction: column; align-items: center; padding: 0; }
    .cag-value-amount { font-size: 1.8em; margin-left: 0; margin-top: 5px; }
    .cag-list-actions-col { order: 5; padding-right: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .cag-list-terms-row { order: 6; margin-top: 10px; padding-top: 10px; padding-bottom: 10px; flex-direction: column; justify-content: center; align-items: center; padding-left: 15px; padding-right: 15px; gap: 8px; }
}

/* ==========================================================================
   BANNER SHORTCODE MODELS (CRO OPTIMIZED)
   ========================================================================== */

/* --- Model 1: Standard Banner (Dark Optimized) --- */
.cag-banner-model-1 {
    background: #0b1622;
    border: 1px solid #2c3e50;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    margin: 20px 0;
}

.cag-banner-model-1 .cag-banner-title {
    font-size: 0.9em;
    color: #a0aec0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cag-banner-model-1 .cag-banner-name {
    font-size: 1.5em;
    font-weight: 800;
    margin: 10px 0;
    color: #ffffff;
}

.cag-banner-model-1 .cag-banner-logo {
    width: 120px;
    height: 60px;
    margin: 0 auto 15px;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cag-banner-model-1 .cag-banner-bonus {
    font-size: 1.2em;
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 15px;
}

.cag-banner-model-1 .cag-banner-button {
    display: inline-block;
    background: linear-gradient(180deg, #28a745 0%, #218838 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.cag-banner-model-1 .cag-banner-button:hover {
    transform: scale(1.05);
}

/* --- Model 2: "Clean Corporate Dark" Banner (CRO V13) --- */
.cag-banner-model-2 {
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin: 35px auto; /* Centered */
    box-sizing: border-box;
    max-width: 1000px; /* Optional max-width */
}

.cag-banner-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #1e293b; /* Slate 800 - Modern Corporate Dark */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    gap: 20px;
    overflow: hidden;
}

.cag-banner-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Main Content Section */
.cag-banner-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
    z-index: 1;
}

.cag-banner-logo {
    height: 70px; 
    width: 160px; /* Significantly increased width for wide logos */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent; /* Default transparent, overridden by inline style if set */
    padding: 2px;
    border-radius: 4px;
}

.cag-banner-logo img {
    max-height: 100%;
    max-width: 100%; /* Critical fix to prevent overflowing/cutting */
    width: auto;
    object-fit: contain;
    /* No forced background */
}

.cag-banner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cag-banner-name {
    font-size: 1.3em;
    font-weight: 800;
    color: #ffffff !important; /* Force white text */
    margin: 0 0 5px 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Better readability */
}

.cag-banner-slogan {
    font-size: 1em;
    color: #e2e8f0 !important; /* Force light gray text */
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}


/* Footer Section (Bonus + CTA) */
.cag-banner-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border: none;
    z-index: 1;
}

.cag-banner-bonus {
    font-size: 0.9em;
    font-weight: 600;
    color: #94a3b8;
    text-align: right;
    display: none;
}

.cag-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f1c40f 0%, #f39c12 100%); /* Gold Gradient */
    color: #000000;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(243, 156, 18, 0.3);
    white-space: nowrap;
}

.cag-banner-button:hover {
    background: linear-gradient(180deg, #f39c12 0%, #d35400 100%);
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.5);
}

/* Social Proof Styling */
.cag-social-proof,
.cag-social-proof span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #4ade80 !important; /* Green success color forced on parent and children */
    font-weight: 500;
}

.cag-social-proof-compact {
    font-size: 0.75em;
    margin-top: 2px;
    opacity: 0.9;
}

.cag-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444; /* Red attention color */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.4);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Endowed Progress Bar Styles */
.cag-progress-container {
    margin-top: 15px;
    width: 100%;
    max-width: 300px; /* Keep it contained */
}
.cag-progress-text,
.cag-progress-text span{
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: #cbd5e0 !important;
    margin-bottom: 5px;
    font-weight: 600;
}

.cag-progress-bar {
    height: 8px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.cag-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f1c40f, #f39c12); /* Gold gradient matches button */
    border-radius: 4px;
    width: 0; /* Start at 0 for animation */
    animation: fillProgress 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

@keyframes fillProgress {
    to { width: 70%; }
}

.cag-progress-sub {
    font-size: 0.75em;
    color: #94a3b8;
    margin-top: 4px;
    text-align: right;
    font-style: italic;
}


/* Mobile Responsiveness */
@media (max-width: 700px) {
    .cag-banner-card {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .cag-banner-main {
        flex-direction: column;
        gap: 12px;
    }

    .cag-banner-logo {
        height: 50px;
    }

    .cag-banner-info {
        align-items: center;
    }

    .cag-banner-footer {
        width: 100%;
        align-items: center;
    }

    .cag-banner-button {
        width: 100%;
        max-width: 300px;
    }
}

/* --- Model 3: Dark Gold Premium Banner (CRO V7) --- */
.cag-prediction-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b1622; /* Deep Dark Blue/Black */
    background-image: linear-gradient(to right, #0b1622 0%, #15202b 100%);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
    border: 1px solid #2c3e50;
}

.cag-prediction-banner:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    border-color: #34495e;
}

.cag-banner-content-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.cag-banner-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cag-prediction-banner-logo {
    height: 35px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex-shrink: 0;
}

.cag-prediction-banner-text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-transform: none;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cag-prediction-banner-name {
    color: #f1c40f;
    font-weight: 800;
    text-transform: uppercase;
}

.cag-prediction-banner-cta {
    background: linear-gradient(180deg, #f1c40f 0%, #f39c12 100%);
    color: #000000;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(243, 156, 18, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}

.cag-prediction-banner:hover .cag-prediction-banner-cta {
    background: linear-gradient(180deg, #f39c12 0%, #d35400 100%);
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.5);
}

.cag-prediction-banner-cta::after {
    content: '';
}

@media (max-width: 600px) {
    .cag-prediction-banner {
        flex-direction: column;
        align-items: center;
        padding: 12px;
        text-align: center;
        gap: 10px;
    }

    /* Use display: contents to unwrap containers and allow global reordering */
    .cag-banner-content-wrapper,
    .cag-banner-text-group {
        display: contents;
    }

    /* Reorder items for Mobile: Logo -> Text -> CTA -> Social Proof */
    .cag-prediction-banner-logo {
        order: 1;
        height: 40px;
        margin-bottom: 5px;
    }

    .cag-prediction-banner-text {
        order: 2;
        font-size: 1rem;
        text-align: center;
        width: 100%;
        margin-bottom: 5px;
    }

    .cag-prediction-banner-cta {
        order: 3;
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }

    .cag-social-proof-compact {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}

/* --- Model 4: Sticky Mobile Footer (CRO Option 3) --- */
.cag-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0b1622; /* Dark background */
    border-top: 3px solid #f1c40f; /* Gold accent */
    z-index: 99999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cag-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px; /* Max width for desktop look */
    text-decoration: none;
    color: white;
}

.cag-sticky-logo {
    height: 45px;
    width: 100px; /* Increased width for mobile logos */
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    padding: 2px;
}

.cag-sticky-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cag-sticky-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    overflow: hidden;
}

.cag-sticky-offer {
    font-weight: 800;
    font-size: 0.95em;
    color: #f1c40f;
    white-space: normal; /* Allow text to wrap */
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cag-sticky-sub {
    font-size: 0.75em;
    color: #cbd5e0;
}

.cag-sticky-btn {
    background: linear-gradient(180deg, #28a745 0%, #218838 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    margin-left: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.cag-sticky-close {
    position: absolute;
    top: -15px;
    right: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Hide on very small screens if needed, or adjust padding */
@media (max-width: 350px) {
    .cag-sticky-footer { padding: 8px 5px; }
    .cag-sticky-logo { display: none; }
}
