<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #152039;
  --primary-light: #eff6ff;
  --primary-mid: #bfdbfe;
  --orange: #f97316;
  --orange-light: #fff7ed;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --bg: #f1f5f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --light: #94a3b8;
}

body {
  background: var(--bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  min-height: 100vh;
  padding: 28px 16px 48px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

.header-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.live-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: livepulse 1.4s ease infinite;
}

@keyframes livepulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

header h1 span { color: var(--primary); }

header p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* GRID — 3 columns */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; gap: 12px; }
}

/* CARD */
.card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.12), 0 4px 16px rgba(0,0,0,0.06);
  border-color: var(--primary-mid);
}

.card-stripe {
  .card-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #7c3aed);
  border-radius: 20px 20px 0 0;  /* !important లేకుండా */
  overflow: visible;
}
}

.card-body {
  padding: 10px 14px 12px;
}

/* Meta row */
.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 1px;
}

.meta-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.fee-chip {
  background: #fef3c7;
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 5px;
  border: 1px solid #fde68a;
  display: inline-block;
}

/* NUMBER BLOCK */
.number-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 5px 0 0px;
  margin-bottom: 0px;
  text-align: center;
}

.number-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.phone-icon {
  background: #1abc9c;
    color: #ffffff !important;
    width: 25px;
    height: 25px;
    border-radius: 5px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1 !important;
}

.phone-icon svg { width: 12px; height: 12px; fill: white; }

/* THE NUMBER */
.number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #94a3b8;
  line-height: 1;
  white-space: nowrap;
}

/* Highlighted digits — same size, only color changes */
.number .hl {
  color: #ea580c;
  font-weight: 800;
}

.pattern-badge {
  align-items: center;
  gap: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  
}

/* SUM */
.sum-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 5px 10px;
  background: var(--green-light);
  border-radius: 10px;
  border: 1px solid #bbf7d0;
}

.sum-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

.sum-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #15803d;
}

.sum-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* COUNTDOWN */
.countdown-wrap {
  background: #031c34;
  border: 1px solid #e2e8f0;
  border-radius: 12px 12px 0px 0px !important;
  padding: 8px 8px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.cd-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
  margin-right: 6px;
}

.cd-label::before, .cd-label::after { display: none; }

.cd-units {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1;
  min-width: 26px;
  text-align: center;
  background: #eff6ff;
  border-radius: 5px;
  padding: 3px 2px;
}

.cd-unit-label {
  font-size: 0.46rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-top: 2px;
}

.cd-sep {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #93c5fd;
  padding-bottom: 10px;
  opacity: 0.8;
  text-align: center;
}

/* CLOSED STATE */
.card--closed {
  opacity: 0.82;
}

.card--closed .card-stripe {
  background: linear-gradient(90deg, #dc2626, #991b1b) !important;
}

.card--closed .number-block {
  background: #fef2f2;
  border-color: #fecaca;
}

.card--closed .phone-icon {
  background: #dc2626;
  box-shadow: 0 3px 10px rgba(220,38,38,0.25);
}

.card--closed .number {
  color: #7f1d1d;
}

.closed-badge {
  width: 100%;
  padding: 10px;
  background: #dc2626;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 11px;
  text-align: center;
  cursor: not-allowed;
  box-shadow: 0 4px 14px rgba(220,38,38,0.28);
}

/* BID BUTTON */
.bid-btn {
  width: 100%;
  padding: 10px;
  background: var(--primary);
  border: none;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Arrow animation */
.bid-btn .arrow { 
  transition: transform 0.2s; 
}

.bid-btn:hover {
  background: rgb(34, 120, 188);
  transform: translateY(-2px);
}

.bid-btn:hover .arrow { 
  transform: translateX(5px); 
}

.bid-btn:active { 
  transform: translateY(0); 
}

/* Shine Effect */
.bid-btn::after {
  content: '';
  position: absolute;
  top: 0; 
  left: -120%;
  width: 60%; 
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s;
}
.bid-btn:hover::after { 
  left: 160%; 
}

/* 🔥 Slide Border Effect (Inserted from btn-slide) */
.bid-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: left 0.3s ease;
}

.bid-btn:hover::before {
  left: 0;
}

/* Bottom Border */
.bid-btn::marker { display: none; } /* safety */

.bid-btn::after {
  /* keeping shine effect already above */
}

.bid-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: right 0.3s ease;
}

.bid-btn:hover span::after {
  right: 0;
}

/* Button 7: Slide Border */
.btn-slide {
  position: relative;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #FFF;
  background: #152039;
  border: none;
  cursor: pointer;
  overflow: hidden;
  width: 50%;
  border-radius: 5px;
}

.btn-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: #f39c12;
  transition: left 0.3s ease;
}

.btn-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 3px;
  background: #f39c12;
  transition: right 0.3s ease;
}

.btn-slide:hover::before {
  left: 0;
}

.btn-slide:hover::after {
  right: 0;
}

.btn-slide:hover {
  color: #f39c12;
}

/* Button 10: Split Text */
.btn-split {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #fff;
  background: #16a085;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
}

.btn-split span {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  display: inline-block;
}

.btn-split::before,
.btn-split::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #1abc9c;
  transition: transform 0.4s ease;
  z-index: 1;
}

.btn-split::before {
  left: 0;
  transform: translateX(-100%);
}

.btn-split::after {
  right: 0;
  transform: translateX(100%);
}

.btn-split:hover::before {
  transform: translateX(0);
}

.btn-split:hover::after {
  transform: translateX(0);
}

.btn-split:hover span {
  letter-spacing: 2px;
}

.col.mb-4 {
    position: relative;
    padding-top: 0px;
    margin-top: 15px !important
}

@media (max-width: 767px) {
  .col.mb-4 {
    padding-top: 0px !important;
    margin-top: 8px !important;
  }
}

.numberweb.card {
  position: relative;
  overflow: visible !important;
}

.bid-timer-wrapper {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  white-space: nowrap;
  color: #ff8d06;
  border-radius: 5px;
  padding: 4px 12px;
  transition: none !important;
}

.card-body-custom {
  padding: 0px 10px 10px 10px !important;
  overflow: visible !important;
}

.numberweb.card {
  overflow: visible !important;
}

/* btn-split card లోపల సరిగ్గా fit అవ్వాలి */
.text-center.mt-3 {
  padding: 0 !important;
  margin: 2px 0 0 0 !important;
}

.btn-split {
  overflow: hidden !important; /* slide effect కి కావాలి */
  width: 100% !important;
  display: block !important;
  border-radius: 4px;
}

.card-stripe {
  border-radius: 12px 12px 0 0 !important;
}

.bid-btn-closed {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #6c757d;
    color: rgb(255, 255, 255);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    box-shadow: rgba(108, 117, 125, 0.35) 0px 4px 16px;
    text-decoration: none !important;
}

.bid-btn-closed:hover {
    background: #5a6268;
    color: #fff;
    text-decoration: none;
}

/* Winner button — red colour */
.btn-winner {
  background: #e74c3c !important;
  color: #fff !important;
}

.btn-winner::before,
.btn-winner::after {
  background: #e74c3c !important;
}

a.btn-winner,
a .btn-winner {
  text-decoration: none !important;
  color: #fff !important;
}

a.btn-winner:hover,
a .btn-winner:hover {
  color: #fff !important;
}

.btn-split,
a .btn-split,
a.btn-split {
  color: #fff !important;
}

.btn-split:hover,
a:hover .btn-split,
a.btn-split:hover {
  color: #fff !important;
}

/* Winner button */
.btn-winner,
a .btn-winner,
a.btn-winner {
  color: #fff !important;
}

.btn-winner:hover,
a:hover .btn-winner {
  color: #fff !important;
}


.numberweb.card {
  overflow: visible !important;
}

.btn-split::before,
.btn-split::after {
  z-index: 1;  /* ఇది already ఉంది */
}

/* text పైన కనపడాలంటే */
.btn-split,
a .btn-split,
div.btn-split {
  color: #fff !important;
  /* text z-index */
}

div.btn-split {
  position: relative;
  z-index: 2 !important;
}
a.btn-split:hover > div {
  position: relative;
  z-index: 5 !important;
  color: #fff !important;
}

/* ముందు */
div.btn-split {
  position: relative;
  z-index: 2 !important;
}

/* తర్వాత */
div.btn-split {
  position: relative;
  z-index: 10 !important;
  color: #fff !important;
}

@media (max-width: 768px) {
    .card-body-custom {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0px 10px 10px 10px !important;
    }
    .number {
        white-space: normal;
        font-size: clamp(1rem, 5vw, 1.4rem);
    }
    .bid-timer-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        padding: 0px !important;
        text-align: center;
    }
    .countdown-wrap {
        flex-wrap: wrap;
        gap: 4px;
    }
}

.bid-btn .arrow::after,
.btn-split .arrow::after,
.buy-now-btn .arrow::after,
.bid-btn::after,
.btn-split::after {
    display: none !important;
}

@media (max-width: 767px) {
    .fancy-page .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .fancy-page .col {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}
@media (max-width: 767px) {
    .countdown-wrap {
        border-radius: 12px 12px 0px 0px !important;
    }
}

/* Sort Pills */
.sort-pill {
    width: 80%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #152039;
    background: #fff;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    display: block;
}

.sort-pill:hover {
    border-color: #ff7f00;
    color: #ff7f00;
    text-decoration: none;
}

.sort-pill-active {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255,120,0,0.3);
}
/* Mobile Sort Toggle Button */
@media (max-width: 768px) {
    .btn-outline-secondary {
        background: linear-gradient(135deg, #152039, #1e3a5f) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 25px !important;
        padding: 10px 28px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 12px rgba(21,32,57,0.3) !important;
    }

    .btn-outline-secondary:hover {
        background: linear-gradient(135deg, #ff9800, #ff5722) !important;
        box-shadow: 0 4px 12px rgba(255,120,0,0.3) !important;
    }

    .btn-outline-secondary i {
        margin-right: 6px;
    }
}

/* ===== TIMER STYLE - Navy + Orange Boxes ===== */
.countdown-wrap {
    background: linear-gradient(135deg, #ff9800, #ff5722); !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 8px 10px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    width: 100% !important;
    border: none !important;
}

.cd-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #152039 !important;
    margin-right: 4px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    align-self: center !important;
}

.cd-units {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    flex-wrap: nowrap !important;
}

.cd-unit {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #152039 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 3px 6px !important;
    min-width: 30px !important;
}

.cd-num {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1 !important;
    background: transparent !important;
}

.cd-unit-label {
    font-size: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255,255,255,0.8) !important;
    margin-top: 1px !important;
}

.cd-sep {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #f97316 !important;
    opacity: 0.6 !important;
    padding-bottom: 6px !important;
    background: transparent !important;
}

/* Mobile */
/* Mobile */
@media (max-width: 767px) {
    .countdown-wrap {
        padding: 6px 4px !important;
        gap: 1px !important;
    }
    .cd-unit {
        min-width: 14px !important;
        padding: 2px 3px !important;
    }
    .cd-num {
        font-size: 0.75rem !important;
    }
    .cd-unit-label {
        font-size: 7px !important;
    }
    .cd-label {
        font-size: 7px !important;
        margin-right: 2px !important;
        letter-spacing: 1px !important;
    }
    .cd-sep {
        font-size: 0.65rem !important;
        padding-bottom: 4px !important;
        margin: 0 -1px !important;
    }
    .cd-units,
    .digital-timer {
        gap: 1px !important;
    }
}


/* ===== DESKTOP SORT BUTTONS ===== */
.d-none.d-md-flex a.btn-outline-secondary,
.d-none.d-md-flex a.btn-sm {
    background: #fff !important;
    color: #152039 !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 25px !important;
    padding: 6px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
    text-decoration: none !important;
}

.d-none.d-md-flex a.btn-outline-secondary:hover {
    border-color: #f97316 !important;
    color: #f97316 !important;
    box-shadow: 0 4px 12px rgba(249,115,22,0.2) !important;
}

.d-none.d-md-flex a.btn-primary {
    background: linear-gradient(135deg, #ff9800, #ff5722) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 6px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(255,120,0,0.3) !important;
    text-decoration: none !important;
}

/* ===== CLOSED TIMER BAR ===== */
.countdown-wrap.closed-badge {
    background: #dc2626 !important;
    border-radius: 12px 12px 0 0 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
}

.cd-num {
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cd-unit {
    padding: 4px 8px !important;
    gap: 2px !important;
}

/* ===== SEARCH SECTION ===== */
.search-section {
    background: #fff;
    padding: 32px 0 28px;
    margin-bottom: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-bottom: 1px solid #f0f0f0;
}

/* NAV TABS - Pill Style */
.search-section .nav-tabs {
    border-bottom: none;
    gap: 8px;
    margin-bottom: 20px !important;
}
.search-section .nav-tabs .nav-item .nav-link {
    background: #f0f0f0;
    color: #666;
    border: 1.5px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.search-section .nav-tabs .nav-item .nav-link:hover {
    background: rgba(255,152,0,0.1);
    color: #ff9800;
    border-color: #ff9800;
}
.search-section .nav-tabs .nav-item .nav-link.active {
    background: linear-gradient(135deg, #ff9800, #ff5722) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(255,87,34,0.4);
}

/* TAB CONTENT AREA */
.search-section .tab-content {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #e8e8e8;
}

/* GLOBAL SEARCH BAR */
.search-section .search-bar-container {
    max-width: 650px;
    margin: 0 auto;
}
.search-section .search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border: 2px solid rgba(255,152,0,0.3);
}
.search-section .search-bar select {
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    border-right: 1px solid #e0e0e0;
    cursor: pointer;
    min-width: 120px;
}
.search-section .search-bar .form-control {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 12px 16px;
    flex: 1;
    background: transparent !important;
    color: #333 !important;
}
.search-section .search-bar .form-control::placeholder {
    color: #aaa;
}
.search-section .search-bar button {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border: none;
    padding: 12px 22px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.search-section .search-bar button:hover { opacity: 0.85; }
.search-section .search-bar button .search-icon::before {
    content: "🔍";
    font-size: 16px;
}

/* ADVANCED & PRICE FORM LABELS */
.search-section label {
    color: #555 !important;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* ADVANCED & PRICE FORM INPUTS */
.search-section #advanced .form-control,
.search-section #price .form-control {
    background: #f8f9fa !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 10px !important;
    color: #333 !important;
    font-size: 14px;
    padding: 10px 14px;
    transition: all 0.2s;
    cursor: text !important;
}
.search-section #advanced .form-control::placeholder,
.search-section #price .form-control::placeholder {
    color: #aaa !important;
}
.search-section #advanced .form-control:focus,
.search-section #price .form-control:focus {
    background: #fff !important;
    border-color: #ff9800 !important;
    box-shadow: 0 0 0 3px rgba(255,152,0,0.15) !important;
    color: #333 !important;
}

/* SEARCH BUTTON in Advanced/Price forms */
.search-section .btn-primary {
    background: linear-gradient(135deg, #ff9800, #ff5722) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 32px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(255,87,34,0.35) !important;
    transition: opacity 0.2s !important;
    color: #fff !important;
}
.search-section .btn-primary:hover {
    opacity: 0.9 !important;
}

/* ===== FANCY NUMBER HIGHLIGHT ===== */
.fancy-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    letter-spacing: 1px;
}

.numberweb h2 span.highlight-digit,
.fancy-number span.highlight-digit {
    color: #00bcd4 !important;
    font-weight: 900 !important;
}

.fancy-number .normal-digit {
    color: inherit;
}

/* ===== SEARCH SECTION - RESPONSIVE ===== */

/* TABLET (max 768px) */
@media (max-width: 768px) {
    .search-section {
        padding: 20px 0 18px;
    }
    .search-section .nav-tabs {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .search-section .nav-tabs .nav-item .nav-link {
        padding: 7px 16px;
        font-size: 13px;
    }
    .search-section .tab-content {
        padding: 16px 12px;
        border-radius: 12px;
    }
    .search-section .search-bar {
        border-radius: 12px;
        flex-wrap: nowrap;
    }
    .search-section .search-bar select {
        min-width: 100px;
        font-size: 13px;
        padding: 10px 10px;
    }
    .search-section .search-bar .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
    .search-section .search-bar button {
        padding: 10px 16px;
    }
    .search-section #advanced .row.g-2 > div,
    .search-section #price .row.g-2 > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* MOBILE (max 480px) */
@media (max-width: 480px) {
    .search-section {
        padding: 16px 0 14px;
    }
    .search-section .nav-tabs .nav-item .nav-link {
        padding: 6px 14px;
        font-size: 12px;
    }
    .search-section .search-bar {
        border-radius: 10px;
    }
    .search-section .search-bar select {
        min-width: 90px;
        font-size: 12px;
        padding: 10px 8px;
    }
    .search-section .search-bar .form-control {
        font-size: 13px;
        padding: 10px 10px;
    }
    .search-section .search-bar button {
        padding: 10px 14px;
        flex-shrink: 0;
    }
    .search-section #advanced .row.g-2 > div,
    .search-section #price .row.g-2 > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .search-section .tab-content {
        padding: 14px 10px;
        border-radius: 10px;
    }
    .search-section .btn-primary {
        width: 100% !important;
        margin-top: 8px !important;
    }
}