/* ================================================================
   OFFERS MANAGER — REDESIGNED STYLESHEET v4.0
   Mobile-first responsive design
   Brand: teal #2d6e6e
   ================================================================ */

/* ----------------------------------------------------------------
   VARIABLES & RESET
   ---------------------------------------------------------------- */
:root {
    --om-teal: #2d6e6e;
    --om-teal-dk: #1f5050;
    --om-teal-lt: #eaf3f3;
    --om-teal-xlt: #f4f9f9;
    --om-gold: #c9a84c;
    --om-gold-lt: #faf6eb;
    --om-text: #1a1a1a;
    --om-muted: #6b7280;
    --om-border: #e8e8e8;
    --om-bg: #f9f8f6;
    --om-white: #fff;
    --om-radius: 10px;
    --om-radius-lg: 16px;
    --om-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --om-shadow: 0 4px 20px rgba(0,0,0,0.06);
    --om-shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
    --om-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --om-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.om-wrap *,
.om-single *,
.om-wrap *::before,
.om-single *::before,
.om-wrap *::after,
.om-single *::after {
    box-sizing: border-box;
}

/* ================================================================
   [offers] SHORTCODE — LISTING PAGE
   ================================================================ */

.om-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: inherit;
    color: var(--om-text);
}

/* Layout: sidebar + main */
.om-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* --- SIDEBAR --- */
.om-sidebar {
    position: sticky;
    top: 24px;
}

.om-sidebar-inner {
    background: var(--om-white);
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    padding: 24px;
    box-shadow: var(--om-shadow);
}

.om-sidebar-title {
    margin: 0 0 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--om-teal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.om-filter {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.om-filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.om-filter-field label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--om-muted);
}

.om-filter-field input,
.om-filter-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--om-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--om-text);
    background: var(--om-bg);
    outline: none;
    transition: border-color var(--om-transition), box-shadow var(--om-transition), background var(--om-transition);
    -webkit-appearance: none;
}

.om-filter-field input:focus {
    border-color: var(--om-teal);
    box-shadow: 0 0 0 3px rgba(45, 110, 110, 0.10);
    background: var(--om-white);
}

.om-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.om-filter-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

/* Buttons */
.om-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--om-transition);
    border: none;
    text-align: center;
    flex: 1;
}

.om-btn-primary {
    background: var(--om-teal);
    color: #fff;
}

.om-btn-primary:hover {
    background: var(--om-teal-dk);
    box-shadow: 0 4px 12px rgba(45,110,110,0.25);
}

.om-btn-outline {
    background: transparent;
    color: var(--om-teal);
    border: 1.5px solid var(--om-teal);
}

.om-btn-outline:hover {
    background: var(--om-teal-lt);
}

/* Mobile filter toggle */
.om-filter-toggle {
    display: none;
    width: 100%;
    padding: 12px;
    background: var(--om-white);
    border: 1.5px solid var(--om-border);
    border-radius: var(--om-radius);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--om-teal);
    cursor: pointer;
    margin-bottom: 16px;
    text-align: center;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transition: all var(--om-transition);
}

.om-filter-toggle i {
    font-size: 13px;
}

.om-filter-toggle.active {
    background: var(--om-teal-lt);
    border-color: var(--om-teal);
}

/* --- MAIN AREA --- */
.om-main {
    min-width: 0;
}

.om-search-summary {
    margin-bottom: 20px;
}

.om-search-summary h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: var(--om-text);
}

.om-search-summary p {
    margin: 0;
    font-size: 13px;
    color: var(--om-muted);
    line-height: 1.6;
}

/* --- DEALS GRID --- */
.om-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

/* ================================================================
   DEAL CARD — REDESIGNED
   ================================================================ */
.om-card {
    display: flex;
    flex-direction: column;
    background: var(--om-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--om-radius-lg);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform var(--om-transition), box-shadow var(--om-transition);
    box-shadow: var(--om-shadow-sm);
}

.om-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--om-shadow-lg);
}

.om-card-img {
    position: relative;
    width: 100%;
    padding-top: 62%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.om-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0, 0.15, 1);
}

.om-card:hover .om-card-img img {
    transform: scale(1.06);
}

/* Gradient overlay on card image for polish */
.om-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.12) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Price badge on the image */
.om-card-img::before {
    content: none; /* we use the footer price instead */
}

.om-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.om-card-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--om-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.om-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    flex: 1;
}

.om-card-meta span {
    font-size: 12.5px;
    color: var(--om-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.om-card-meta i {
    color: var(--om-teal);
    width: 16px;
    text-align: center;
    font-size: 11px;
    flex-shrink: 0;
    opacity: 0.8;
}

.om-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--om-border);
    flex-wrap: wrap;
}

.om-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--om-teal);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.om-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--om-teal);
    color: #fff !important;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--om-transition);
    letter-spacing: 0.01em;
}

.om-card:hover .om-card-btn {
    background: var(--om-teal-dk);
    box-shadow: 0 4px 12px rgba(45,110,110,0.3);
}

.om-card-btn i {
    font-size: 10px;
    transition: transform var(--om-transition);
}

.om-card:hover .om-card-btn i {
    transform: translateX(2px);
}

/* No results */
.om-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: var(--om-muted);
    background: var(--om-white);
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
}

.om-no-results i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    opacity: 0.3;
}

/* --- PAGINATION --- */
.om-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.om-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border: 1.5px solid var(--om-border);
    border-radius: 50px;
    background: var(--om-white);
    color: var(--om-teal) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all var(--om-transition);
}

.om-page-btn:hover {
    background: var(--om-teal-lt);
    border-color: var(--om-teal);
}

.om-page-nums {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.om-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    color: var(--om-teal) !important;
    border: 1.5px solid var(--om-border);
    transition: all var(--om-transition);
}

.om-page-num:hover {
    background: var(--om-teal-lt);
    border-color: var(--om-teal);
}

.om-page-num.active {
    background: var(--om-teal);
    color: #fff !important;
    border-color: var(--om-teal);
    box-shadow: 0 2px 8px rgba(45,110,110,0.3);
}

/* ================================================================
   LISTING RESPONSIVE
   ================================================================ */

@media (max-width: 968px) {
    .om-layout {
        grid-template-columns: 1fr;
    }

    .om-sidebar {
        position: static;
        display: none;
    }

    .om-sidebar.om-sidebar-open {
        display: block;
    }

    .om-filter-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .om-wrap {
        padding: 0 14px;
    }

    .om-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .om-search-summary h3 {
        font-size: 17px;
    }

    .om-card-body {
        padding: 14px 16px 16px;
    }

    .om-card-title {
        font-size: 15px;
    }

    .om-card-price {
        font-size: 16px;
    }

    .om-page-num {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .om-page-btn {
        padding: 7px 12px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .om-wrap {
        padding: 0 10px;
    }

    .om-sidebar-inner {
        padding: 18px;
    }

    .om-card-body {
        padding: 12px 14px 14px;
    }
}


/* ================================================================
   [single_offer] SHORTCODE — DEAL PAGE — REDESIGNED
   ================================================================ */

.om-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-family: inherit;
    color: var(--om-text);
}

.om-msg {
    color: var(--om-teal);
    font-style: italic;
    padding: 20px;
}

/* --- BREADCRUMB --- */
.om-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0 16px;
    font-size: 14px;
    color: var(--om-muted);
    flex-wrap: wrap;
    overflow: hidden;
}

.om-bc a {
    color: var(--om-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: opacity var(--om-transition);
    white-space: nowrap;
}

.om-bc a:hover {
    opacity: 0.7;
}

.om-bc-sep {
    color: var(--om-border);
}

.om-bc span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-weight: 500;
}


/* ================================================================
   HERO / GALLERY — REDESIGNED
   ================================================================ */
.om-hero {
    position: relative;
    width: 100%;
    padding-top: 50%;
    background: #0a1e1e;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--om-shadow-lg);
}

.om-slides-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.om-sl {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.om-sl-active {
    opacity: 1;
}

.om-sl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.om-hero-empty {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--om-teal) 0%, var(--om-teal-dk) 100%);
}

/* Slide navigation buttons — redesigned */
.om-sl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--om-teal);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--om-transition);
    z-index: 3;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    opacity: 0;
}

.om-hero:hover .om-sl-btn {
    opacity: 1;
}

.om-sl-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.om-sl-prev {
    left: 16px;
}

.om-sl-next {
    right: 16px;
}

/* Slide dots — repositioned to bottom */
.om-sl-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.om-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: all var(--om-transition);
    padding: 0;
}

.om-dot-on {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.om-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Hero overlay — redesigned: cleaner, less obtrusive */
.om-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.2) 35%,
        transparent 60%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 24px 28px;
    z-index: 2;
    pointer-events: none;
}

.om-hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    pointer-events: auto;
    max-width: 520px;
    width: 100%;
    /* Removed the frosted glass box — text now floats cleanly on gradient */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.om-hero-loc {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.om-hero-loc i {
    font-size: 11px;
    color: var(--om-gold);
}

.om-hero-title {
    margin: 0;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    word-break: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.om-hero-pill {
    display: inline-block;
    background: var(--om-teal);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 16px rgba(45,110,110,0.4);
    margin-top: 4px;
}


/* --- TRUST BAR --- */
.om-trust {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--om-border);
    border-radius: 14px;
    background: var(--om-white);
    margin: 20px 0 0;
    overflow: hidden;
    box-shadow: var(--om-shadow-sm);
}

.om-trust-item {
    flex: 1 1 140px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--om-text);
    border-right: 1px solid var(--om-border);
}

.om-trust-item:last-child {
    border-right: none;
}

.om-trust-item i {
    color: var(--om-teal);
    font-size: 16px;
    flex-shrink: 0;
    opacity: 0.8;
}


/* --- BODY: two column layout --- */
.om-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    padding-top: 28px;
}

.om-col-left,
.om-col-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* --- CARD / BOX --- redesigned */
.om-box {
    background: var(--om-white);
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    padding: 28px;
    box-shadow: var(--om-shadow);
    transition: box-shadow var(--om-transition);
}

.om-box-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--om-text);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Colored accent line under box title */
.om-box-title::after {
    content: '';
    display: block;
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--om-teal), transparent);
    margin-left: 12px;
    border-radius: 2px;
}

.om-box-sub {
    margin: -6px 0 18px;
    font-size: 13px;
    color: var(--om-muted);
    line-height: 1.6;
}


/* --- DETAILS LIST --- */
.om-details {
    display: flex;
    flex-direction: column;
}

.om-detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--om-border);
    transition: background var(--om-transition);
}

.om-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.om-detail-row:hover {
    background: var(--om-teal-xlt);
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 0;
}

.om-detail-row:first-child:hover {
    border-radius: 8px 8px 0 0;
}

.om-detail-row:last-child:hover {
    border-radius: 0 0 8px 8px;
}

.om-detail-ic {
    width: 38px;
    height: 38px;
    background: var(--om-teal-lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--om-teal);
    font-size: 14px;
    transition: all var(--om-transition);
}

.om-detail-row:hover .om-detail-ic {
    background: var(--om-teal);
    color: #fff;
}

.om-detail-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.om-detail-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--om-muted);
    margin-bottom: 2px;
    font-weight: 600;
}

.om-detail-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--om-text);
    word-break: break-word;
    overflow-wrap: break-word;
}


/* --- PRICE BOX --- redesigned */
.om-price-box {
    border-radius: var(--om-radius-lg);
    background: linear-gradient(135deg, var(--om-teal) 0%, var(--om-teal-dk) 100%);
    box-shadow: var(--om-shadow), 0 4px 24px rgba(45,110,110,0.2);
    overflow: hidden;
    padding: 0;
}

.om-price-inner {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border-radius: 0;
    margin: 0;
}

.om-price-lbl {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.om-price-val {
    margin: 4px 0;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    word-break: break-word;
    letter-spacing: -0.02em;
}

.om-price-note {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

.om-price-avail {
    margin: 6px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.om-price-avail i {
    color: var(--om-gold);
    animation: om-pulse 2s infinite;
}

@keyframes om-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- CHANNELS --- */
.om-box-channels {
    /* No extra margin — handled by gap on parent */
    margin-top: 0;
}

.om-channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.om-ch {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all var(--om-transition);
    border: 1.5px solid transparent;
}

.om-ch:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* WhatsApp */
.om-ch-wa {
    background: #f0fdf5;
    border-color: #d1fae5;
}

.om-ch-wa:hover {
    border-color: #25d366;
}

.om-ch-wa .om-ch-ic {
    background: #25d366;
    color: #fff;
}

.om-ch-wa strong {
    color: #14532d;
}

.om-ch-wa small {
    color: #4d7a5a;
}

.om-ch-wa .om-ch-arr {
    color: #25d366;
}

/* Instagram */
.om-ch-ig {
    background: #fdf2f8;
    border-color: #fce7f3;
}

.om-ch-ig:hover {
    border-color: #dd2a7b;
}

.om-ch-ig .om-ch-ic {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

.om-ch-ig strong {
    color: #6b1340;
}

.om-ch-ig small {
    color: #9c4570;
}

.om-ch-ig .om-ch-arr {
    color: #dd2a7b;
}

/* Channel icon */
.om-ch-ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.om-ch-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.om-ch-txt strong {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.om-ch-txt small {
    font-size: 12px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.om-ch-arr {
    font-size: 12px;
    opacity: 0.5;
    flex-shrink: 0;
    transition: transform var(--om-transition), opacity var(--om-transition);
}

.om-ch:hover .om-ch-arr {
    opacity: 1;
    transform: translateX(3px);
}


/* --- ENQUIRY FORM --- */
.om-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.om-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.om-form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.om-form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--om-text);
}

.om-req {
    color: var(--om-teal);
}

.om-opt {
    font-weight: 400;
    color: var(--om-muted);
}

.om-form-field input,
.om-form-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--om-border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--om-text);
    background: var(--om-bg);
    outline: none;
    transition: all var(--om-transition);
    -webkit-appearance: none;
}

.om-form-field input:focus,
.om-form-field textarea:focus {
    border-color: var(--om-teal);
    background: var(--om-white);
    box-shadow: 0 0 0 3px rgba(45, 110, 110, 0.10);
}

.om-form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.om-submit {
    background: var(--om-teal);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--om-transition);
    width: 100%;
    box-shadow: 0 4px 16px rgba(45,110,110,0.25);
}

.om-submit:hover {
    background: var(--om-teal-dk);
    box-shadow: 0 6px 24px rgba(45,110,110,0.35);
    transform: translateY(-1px);
}

.om-submit i {
    transition: transform var(--om-transition);
}

.om-submit:hover i {
    transform: translateX(3px);
}

.om-privacy {
    margin: 4px 0 0;
    font-size: 11px;
    color: var(--om-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


/* --- ALERTS --- */
.om-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.om-alert i {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.om-alert p {
    margin: 3px 0 0;
    opacity: 0.85;
}

.om-alert strong {
    display: block;
}

.om-alert-ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.om-alert-ok i {
    color: #10b981;
}

.om-alert-err {
    background: #fef2f2;
    color: #7c2020;
    border: 1px solid #fecaca;
}

.om-alert-err i {
    color: #ef4444;
}


/* ================================================================
   SINGLE OFFER RESPONSIVE — TABLET
   ================================================================ */

@media (max-width: 900px) {
    .om-single {
        padding: 0 16px 48px;
    }

    .om-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 20px;
    }

    .om-hero {
        border-radius: 14px;
        padding-top: 55%;
    }

    .om-detail-row:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}


/* ================================================================
   SINGLE OFFER RESPONSIVE — MOBILE
   ================================================================ */

@media (max-width: 600px) {
    .om-single {
        padding: 0 12px 40px;
    }

    /* Breadcrumb */
    .om-bc {
        padding: 14px 0 12px;
        font-size: 13px;
        gap: 6px;
    }

    /* Hero */
    .om-hero {
        padding-top: 65%;
        border-radius: 12px;
    }

    .om-sl-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
        opacity: 1;
    }

    .om-sl-prev {
        left: 10px;
    }

    .om-sl-next {
        right: 10px;
    }

    .om-sl-dots {
        bottom: 80px;
        gap: 6px;
    }

    .om-dot {
        width: 7px;
        height: 7px;
    }

    .om-hero-overlay {
        padding: 0 16px 20px;
    }

    .om-hero-info {
        max-width: 100%;
        gap: 6px;
    }

    .om-hero-loc {
        font-size: 10px;
    }

    .om-hero-title {
        font-size: 18px;
    }

    .om-hero-pill {
        font-size: 13px;
        padding: 6px 16px;
    }

    /* Trust bar */
    .om-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 12px;
        margin-top: 14px;
    }

    .om-trust-item {
        border-right: none;
        border-bottom: 1px solid var(--om-border);
        padding: 12px 14px;
        font-size: 12px;
        gap: 8px;
    }

    .om-trust-item:nth-child(odd) {
        border-right: 1px solid var(--om-border);
    }

    .om-trust-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .om-trust-item i {
        font-size: 14px;
    }

    /* Body */
    .om-body {
        gap: 16px;
        padding-top: 16px;
    }

    /* Boxes */
    .om-box {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .om-box-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .om-box-title::after {
        display: none;
    }

    .om-box-sub {
        font-size: 12px;
        margin-bottom: 14px;
    }

    /* Details */
    .om-detail-row {
        gap: 12px;
        padding: 10px 0;
    }

    .om-detail-row:hover {
        background: none;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .om-detail-ic {
        width: 34px;
        height: 34px;
        font-size: 13px;
        border-radius: 8px;
    }

    .om-detail-lbl {
        font-size: 9px;
    }

    .om-detail-val {
        font-size: 13px;
    }

    /* Price */
    .om-price-inner {
        padding: 22px 20px;
    }

    .om-price-val {
        font-size: 30px;
    }

    /* Channels */
    .om-ch {
        padding: 12px 14px;
        gap: 12px;
    }

    .om-ch-ic {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .om-ch-txt strong {
        font-size: 13px;
    }

    .om-ch-txt small {
        font-size: 11px;
    }

    /* Form */
    .om-form-row {
        grid-template-columns: 1fr;
    }

    .om-form-field label {
        font-size: 12px;
    }

    /* 16px font prevents iOS auto-zoom on focus */
    .om-form-field input,
    .om-form-field textarea {
        font-size: 16px;
        padding: 11px 12px;
    }

    .om-submit {
        font-size: 15px;
        padding: 13px 24px;
    }

    /* Alerts */
    .om-alert {
        padding: 14px 16px;
        gap: 10px;
        font-size: 12px;
    }

    .om-alert i {
        font-size: 16px;
    }
}


/* ================================================================
   SINGLE OFFER RESPONSIVE — VERY SMALL PHONES
   ================================================================ */

@media (max-width: 380px) {
    .om-single {
        padding: 0 8px 32px;
    }

    .om-hero-title {
        font-size: 16px;
    }

    .om-hero-pill {
        font-size: 12px;
        padding: 5px 14px;
    }

    .om-box {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .om-trust-item {
        padding: 10px 12px;
        font-size: 11px;
    }

    .om-ch {
        padding: 10px 12px;
    }

    .om-ch-ic {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 10px;
    }

    .om-ch-txt strong {
        font-size: 12px;
    }

    .om-ch-txt small {
        font-size: 10px;
    }

    .om-detail-ic {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .om-detail-val {
        font-size: 12px;
    }

    .om-price-inner {
        padding: 18px 16px;
    }

    .om-price-val {
        font-size: 26px;
    }

    .om-submit {
        font-size: 14px;
        padding: 12px 20px;
    }
}