/* ══════════════════════════════════════════════════════════════════
   SINGLE PRODUCT — Delivery Options
   Appears at the end of .entry-summary
   ══════════════════════════════════════════════════════════════════ */
.gt-delivery-options {
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.gt-do-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.gt-do-header__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gt-do-header__info {
    display: inline-flex;
    color: var(--text-secondary);
    cursor: help;
}

/* Location row */
.gt-do-location {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.gt-do-location__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--text-primary);
    margin-top: 2px;
}

.gt-do-location__text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

.gt-do-location__change {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 4px 0 4px 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    cursor: pointer;
}

.gt-do-location__change:hover,
.gt-do-location__change:focus-visible {
    color: var(--brand-hover);
}

/* District picker panel */
.gt-do-district-panel {
    margin: -6px 0 14px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.gt-do-district-panel__label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gt-do-district-select {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 34px;
    cursor: pointer;
}

.gt-do-district-select:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 1px;
}

/* Standard delivery / COD rows */
.gt-do-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gt-do-row + .gt-do-row {
    margin-top: 14px;
}

.gt-do-row__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.gt-do-row__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gt-do-row__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.gt-do-row__subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.gt-do-row__value {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

@media only screen and (min-width: 768px) {
    .gt-do-location__text,
    .gt-do-row__title,
    .gt-do-row__value {
        font-size: 16px;
    }
}
