/* ================================================================
   COPE Delivery Extras — cope-extras.css
   ================================================================ */

/* ── Options wrapper ─────────────────────────────────────── */
.cope-extras-options {
    margin: 10px 0 16px;
    padding: 14px 16px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9em;
    width: 60%;    
}

.cope-extras-title {
    margin: 0 0 10px;
    font-size: 0.95em;
    font-weight: 600;
    color: #333;
}

/* ── Single radio option row ─────────────────────────────── */
.cope-extras-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 9px;
    cursor: pointer;
    line-height: 1.5;
    color: #444;
}

.cope-extras-option:last-child {
    margin-bottom: 0;
}

.cope-extras-option input[type="radio"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #1a73e8;
}

.cope-extras-option span {
    flex: 1;
}

.cope-extras-option em {
    display: block;
    font-size: 0.9em;
    color: #888;
    font-style: normal;
    margin-top: 2px;
}

.cope-extras-option a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.92em;
}

.cope-extras-option a:hover {
    text-decoration: underline;
}

/* ── Divider between Sydney extras and warranty ──────────── */
.cope-extras-warranty {
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid #e5e5e5;
}

.cope-extras-syd-only + .cope-extras-warranty {
    border-top: 1px dashed #ddd;
}

/* ── Delivery info link ──────────────────────────────────── */
.cope-extras-delivery-info {
    margin: 6px 0 12px !important;
    font-size: 0.88em !important;
    color: #666 !important;
}

.cope-extras-delivery-info a {
    color: #1a73e8;
    text-decoration: underline;
}

/* ── Cart page extras block ──────────────────────────────── */
.cope-extras-cart-options {
    margin: 8px 0 4px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    font-size: 0.85em;
}

/* ── Call notice ─────────────────────────────────────────── */
.cope-extras-call-notice td {
    padding: 8px 0 !important;
}

.cope-extras-call-notice a {
    color: #333 !important;
}

/* ── Highlighted selected option ────────────────────────── */
.cope-extras-option input[type="radio"]:checked + span {
    color: #111;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .cope-extras-options {
        width: 100%;    
    }
}