/* Modern Callback Card */
.modern-callback-card {
   position: fixed;
   bottom: 24px;
   right: 24px;
   z-index: 1050;
   max-width: 375px;
   width: calc(100% - 48px);
   opacity: 0;
   visibility: hidden;
   transition: all 0.6s ease;
}

.modern-callback-card.visible {
   opacity: 1;
   visibility: visible;
}

/* Minimized State */
.modern-callback-card.minimized {
   max-width: 220px;
   width: 215px;
}

.modern-callback-card.minimized .callback-card-container {
   padding: 12px;
   border-radius: 35px;
   background: rgba(0, 0, 0, 0.9);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-callback-card.minimized .callback-content {
   display: none;
}

.modern-callback-card.minimized .callback-minimized-content {
   display: flex;
}

.modern-callback-card.minimized .callback-minimize-btn {
   display: none;
}

.modern-callback-card.minimized .callback-expand-btn {
   display: flex;
}

/* Card Container */
.callback-card-container {
   position: relative;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(20px);
   border-radius: 16px;
   padding: 25px;
   border: 1px solid rgb(99 97 97 / 20%);
   overflow: hidden;
}

/* Control Buttons */
.callback-minimize-btn,
.callback-expand-btn {
   position: absolute;
   top: 16px;
   right: 16px;
   width: 35px;
   height: 35px;
   background: rgba(0, 0, 0, 0.05);
   border: none;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.2s ease;
   z-index: 10;
}

.callback-minimize-btn:hover,
.callback-expand-btn:hover {
   background: rgba(0, 0, 0, 0.1);
   transform: scale(1.1);
}

.callback-expand-btn {
   display: none;
   background: rgba(255, 255, 255, 0.2);
}

.callback-expand-btn i {
   color: white;
   font-size: 12px;
}

/* Minimized Content */
.callback-minimized-content {
   display: none;
   align-items: center;
   gap: 16px;
   cursor: pointer;
   transition: all 0.2s ease;
}

.callback-minimized-content:hover {
   transform: scale(1.05);
}

.minimized-icon {
   position: relative;
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.minimized-icon i {
   color: white;
   font-size: 18px;
}

.pulse-ring {
   position: absolute;
   top: -4px;
   left: -4px;
   right: -4px;
   bottom: -4px;
   border: 2px solid rgba(255, 255, 255, 0.3);
   border-radius: 50%;
   animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
   0% {
      transform: scale(1);
      opacity: 1;
   }

   100% {
      transform: scale(1.3);
      opacity: 0;
   }
}

.minimized-text {
   display: flex;
   flex-direction: column;
   gap: 2px;
   color: white;
}

.minimized-title {
   font-size: 0.9rem;
   font-weight: 600;
}

.minimized-subtitle {
   font-size: 0.85rem;
   opacity: 0.8;
}

/* Header Section */
.callback-header {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 32px;
}

.callback-icon {
   position: relative;
   width: 45px;
   height: 45px;
   background: var(--bg-inverse);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.callback-icon i {
   color: white;
   font-size: 1.5rem;
   z-index: 2;
}

.callback-title h3 {
   margin: 0 0 4px 0;
   font-size: 1.25rem;
   font-weight: 600;
   color: #171717;
   line-height: 1.25;
}

.callback-title p {
   margin: 0;
   font-size: 14px;
   color: #737373;
   line-height: 1.5;
}

/* Action Buttons */
.callback-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 24px;
}

.callback-btn {
   position: relative;
   width: 100%;
   padding: 10px 15px;
   border-radius: 15px;
   text-decoration: none;
   display: flex;
   align-items: center;
   transition: all 0.2s ease;
   overflow: hidden;
   border: 1px solid transparent;
   cursor: pointer;
   background: none;
   font-family: inherit;
   text-align: left;
}

.toll-free-btn {
   background: rgba(0, 0, 0, 0.05);
   border-color: rgba(0, 0, 0, 0.1);
   color: #171717;
}

.toll-free-btn:hover {
   background: rgba(0, 0, 0, 0.08);
   transform: translateY(-2px);
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
   color: #171717;
   text-decoration: none;
}

.callback-request-btn,
.knowledgebase-btn,
.livechat-btn {
   background: var(--gradient-black);
   color: white;
}

.callback-request-btn:hover,
.knowledgebase-btn:hover,
.livechat-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(0, 112, 243, 0.3);
}

.whatsapp-btn {
   background: #25D366;
   color: white;
}

.whatsapp-btn:hover {
   background: #20ba5a;
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
   color: white;
   text-decoration: none;
}

.btn-content {
   display: flex;
   align-items: center;
   gap: 16px;
   width: 100%;
   position: relative;
   z-index: 2;
}

.btn-content i {
   font-size: 18px;
   flex-shrink: 0;
}

.btn-text {
   display: flex;
   flex-direction: column;
   gap: 2px;
   flex: 1;
}

.btn-title {
   font-size: 14px;
   font-weight: 500;
   line-height: 1.2;
}

.btn-subtitle {
   font-size: 12px;
   opacity: 0.8;
   line-height: 1.2;
}

.country-flag {
   width: 24px;
   height: 16px;
   border-radius: 4px;
   flex-shrink: 0;
}

.status-indicator {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   flex-shrink: 0;
}

.status-indicator.online {
   background: #10b981;
   animation: status-blink 2s infinite;
}

@keyframes status-blink {

   0%,
   50% {
      opacity: 1;
   }

   51%,
   100% {
      opacity: 0.4;
   }
}

/* Trust Indicators */
.callback-trust {
   display: flex;
   justify-content: space-between;
   gap: 8px;
}

.trust-item {
   font-size: 12px;
   color: #737373;
   display: flex;
   align-items: center;
   gap: 4px;
}

/* Background Effects */
.callback-bg-effects {
   position: absolute;
   inset: 0;
   pointer-events: none;
   overflow: hidden;
   border-radius: inherit;
}

.gradient-orb {
   position: absolute;
   border-radius: 50%;
   background: linear-gradient(135deg, rgba(0, 112, 243, 0.1), rgba(121, 40, 202, 0.1));
   animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
   width: 120px;
   height: 120px;
   top: -60px;
   right: -60px;
   animation-delay: 0s;
}

.orb-2 {
   width: 80px;
   height: 80px;
   bottom: -40px;
   left: -40px;
   animation-delay: 4s;
}

@keyframes float-orb {

   0%,
   100% {
      transform: translateY(0) rotate(0deg);
   }

   50% {
      transform: translateY(-20px) rotate(180deg);
   }
}

/* Hover Effects */

.modern-callback-card.minimized:hover {
   transform: translateY(-4px) scale(1.05);
}

/* ── Plan Feature List — Modern SaaS Typography ── */
.plan-features {
   margin-top: 24px;
   padding: 0;
}

.plan-features ul {
   list-style: none;
   padding: 0;
   margin: 0;
   font-family: 'Inter', sans-serif;
}

.plan-features ul li {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   font-size: 14.5px;
   font-weight: 500;
   color: #1f2937;
   line-height: 1.6;
   margin-bottom: 10px;
   letter-spacing: 0;
   text-transform: none;
   font-style: normal;
}

/* Green checkmark icon via ::before */
.plan-features ul li::before {
   content: "\f00c";
   font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome";
   font-weight: 900;
   color: #22c55e;
   font-size: 13px;
   flex-shrink: 0;
   margin-top: 3px;
   /* optical alignment with text */
}

/* Neutralise any i tag icons if description HTML includes them */
.plan-features ul li i {
   color: #22c55e;
   font-size: 13px;
   flex-shrink: 0;
   margin-top: 2px;
}

/* Billing Dropdown Styling (Cyberin Effect) */
.choose-plan-wrapper {
   position: relative;
   cursor: pointer;
}

/* Add chevron to button */
.plan-button--choose i,
.plan-button--choose:after {
   font-size: 12px;
   margin-left: 8px;
   transition: transform 0.3s ease;
   vertical-align: middle;
}

/* ── Choose Plan Button — Premium Bordered Style ── */
button.plan-button--choose,
a.plan-button--choose {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   padding: 12px 18px;
   font-family: 'Inter', sans-serif;
   font-size: 0.95rem;
   font-weight: 600;
   color: #111827;
   background: #f3f4f6;
   border: 1px solid #e5e7eb;
   border-radius: 8px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
   cursor: pointer;
   text-decoration: none;
   transition: all 0.2s ease;
   letter-spacing: 0;
}

button.plan-button--choose:hover,
a.plan-button--choose:hover {
   background: #e5e7eb;
   color: #111827;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   text-decoration: none;
}

button.plan-button--choose:focus,
a.plan-button--choose:focus {
   outline: none;
   box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Popular card — dark variant */
button.plan-button--choose.plan-button--dark,
a.plan-button--choose.plan-button--dark {
   background: #1a1a1a;
   border-color: #1a1a1a;
   color: #ffffff;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

button.plan-button--choose.plan-button--dark:hover,
a.plan-button--choose.plan-button--dark:hover {
   background: #2d2d2d;
   border-color: #2d2d2d;
   color: #ffffff;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Caret/SVG inside button stays aligned */
.plan-cycle-btn svg,
.plan-button--choose svg {
   flex-shrink: 0;
   transition: transform 0.25s ease;
}

.plan-cycle-wrapper.active .plan-cycle-btn svg {
   transform: rotate(180deg);
}

/* Rotate chevron on dropdown open */
.plan-button--choose i.fa-chevron-down,
.plan-button-dropdown.show .plan-button--choose:after,
.choose-plan-wrapper.active .plan-button--choose:after,
.plan-button-dropdown.active .plan-button--choose i {
   transform: rotate(180deg);
}

/* Show on click via JS */
.choose-plan-wrapper.active .billing-dropdown {
   display: block;
   animation: fadeInUp 0.2s ease-out;
}

.billing-dropdown {
   display: none !important;
   position: absolute;
   background: #fff;
   border-radius: 12px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
   padding: 8px 0;
   width: 260px;
   /* Cyberin style fixed width */
   z-index: 1000;
   top: calc(100% + 10px);
   left: 50%;
   transform: translateX(-50%);
   border: 1px solid #edf2f7;
   margin: 0;
}

.billing-dropdown .dropdown-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 20px;
   color: #1a202c;
   text-decoration: none;
   font-size: 14px;
   border-radius: 0;
   transition: background 0.2s;
   border-bottom: 1px solid #f7fafc;
   white-space: nowrap;
}

.billing-dropdown .dropdown-item:last-child {
   border-bottom: none;
}

.billing-dropdown .dropdown-item:hover {
   background: #f8fafc;
   color: #2563eb;
}

.billing-dropdown .cycle-name {
   font-weight: 500;
}

.billing-dropdown .cycle-price {
   font-weight: 700;
   color: #2d3748;
}

/* Save Badge (Optional) */
.billing-dropdown .save-badge {
   background: #16a34a;
   color: white;
   font-size: 11px;
   padding: 2px 6px;
   border-radius: 4px;
   margin-left: 8px;
   font-weight: 600;
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Responsive Design */
@media (max-width: 768px) {

   .quality-section,
   .section-bg-base.bg-light {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
   }

   .modern-callback-card {
      bottom: 16px;
      right: 16px;
      left: 16px;
      width: auto;
      max-width: none;
   }

   .modern-callback-card.minimized {
      max-width: 220px;
      width: 220px;
      left: auto;
   }

   .callback-card-container {
      padding: 24px;
   }

   .callback-header {
      flex-direction: column;
      text-align: center;
      gap: 16px;
   }

   .callback-icon {
      margin: 0 auto;
   }

}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
   .callback-card-container {
      background: rgba(0, 0, 0, 0.9);
      border-color: rgba(255, 255, 255, 0.1);
   }

   .callback-title h3 {
      color: white;
   }

   .callback-title p {
      color: rgba(255, 255, 255, 0.7);
   }

   .toll-free-btn {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      color: white;
   }

   .toll-free-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      color: white;
   }

   .callback-trust {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.1);
   }

   .trust-item {
      color: rgba(255, 255, 255, 0.7);
   }
}

/* CLICK-BASED BILLING DROPDOWN FIX - STRICT ENFORCEMENT */
.pricing-tier-card {
   overflow: visible !important;
}

/* ── Dynamic Save % Badge (replaces static "Limited time deal") ── */
.plan-button--deal.save-badge {
   background: linear-gradient(90deg, #16a34a, #22c55e);
   color: #fff;
   font-weight: 700;
   border-radius: 6px;
   padding: 6px 14px;
   font-size: 13px;
   text-align: center;
   border: none;
   letter-spacing: 0.3px;
   box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
}

/* ═══════════════════════════════════════════════════════════════
   EQUAL-HEIGHT PRICING CARDS — Symmetrical 3-column layout
   ═══════════════════════════════════════════════════════════════ */

/* Grid: flex row, cards stretch to equal height */
.hosting-tier-grid {
   display: flex !important;
   flex-direction: row !important;
   align-items: stretch !important;
   justify-content: center !important;
   gap: 24px !important;
   flex-wrap: nowrap;
}

/* Every card: equal flex share, flex-column so internals stack */
.hosting-tier-grid .pricing-tier-card,
.hosting-tier-grid .hosting-tier-card {
   flex: 1 1 0 !important;
   max-width: 380px !important;
   min-width: 0;
   display: flex !important;
   flex-direction: column !important;
   /* No transform or scale — all cards same visual size */
   transform: none !important;
}

/* Cancel any scale/translate on the popular card from theme */
.hosting-tier-grid .pricing-tier-card.plan-popular {
   transform: none !important;
   margin-top: 0 !important;
   /* Keep only subtle grey border */
   border: 1px solid #e5e7eb !important;
}

/* Compensate for the "MOST POPULAR" banner height so content
   starts at the same vertical position as sibling cards.
   Banner is absolute, top:-35px, height:65px → net offset ≈ 30px */
.hosting-tier-grid .pricing-tier-card.plan-popular .plan-meta {
   margin-top: 30px !important;
}

/* Push plan-actions to the bottom so all buttons align */
.hosting-tier-grid .plan-features {
   flex: 1;
   /* grow to fill remaining space */
   margin-bottom: 0;
}

/* plan-actions always at the bottom of the card */
.hosting-tier-grid .plan-actions {
   margin-top: auto;
}

/* ── Responsive: stack vertically on tablet/mobile ── */
@media (max-width: 991px) {
   .hosting-tier-grid {
      flex-wrap: wrap !important;
      gap: 20px !important;
   }

   .hosting-tier-grid .pricing-tier-card,
   .hosting-tier-grid .hosting-tier-card {
      flex: 1 1 calc(50% - 20px) !important;
      max-width: 100% !important;
   }
}

@media (max-width: 640px) {
   .hosting-tier-grid {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 16px !important;
   }

   .hosting-tier-grid .pricing-tier-card,
   .hosting-tier-grid .hosting-tier-card {
      flex: 1 1 100% !important;
      max-width: 100% !important;
   }

   /* On mobile the banner is above, so extra margin not needed */
   .hosting-tier-grid .pricing-tier-card.plan-popular .plan-meta {
      margin-top: 40px !important;
   }
}

/* ═══════════════════════════════════════════════════════════════
   SPEC ITEMS — View More / View Less Toggle
   ═══════════════════════════════════════════════════════════════ */

/* Hidden extra items — JS adds/removes this class */
.plan-features ul li.spec-hidden {
   display: none !important;
}

/* Wrapper: sits below the feature list, full width, with top separator */
.spec-toggle-wrap {
   display: block !important;
   width: 100% !important;
   margin-top: 14px !important;
   padding-top: 12px !important;
   border-top: 1px solid #e5e7eb !important;
}

/* ── View More / View Less button — minimal style ── */
.spec-toggle-btn {
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
   gap: 6px !important;
   width: 100% !important;
   padding: 9px 16px !important;
   font-family: 'Inter', sans-serif !important;
   font-size: 13.5px !important;
   font-weight: 500 !important;
   color: #111827 !important;
   background: transparent !important;
   border: none !important;
   border-radius: 8px !important;
   cursor: pointer !important;
   transition: background 0.18s ease !important;
   letter-spacing: 0 !important;
   line-height: 1.4 !important;
   text-decoration: none !important;
   box-shadow: none !important;
   outline: none !important;
}

.spec-toggle-btn:hover,
.spec-toggle-btn:focus {
   background: #f3f4f6 !important;
   color: #111827 !important;
   text-decoration: none !important;
   box-shadow: none !important;
}

/* Caret character rotation on expand */
.spec-toggle-btn .spec-caret {
   display: inline-block;
   transition: transform 0.25s ease;
   font-size: 11px;
   line-height: 1;
}

.spec-toggle-btn.is-expanded .spec-caret {
   transform: rotate(180deg);
}


/* ═══════════════════════════════════════════════════════════════
   SPOTLIGHT TLD PRICING — CLEAN GRID LAYOUT
   ═══════════════════════════════════════════════════════════════ */

/* Section wrapper */
.tld-spotlight-section {
   padding-top: 50px;
   padding-bottom: 40px;
   border-top: 1px solid #e8edf5;
   border-bottom: 1px solid #e8edf5;
   background: #f8fafc;
}

/* Header */
.tld-spotlight-header {
   text-align: center;
   margin-bottom: 30px;
}

.tld-spotlight-title {
   font-size: 1.85rem;
   font-weight: 700;
   color: #111827;
   margin-bottom: 8px;
   letter-spacing: -0.02em;
}

.tld-spotlight-subtitle {
   font-size: 1rem;
   color: #6b7280;
   margin: 0;
}

/* Grid Wrapper */
.tld-grid-wrapper {
   max-width: 1100px;
   margin: 0 auto;
}

/* TLD Card - Clean Grid Design */
.tld-card {
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   background: #ffffff;
   border: 1.5px solid #e5e7eb;
   border-radius: 12px;
   padding: 20px 12px;
   text-decoration: none !important;
   color: inherit !important;
   cursor: pointer;
   height: 100%;
   min-height: 130px;
   transition: all 0.25s ease;
}

.tld-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
   border-color: #2563eb;
   text-decoration: none !important;
}

/* Badge */
.tld-card-badge {
   position: absolute;
   top: 8px;
   right: 8px;
   font-size: 9px;
   font-weight: 700;
   padding: 3px 8px;
   border-radius: 20px;
   background: linear-gradient(90deg, #16a34a, #22c55e);
   color: #ffffff;
   text-transform: uppercase;
   letter-spacing: 0.3px;
}

/* Logo */
.tld-card-logo {
   width: 48px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 8px;
}

.tld-card-img {
   max-width: 48px;
   max-height: 32px;
   width: auto;
   height: auto;
   object-fit: contain;
}

/* Fallback when no image */
.tld-card-fallback {
   display: none;
   width: 40px;
   height: 28px;
   background: linear-gradient(135deg, #2563eb, #3b82f6);
   border-radius: 6px;
   align-items: center;
   justify-content: center;
   font-size: 10px;
   font-weight: 700;
   color: #ffffff;
}

/* TLD Name */
.tld-card-name {
   font-size: 1.1rem;
   font-weight: 700;
   color: #111827;
   margin-bottom: 4px;
}

/* Price */
.tld-card-price {
   font-size: 0.95rem;
   font-weight: 700;
   color: #2563eb;
}

.tld-price-yr {
   font-size: 0.7rem;
   font-weight: 500;
   color: #6b7280;
   margin-left: 1px;
}

.tld-price-na {
   font-size: 0.75rem;
   color: #9ca3af;
   font-style: italic;
   font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
   .tld-card {
      min-height: 110px;
      padding: 16px 10px;
   }

   .tld-card-name {
      font-size: 1rem;
   }

   .tld-card-price {
      font-size: 0.85rem;
   }
}

/* ═══════════════════════════════════════════════════════════════
   SPOTLIGHT TLD PRICING — MARQUEE SLIDER (Legacy - Keep for reference)
   ═══════════════════════════════════════════════════════════════ */

/* Section wrapper — reuses .oneclick-apps bg (#f8fafc) */
.tld-spotlight-section {
   padding-top: 50px;
   padding-bottom: 0;
   border-top: 1px solid #e8edf5;
   border-bottom: 1px solid #e8edf5;
}

/* ── Header ── */
.tld-spotlight-header {
   text-align: center;
   margin-bottom: 8px;
}

.tld-spotlight-title {
   font-size: 1.85rem;
   font-weight: 700;
   color: #111827;
   margin-bottom: 8px;
   letter-spacing: -0.02em;
}

.tld-spotlight-subtitle {
   font-size: 1rem;
   color: #6b7280;
   margin: 0;
}

/* ── Marquee wrapper — reduce bottom padding vs apps section ── */
.tld-marquee {
   padding: 24px 0 32px !important;
}

/* ── TLD Slide Card ── */
.tld-slide-card {
   position: relative;
   display: flex !important;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 170px !important;
   min-width: 170px !important;
   min-height: 140px;
   background: #ffffff;
   border: 1.5px solid #e5e7eb;
   border-radius: 16px;
   padding: 20px 16px 16px;
   text-decoration: none !important;
   color: inherit !important;
   cursor: pointer;
   flex-shrink: 0 !important;
   box-sizing: border-box;
   overflow: hidden;
   transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tld-slide-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
   border-color: #60a5fa;
   text-decoration: none !important;
}

/* ── Logo area ── */
.tld-slide-logo {
   width: 56px;
   height: 38px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.tld-slide-img {
   max-width: 56px;
   max-height: 38px;
   width: auto;
   height: auto;
   object-fit: contain;
   display: block;
}

/* Fallback text pill when SVG not found */
.tld-slide-fallback {
   width: 56px;
   height: 34px;
   background: linear-gradient(135deg, #2563eb, #3b82f6);
   border-radius: 8px;
   display: flex !important;
   /* overrides inline style=none via JS */
   align-items: center;
   justify-content: center;
   font-size: 11px;
   font-weight: 700;
   color: #ffffff;
   letter-spacing: 0.5px;
   text-align: center;
}

/* ── TLD name ── */
.tld-slide-name {
   font-size: 1.1rem;
   font-weight: 700;
   color: #111827;
   letter-spacing: -0.01em;
   line-height: 1;
}

/* ── Price ── */
.tld-slide-price {
   font-size: 1rem;
   font-weight: 700;
   color: #2563eb;
   line-height: 1;
}

.tld-slide-yr {
   font-size: 0.75rem;
   font-weight: 500;
   color: #6b7280;
   margin-left: 1px;
}

.tld-slide-na {
   font-size: 0.8rem;
   color: #9ca3af;
   font-style: italic;
   font-weight: 400;
}

/* ── Best Value badge ── */
.tld-slide-badge {
   position: absolute;
   top: 8px;
   right: 8px;
   font-size: 9px;
   font-weight: 700;
   padding: 2px 7px;
   border-radius: 20px;
   letter-spacing: 0.3px;
   text-transform: uppercase;
   line-height: 1.5;
}

.tld-slide-badge--best {
   background: linear-gradient(90deg, #16a34a, #22c55e);
   color: #ffffff;
}


/* ═══════════════════════════════════════════════════════════════
   DOMAIN SEARCH SECTION — Icon & Form Fix
   ═══════════════════════════════════════════════════════════════ */

.domain-search-section {
   background: #f0f4ff;
   padding: 48px 0;
}

/* The form is position:relative via Bootstrap, icon is absolute */
.domain__search-form {
   position: relative !important;
   display: flex !important;
   align-items: center !important;
   background: #ffffff !important;
   border-radius: 50px !important;
   padding: 6px 6px 6px 16px !important;
   box-shadow: 0 4px 24px rgba(37, 99, 235, 0.10) !important;
   border: 1.5px solid #e5e7eb !important;
   max-width: 640px;
   margin: 0 auto;
   gap: 8px;
}

/* Specific override for .domain__search-form-two to prevent breaking layout */
.domain__search-wrap-two {
   max-width: 750px;
   margin: 0 auto;
}

.domain__search-form-two {
   margin-bottom: 0 !important;
   box-shadow: 0 4px 24px rgba(37, 99, 235, 0.10) !important;
   border: 1.5px solid #e5e7eb !important;
   border-radius: 50px !important;
   padding: 6px 6px 6px 16px !important;
   background: #fff;
   position: relative;
   display: flex;
   align-items: center;
}

.domain__search-form-two>svg {
   position: absolute;
   left: 18px;
   top: 50%;
   transform: translateY(-50%);
   color: #6b7280;
   width: 20px;
   height: 20px;
   pointer-events: none;
   z-index: 2;
}

.domain__search-form-two input {
   box-shadow: none !important;
   border: none !important;
   border-radius: 0 !important;
   flex: 1;
   background: transparent;
   padding-left: 36px !important;
   /* give space for the icon */
   height: 48px !important;
   font-size: 15px;
}

.domain__search-form-two input:focus {
   outline: none;
   box-shadow: none !important;
}

@media (max-width: 768px) {
   .domain__search-form-two {
      flex-direction: column;
      border-radius: 20px !important;
      padding: 15px !important;
   }

   .domain__search-form-two>svg {
      top: 38px;
   }

   .domain__search-form-two .tg-btn {
      width: 100%;
      margin-top: 10px;
   }
}

/* Search button - Black Circle with Search text */
.domain__search-form-two .tg-btn {
   border-radius: 50px !important;
   height: 48px !important;
   padding: 0 28px !important;
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
   font-weight: 600 !important;
   background: #000000 !important;
   border-color: #000000 !important;
   color: #ffffff !important;
   letter-spacing: 0.5px;
}

.domain__search-form-two .tg-btn:hover {
   background: #1a1a1a !important;
   border-color: #1a1a1a !important;
}

/* TLD flex list wrap adjustments */
.domain__list .list-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   justify-content: center;
   margin-top: 24px;
}

.domain__list .list-wrap li {
   background: #ffffff;
   border: 1px solid #e5e7eb;
   padding: 8px 16px;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 600;
   color: #374151 !important;
   display: flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
   transition: all 0.2s ease;
}

.domain__list .list-wrap li:hover {
   border-color: #2563eb;
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* Search icon — left side, vertically centred */
.domain__search-icon {
   position: absolute !important;
   left: 18px !important;
   top: 50% !important;
   transform: translateY(-50%) !important;
   color: #6b7280 !important;
   font-size: 15px !important;
   pointer-events: none;
   z-index: 2;
}

/* Input — push text right past the icon */
.domain__search-form .form-control {
   flex: 1 !important;
   border: none !important;
   outline: none !important;
   box-shadow: none !important;
   background: transparent !important;
   padding-left: 36px !important;
   font-size: 15px !important;
   color: #111827 !important;
}

.domain__search-form .form-control::placeholder {
   color: #9ca3af;
}

/* Search button - Black Circle with Search text */
.domain__search-form .btn {
   flex-shrink: 0 !important;
   border-radius: 50px !important;
   min-width: 100px !important;
   height: 44px !important;
   padding: 0 24px !important;
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
   font-weight: 600 !important;
   font-size: 15px !important;
   white-space: nowrap !important;
   background: #000000 !important;
   border-color: #000000 !important;
   color: #ffffff !important;
   letter-spacing: 0.5px;
}

.domain__search-form .btn:hover {
   background: #1a1a1a !important;
   border-color: #1a1a1a !important;
}

/* TLD flex list wrap adjustments */
.tld-flex-list {
   max-width: 750px;
   margin: 0 auto;
}

.tld-item {
   transition: all 0.2s ease-in-out;
}

.tld-item:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
   border-color: #2563eb !important;
}

/* ═══════════════════════════════════════════════════════════════
   COMPARE LOGO WRAPPER — Uniform Sizing for All Provider Logos
   ═══════════════════════════════════════════════════════════════ */

.compare-logo-wrapper {
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0;
   padding: 0;
}

.compare-logo-wrapper img {
   max-height: 40px;
   width: auto;
   max-width: 140px;
   height: auto;
   object-fit: contain;
   display: block;
   margin: 0;
   padding: 0;
   border: none;
}

/* Responsive */
@media (max-width: 768px) {
   .compare-logo-wrapper {
      height: 50px;
   }

   .compare-logo-wrapper img {
      max-height: 35px;
   }
}

.comparison-section {
   background: #ffffff;
   padding: 60px 0;
}

.comparison-header {
   text-align: center;
   margin-bottom: 32px;
}

.comparison-title {
   font-size: 2rem;
   font-weight: 700;
   color: #111827;
   margin-bottom: 8px;
}

.comparison-subtitle {
   font-size: 1rem;
   color: #6b7280;
}

.comparison-table-wrapper {
   overflow-x: auto;
   border-radius: 12px;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
   background: #ffffff;
   border: 1px solid #e5e7eb;
}

.comparison-table {
   width: 100%;
   border-collapse: collapse;
   min-width: 600px;
}

.comparison-table thead th {
   padding: 20px 16px;
   text-align: center;
   background: #ffffff;
   border-bottom: 1px solid #e5e7eb;
   vertical-align: top;
}

.comparison-table .feature-col {
   text-align: left;
   width: 22%;
   font-weight: 600;
   color: #374151;
   padding-left: 20px !important;
}

.comparison-table .hostyindia-col {
   background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
   position: relative;
   width: 26%;
}

.comparison-table .competitor-col {
   width: 26%;
}

.compare-brand {
   text-align: center;
   vertical-align: middle;
   padding: 16px 12px !important;
}

.brand-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   height: 80px;
   position: relative;
}

.brand-wrapper img {
   max-height: 40px;
   width: auto;
   height: auto;
   object-fit: contain;
   margin: 0;
}

.provider-badge {
   position: absolute;
   top: -8px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(90deg, #16a34a, #22c55e);
   color: #ffffff;
   font-size: 9px;
   font-weight: 700;
   padding: 3px 10px;
   border-radius: 0 0 6px 6px;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   z-index: 10;
   white-space: nowrap;
}

.provider-name {
   font-size: 1rem;
   font-weight: 700;
   color: #111827;
   margin-bottom: 6px;
}

.provider-logo {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 0;
   min-height: 60px;
}

.provider-logo img {
   max-width: 140px;
   max-height: 50px;
   width: auto;
   height: auto;
   object-fit: contain;
}

.provider-price {
   font-size: 1.35rem;
   font-weight: 800;
   color: #2563eb;
}

.provider-price span {
   font-size: 0.8rem;
   font-weight: 500;
   color: #6b7280;
}

.provider-term {
   font-size: 0.75rem;
   color: #9ca3af;
   margin-top: 2px;
}

.comparison-table tbody tr {
   border-bottom: 1px solid #f3f4f6;
}

.comparison-table tbody tr:last-child {
   border-bottom: none;
}

.comparison-table .feature-name {
   padding: 12px 16px 12px 20px;
   font-weight: 500;
   color: #374151;
   text-align: left;
}

.comparison-table .hostyindia-feature {
   text-align: center;
   padding: 12px 16px;
   background: #f0f9ff;
}

.comparison-table .competitor-feature {
   text-align: center;
   padding: 12px 16px;
   color: #6b7280;
}

.feature-value {
   font-weight: 600;
   color: #111827;
}

.feature-highlight {
   font-weight: 700;
   color: #2563eb;
   font-size: 1.05rem;
}

.feature-check {
   font-size: 1rem;
   color: #16a34a;
}

.feature-x {
   font-size: 0.95rem;
   color: #9ca3af;
}

.comparison-cta {
   margin-top: 32px;
}

.comparison-cta .btn-primary {
   background: #000000 !important;
   border: none !important;
   border-radius: 8px !important;
   font-weight: 600 !important;
   font-size: 1rem !important;
   padding: 14px 36px !important;
   transition: all 0.2s ease !important;
}

.comparison-cta .btn-primary:hover {
   background: #1a1a1a !important;
   transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
   .comparison-title {
      font-size: 1.5rem;
   }

   .comparison-subtitle {
      font-size: 0.9rem;
   }

   .comparison-section {
      padding: 40px 0;
   }

   .provider-price {
      font-size: 1.1rem;
   }
}

/* -------------------------------------------
   MODERN INFINITE REVIEWS LOOP
------------------------------------------- */
.reviews-loop-container {
   overflow: hidden;
   position: relative;
   width: 100%;
   padding: 40px 0;
   /* Fade mask for smooth edges */
   mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
   -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-row {
   display: flex;
   gap: 30px;
   /* Space between cards */
   width: max-content;
   will-change: transform;
}

.row-top {
   margin-bottom: 30px;
}

.loop-right {
   animation: scroll-right 45s linear infinite;
}

.loop-left {
   animation: scroll-left 45s linear infinite;
}

/* Pause on Hover */
.reviews-loop-container:hover .reviews-row {
   animation-play-state: paused;
}

/* Keyframes */
@keyframes scroll-left {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

@keyframes scroll-right {
   0% {
      transform: translateX(-50%);
   }

   100% {
      transform: translateX(0);
   }
}

/* Review Card Styling */
.review-card-modern {
   background: #ffffff;
   border-radius: 18px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
   padding: 24px 28px;
   min-width: 380px;
   max-width: 380px;
   border: 1px solid rgba(0, 0, 0, 0.03);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   transition: all 0.3s ease;
   user-select: none;
   /* Smooth drag feeling */
   white-space: normal;
}

.review-card-modern:hover {
   transform: translateY(-5px);
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Card Content */
.review-rating-stars {
   margin-bottom: 15px;
   color: #fdc10d;
   /* HostyIndia Blue for stars/brand */
   font-size: 14px;
}

.review-quote {
   font-size: 0.95rem;
   line-height: 1.6;
   color: #555;
   margin-bottom: 20px;
   font-weight: 400;
   display: -webkit-box;
   -webkit-line-clamp: 4;
   line-clamp: 4;
   -webkit-box-orient: vertical;
   overflow: hidden;
   font-family: inherit;
}

.review-meta {
   display: flex;
   align-items: center;
   gap: 12px;
   padding-top: 15px;
   border-top: 1px solid #f5f5f5;
}

.meta-avatar {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: linear-gradient(135deg, #eef2ff 0%, #f0f6ff 100%);
   color: #6b7280;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 16px;
}

.meta-info h5 {
   font-size: 15px;
   font-weight: 700;
   color: #222;
   margin: 0;
   line-height: 1.2;
}

.meta-platform {
   font-size: 13px;
   color: #888;
   display: flex;
   align-items: center;
   gap: 5px;
   margin-top: 2px;
}

.meta-platform i {
   font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
   .review-card-modern {
      min-width: 300px;
      max-width: 300px;
      padding: 20px;
   }
}

/* -------------------------------------------
   LEGAL/IDENTITY VERIFICATION STRIP
------------------------------------------- */
.legal-identity-section {
   border-top: 1px solid #ebebeb;
   border-bottom: 1px solid #ebebeb;
   background-color: #fcfcfc;
}

.identity-title {
   font-size: 1.8rem;
   margin-bottom: 0.5rem;
   color: #222;
   letter-spacing: -0.5px;
}

.identity-subtitle {
   font-size: 1.05rem;
   color: #666;
}

.legal-badges-grid {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 20px;
   background: #ffffff;
   padding: 35px 40px;
   border-radius: 16px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
   border: 1px solid #f0f0f0;
   margin-top: 20px;
}

.legal-badge-item {
   display: flex;
   align-items: center;
   gap: 15px;
   flex: 1;
   min-width: 220px;
   padding: 15px;
   border-right: 1px solid #f5f5f5;
   transition: all 0.3s ease;
}

.legal-badge-item:last-child {
   border-right: none;
}

.badge-icon {
   min-width: 50px;
   height: 50px;
   background: #f8faff;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #0d6efd;
   /* HostyIndia Blue */
   font-size: 1.2rem;
   transition: transform 0.3s ease;
}

.legal-badge-item:hover .badge-icon {
   transform: scale(1.1);
   background: #eef4ff;
}

.badge-content {
   display: flex;
   flex-direction: column;
}

.badge-title {
   font-size: 0.95rem;
   font-weight: 700;
   margin: 0 0 3px;
   color: #1a1a1a;
}

.badge-text {
   font-size: 0.8rem;
   color: #777;
   margin: 0;
   line-height: 1.3;
}

.badge-cin {
   display: inline-block;
   font-size: 0.75rem;
   margin-top: 4px;
   font-family: 'Consolas', monospace;
   background: #f4f4f4;
   padding: 2px 6px;
   border-radius: 4px;
   color: #555;
   letter-spacing: 0.5px;
   width: fit-content;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   .legal-badges-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      /* 2x2 Grid */
      gap: 15px;
      padding: 20px;
   }

   .legal-badge-item {
      flex-direction: column;
      text-align: center;
      min-width: 0;
      /* Allow shrinking */
      padding: 10px;
      border-right: none;
      border: 1px solid #f9f9f9;
      border-radius: 8px;
   }

   .badge-icon {
      width: 45px;
      height: 45px;
      font-size: 1rem;
      margin-bottom: 8px;
   }

   .badge-title {
      font-size: 0.85rem;
   }

   .badge-text {
      font-size: 0.75rem;
   }

   .badge-cin {
      font-size: 0.65rem;
      margin-top: 5px;
   }

   .identity-title {
      font-size: 1.4rem;
   }

   .identity-subtitle {
      font-size: 0.95rem;
   }
}

/* -------------------------------------------
   FAQ ACCORDION & TABS STYLES
------------------------------------------- */
.faq-content .faq-item {
   border: 1px solid #e1e4e8;
   margin-bottom: 16px;
   border-radius: 8px;
   background: #fff;
   overflow: hidden;
   transition: all 0.3s ease;
}

.faq-content .faq-question {
   padding: 18px 24px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #fff;
   transition: background 0.2s ease;
   user-select: none;
}

.faq-content .faq-question:hover {
   background: #f8f9fa;
}

.faq-content .question-text {
   margin: 0;
   font-size: 1.05rem;
   font-weight: 600;
   color: #2d3748;
}

.faq-content .question-icon {
   width: 28px;
   height: 28px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   color: #3182ce;
   background: #ebf8ff;
   border-radius: 50%;
}

/* Active State */
.faq-content .faq-item.active {
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   border-color: #3182ce;
}

.faq-content .faq-item.active .question-icon {
   transform: rotate(45deg);
   background: #edf2f7;
   color: white;
}

.faq-content .faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   background: #fdfdfd;
   border-top: 1px solid transparent;
}

.faq-content .faq-item.active .faq-answer {
   border-top-color: #edf2f7;
   /* max-height handled by JS */
}

.faq-content .answer-content {
   padding: 20px 24px;
   color: #4a5568;
   line-height: 1.6;
   font-size: 0.95rem;
}

/* Category Tabs */
.feature-tabs,
.category-tabs {
   display: flex;
   justify-content: center;
   gap: 15px;
   margin-bottom: 40px;
   flex-wrap: wrap;
}

.category-tab {
   padding: 10px 24px;
   font-weight: 500;
   color: #718096;
   cursor: pointer;
   border-radius: 50px;
   background: #edf2f7;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 8px;
   border: 1px solid transparent;
}

.category-tab:hover {
   background: #e2e8f0;
   color: #2d3748;
}

.category-tab.active {
   background: #6b7280;
   color: #ffffff;
   box-shadow: 0 4px 10px rgba(49, 130, 206, 0.3);
}

.faq-category-content {
   display: none;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.faq-category-content.active {
   display: block;
   opacity: 1;
   animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* -------------------------------------------
   EXPERT HELP SECTION (FAQ CTA)
------------------------------------------- */
.faq-cta {
   border-radius: 16px;
   padding: 40px;
   margin-top: 60px;
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-help-illustration {
   max-width: 75%;
   /* Reduced size as requested */
   height: auto;
   display: inline-block;
   transition: transform 0.3s ease;
}

.expert-help-illustration:hover {
   transform: scale(1.02);
}

@media (max-width: 768px) {
   .faq-cta {
      padding: 30px 20px;
      text-align: center;
      justify-content: center;
   }

   .faq-cta .col-md-6 {
      text-align: center !important;
      /* Force center on mobile */
   }

   .faq-cta .col-md-6:last-child {
      margin-top: 30px;
   }

   .expert-help-illustration {
      max-width: 85%;
   }

   .cta-actions {
      justify-content: center;
   }
}

/* =========================================
   User Account Dropdown - Fixed & Compact
   ========================================= */

/* Parent Menu Item */
.main-header .menu-bar>ul>li.nav-item.has-dropdown {
   position: relative;
}

/* User Dropdown Menu Container */
/* User Dropdown Menu Container */
.client-dropdown-box {
   display: block;
   position: absolute;
   top: 100%;
   right: 0;
   left: auto !important;
   width: 260px !important;
   min-width: 260px !important;
   max-width: 260px !important;
   background: #fff;
   border-radius: 12px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   padding: 10px;
   margin-top: 10px;
   border: 1px solid #edf2f7;
   z-index: 9999;

   /* Animation */
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.2s ease-in-out;
   pointer-events: none;
}

/* Show State */
.client-dropdown-box.active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
   pointer-events: auto;
}

/* Icon Rotation */
.nav-item.has-dropdown.active .dropdown-icon {
   transform: rotate(180deg);
}

/* List Styles */
.client-menu-list {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.client-menu-list li {
   display: block;
   width: 100%;
   margin: 0;
   padding: 0;
   border: none;
}

.client-menu-list li a {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 16px;
   color: #4a5568 !important;
   font-size: 14px;
   font-weight: 500;
   text-decoration: none;
   border-radius: 8px;
   transition: all 0.2s ease;
   width: 100%;
   background: transparent;
   line-height: 1.5;
}

.client-menu-list li a:hover {
   background-color: #f7fafc;
   color: #2d3748 !important;
   transform: translateX(2px);
}

.client-menu-list li a i {
   font-size: 16px;
   width: 20px;
   text-align: center;
   color: #cbd5e0;
   transition: color 0.2s ease;
}

.client-menu-list li a:hover i {
   color: #ec5362;
}

/* Divider */
.client-menu-list .menu-divider {
   height: 1px;
   background-color: #edf2f7;
   margin: 8px 0;
   width: 100%;
}

/* Logout specific */
.client-menu-list li a.text-danger {
   color: #e53e3e !important;
}

.client-menu-list li a.text-danger:hover {
   background-color: #fff5f5;
   color: #c53030 !important;
}

.client-menu-list li a.text-danger i {
   color: #fc8181;
}


/* =========================================
   FIX: User Dropdown Z-Index Stacking
   ========================================= */

/* Make Nav Container float above Promo Banner */
.vercel-nav .nav-container {
   position: relative;
   z-index: 500 !important;
}

/* Make User Actions (Button) float even higher */
.vercel-nav .nav-actions {
   position: relative;
   z-index: 501 !important;
}

/* Push Promo Banner lower */
.nav-promo-banner {
   position: relative;
   z-index: 10 !important;
}

/* Force User Dropdown to span on top of EVERYTHING */
.client-dropdown-box {
   z-index: 999999 !important;
}

/* =========================================
   FIX: Client Area Dashboard Spacing
   ========================================= */
body.clientarea-page #main-body {
   padding-top: 30px !important;
   margin-top: 0 !important;
}

body.clientarea-page .header-lined {
   margin-bottom: 15px !important;
   border-bottom: 0 !important;
}

body.clientarea-page h1 {
   margin-bottom: 10px !important;
}


/* =========================================
   CUSTOM CLIENT DASHBOARD STYLES
   ========================================= */

/* Dashboard Layout */
.dashboard-container {
   background-color: #f8f9fa;
   min-height: calc(100vh - 150px);
}

/* Sidebar */
.dashboard-sidebar {
   background: #fff;
   height: 100%;
   min-height: calc(100vh - 80px);
   /* Adjust based on header height */
   border-right: 1px solid #e9ecef;
   padding: 20px 0;
}

.sidebar-menu .menu-item {
   display: block;
   padding: 12px 24px;
   color: #495057;
   text-decoration: none;
   font-weight: 500;
   transition: all 0.2s;
   border-left: 3px solid transparent;
}

.sidebar-menu .menu-item:hover,
.sidebar-menu .menu-item.active {
   background-color: #f1f3f5;
   color: #0d6efd;
   border-left-color: #0d6efd;
}

.sidebar-menu .menu-item i {
   width: 24px;
   text-align: center;
   margin-right: 10px;
}

.sidebar-menu .menu-divider {
   height: 1px;
   background-color: #e9ecef;
   margin: 10px 0;
}

/* Content Area */
.dashboard-content {
   padding: 30px;
}

/* Welcome Banner */
.welcome-banner {
   background: #fff;
   border-radius: 12px;
   padding: 30px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
   border: 1px solid #e9ecef;
}

.welcome-banner h1 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 5px;
   color: #212529;
}

/* Stat Cards */
.stat-card {
   background: #fff;
   border-radius: 12px;
   padding: 20px;
   display: flex;
   align-items: center;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
   border: 1px solid #e9ecef;
   transition: transform 0.2s;
}

.stat-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-icon {
   width: 50px;
   height: 50px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   margin-right: 15px;
}

/* Fix Font Awesome icons inside stat icons */
.stat-icon .fa,
.stat-icon .fas,
.stat-icon .far,
.stat-icon .fal,
.stat-icon .fab,
.stat-icon .fad {
   font-family: "Font Awesome 5 Free" !important;
   font-weight: 900 !important;
}

.stat-details h3 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 0;
   line-height: 1.2;
}

.stat-details span {
   font-size: 13px;
   color: #6c757d;
}

/* Colors for Stats */
.bg-light-primary {
   background-color: rgba(13, 110, 253, 0.1);
}

.bg-light-success {
   background-color: rgba(25, 135, 84, 0.1);
}

.bg-light-warning {
   background-color: rgba(255, 193, 7, 0.1);
}

.bg-light-info {
   background-color: rgba(13, 202, 240, 0.1);
}

/* Dashboard Cards (Tables/Lists) */
.dashboard-card {
   border: 1px solid #e9ecef;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
   overflow: hidden;
}

.dashboard-card .card-header {
   background: #fff;
   border-bottom: 1px solid #e9ecef;
   padding: 15px 20px;
}

.dashboard-card .card-header h5 {
   font-weight: 600;
   font-size: 16px;
}

/* Status Badges */
.badge {
   padding: 5px 10px;
   border-radius: 6px;
   font-weight: 500;
}

.status-active {
   background-color: #d1e7dd;
   color: #0f5132;
}

.status-pending {
   background-color: #fff3cd;
   color: #664d03;
}

.status-suspended {
   background-color: #f8d7da;
   color: #842029;
}

.status-terminated {
   background-color: #e2e3e5;
   color: #41464b;
}

.status-paid {
   background-color: #d1e7dd;
   color: #0f5132;
}

.status-unpaid {
   background-color: #f8d7da;
   color: #842029;
}

.status-cancelled {
   background-color: #e2e3e5;
   color: #41464b;
}

.status-open {
   background-color: #d1e7dd;
   color: #0f5132;
}

.status-answered {
   background-color: #cff4fc;
   color: #055160;
}

.status-customer-reply {
   background-color: #cfe2ff;
   color: #084298;
}

.status-closed {
   background-color: #e2e3e5;
   color: #41464b;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
   .dashboard-sidebar {
      height: auto;
      min-height: auto;
      border-right: none;
      border-bottom: 1px solid #e9ecef;
      margin-bottom: 20px;
   }

   .sidebar-menu {
      display: flex;
      overflow-x: auto;
      padding-bottom: 10px;
   }

   .sidebar-menu .menu-item {
      white-space: nowrap;
      border-left: none;
      border-bottom: 3px solid transparent;
      padding: 10px 15px;
   }

   .sidebar-menu .menu-item.active {
      border-left: none;
      border-bottom-color: #0d6efd;
   }

   .sidebar-menu .menu-divider {
      display: none;
   }
}

/* --- Added from Header --- */
/* Critical Stacking & Overflow Fixes */
.primary-header,
.vercel-nav,
.nav-container {
   overflow: visible !important;
}

.vercel-nav {
   position: relative;
   z-index: 1000;
}

.nav-container {
   position: relative;
   z-index: 20;
}

.nav-actions {
   position: relative;
   z-index: 25;
}

.nav-promo-banner {
   position: relative;
   z-index: 10;
}

/* Currency Dropdown Styles */
.currency-wrapper {
   position: relative;
   display: inline-block;
   margin-right: 15px;
}

.currency-btn-custom {
   border: none;
   background: transparent;
   display: flex;
   align-items: center;
   cursor: pointer;
   padding: 0;
   font-size: 14px;
   font-weight: 500;
   color: #333;
}

.currency-dropdown-menu {
   position: absolute;
   top: 100%;
   right: 0;
   min-width: 170px;
   background: #fff;
   border-radius: 8px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   /* Slightly stronger shadow */
   border: 1px solid #eee;
   display: none;
   z-index: 99999 !important;
   /* Force high index */
   padding: 5px 0;
   margin-top: 10px;
}

.currency-wrapper.active .currency-dropdown-menu {
   display: block;
}

.currency-item-link {
   display: flex;
   align-items: center;
   text-decoration: none;
   color: #333;
   padding: 10px 15px;
   width: 100%;
   transition: background 0.2s;
}

.currency-item-link:hover {
   background: #f9f9f9;
}

/* User Account Dropdown Fixes */
@media (max-width: 767px) {
   #client-dropdown-menu.client-dropdown-box {
      position: absolute !important;
      right: 0 !important;
      left: auto !important;
      top: 100% !important;
      min-width: 220px;
      z-index: 99999 !important;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
   }
}

/* Guest / Mobile Menu Offcanvas Fixes */
.custom-offcanvas-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background: rgba(0, 0, 0, 0.5);
   z-index: 105000;
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
   overflow: hidden;
}

.custom-offcanvas-content {
   position: absolute;
   top: 0;
   left: -300px;
   width: 280px;
   height: 100vh;
   background: #fff;
   box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
   transition: left 0.3s ease;
   display: flex;
   flex-direction: column;
   overflow-y: auto;
}

/* Right-side offcanvas for mobile menu */
.custom-offcanvas-content.custom-offcanvas-right {
   left: auto;
   right: -300px;
   transition: right 0.3s ease;
   box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
}

.custom-offcanvas-header {
   position: sticky;
   top: 0;
   background: #fff;
   z-index: 10;
   border-bottom: 1px solid #eaeaea;
   padding: 15px;
}

.mobile-brand-logo {
   max-height: 35px;
}

.custom-offcanvas-close {
   background: none;
   border: none;
   font-size: 24px;
   cursor: pointer;
   float: right;
   margin-top: 5px;
}

.clear-both {
   clear: both;
}

.custom-offcanvas-nav {
   display: flex;
   flex-direction: column;
   padding: 15px 0;
}

.custom-offcanvas-link {
   padding: 12px 20px;
   color: #333;
   text-decoration: none;
   font-weight: 500;
   border-bottom: 1px solid #f0f0f0;
   transition: background 0.2s;
}

.custom-offcanvas-link:hover {
   background: #f9f9f9;
   color: #000;
}

/* Stop body scrolling when menu is open */
body.mobile-menu-open {
   overflow: hidden !important;
}

/* Fix profile button border outbox */
@media (max-width: 767px) {
   #account-btn-custom {
      outline: none !important;
      box-shadow: none !important;
   }

   /* Mobile profile dropdown - normal dropdown style, not off-canvas */
   #user-account-wrapper {
      position: relative !important;
   }

   #user-account-wrapper .client-dropdown-box {
      position: absolute !important;
      top: 100% !important;
      right: 0 !important;
      left: auto !important;
      width: 220px !important;
      min-width: 220px !important;
      max-width: 280px !important;
      margin-top: 8px !important;
      background: #fff !important;
      border-radius: 8px !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
      z-index: 10000 !important;
      transform: none !important;
   }

   #user-account-wrapper .client-dropdown-box.active {
      display: block !important;
   }

   /* Show profile icon prominently */
   .mobile-profile-icon {
      display: flex !important;
      align-items: center;
      justify-content: center;
      padding: 8px;
   }

   /* Show hamburger for NON-logged-in users only */
   .custom-mobile-menu-btn {
      display: flex !important;
      flex-direction: column !important;
      gap: 5px !important;
      padding: 10px !important;
      cursor: pointer !important;
      background: none !important;
      border: none !important;
      position: relative !important;
      z-index: 1001 !important;
      margin-left: auto !important;
      flex-shrink: 0 !important;
      visibility: visible !important;
      opacity: 1 !important;
      pointer-events: auto !important;
   }

   .custom-mobile-menu-btn span {
      display: block !important;
      width: 25px !important;
      height: 3px !important;
      background-color: #333 !important;
      transition: all 0.3s !important;
      border-radius: 2px !important;
   }
}

/* Desktop - hide hamburger, show full menu */
@media (min-width: 768px) {
   .custom-mobile-menu-btn {
      display: none !important;
   }

   .mobile-profile-icon {
      display: none !important;
   }
}

/* Extra override to ensure hamburger visibility on mobile */
@media (max-width: 767px) {

   /* Ensure nav-links and nav-buttons are hidden */
   .nav-links {
      display: none !important;
   }

   /* Center the currency dropdown on mobile using flex 3-column layout */
   .nav-actions {
      flex: 1 !important;
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      margin: 0 auto !important;
      min-width: 80px !important;
      padding: 0 10px !important;
      position: relative !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
   }

   .nav-actions .nav-button {
      display: none !important;
   }

   /* Override any display: none from other stylesheets */
   button#custom-mobile-toggle {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
   }

   button#custom-mobile-toggle span {
      display: block !important;
   }
}

/* Mobile Profile Button Styling for Logged-In Users */
@media (max-width: 767px) {
   #user-account-wrapper {
      position: relative !important;
      display: flex !important;
      align-items: center !important;
      margin-left: auto !important;
   }

   .mobile-profile-btn {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      background: none !important;
      border: none !important;
      padding: 8px 12px !important;
      cursor: pointer !important;
      position: relative !important;
      z-index: 1001 !important;
      flex-shrink: 0 !important;
   }

   .mobile-profile-btn i {
      font-size: 32px !important;
      color: #333 !important;
   }

   #user-account-wrapper .client-dropdown-box {
      position: absolute !important;
      top: 100% !important;
      right: 0 !important;
      left: auto !important;
      width: 220px !important;
      margin-top: 8px !important;
      background: #fff !important;
      border-radius: 8px !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
      z-index: 10000 !important;
      display: none !important;
   }

   #user-account-wrapper .client-dropdown-box.active {
      display: block !important;
   }
}

/* Reduce breadcrumb padding for client area pages */
body.clientarea-page .breadcrumb__area,
.breadcrumb__area:not(.login) {
   padding: 120px 0 40px !important;
   margin-top: 0 !important;
}

/* Reserve space for promo banner - content stays fixed when banner removed */
body.clientarea-page .breadcrumb__area {
   padding-top: 120px !important;
   min-height: 120px;
}

/* Hide breadcrumb content text in client area */
body.clientarea-page .breadcrumb__area .breadcrumb__content {
   display: none !important;
}

/* Fix shape overlay blocking clicks */
.breadcrumb__area .shape {
   z-index: 0 !important;
   pointer-events: none !important;
}

/* Fix Font Awesome icons in sidebar and throughout clientarea */
.sidebar .fa,
.sidebar .fas,
.sidebar .far,
.sidebar .fal,
.sidebar .fab,
.sidebar .fad,
.card-title .fa,
.card-title .fas,
.card-title .far,
.card-title .fal,
.card-title .fab,
.card-title .fad,
.tt-client-home-cards .fa,
.tt-client-home-cards .fas,
.tt-client-home-cards .far,
.tt-client-home-cards .fal,
.tt-client-home-cards .fab,
.tt-client-home-cards .fad {
   font-family: "Font Awesome 5 Free" !important;
   font-weight: 900 !important;
}

.sidebar .fab,
.sidebar .fad,
.card-title .fab,
.card-title .fad,
.tt-client-home-cards .fab,
.tt-client-home-cards .fad {
   font-family: "Font Awesome 5 Brands" !important;
}

/* Override sidebar card header background color from green to primary */
/* Only apply to client area sidebar, NOT store/cart sidebar */
.sidebar:not(.cart-sidebar) .card-header {
   background: linear-gradient(to left, #8a909c 25%, #ababab 75%) !important;
}

/* Update card minimise icon color to match gradient theme */
.sidebar .card-sidebar .card-header .card-title .card-minimise {
   color: #8a909c !important;
}

/* Force FontAwesome icon rendering - prevent CSS var override issues */
.fas,
.far,
.fal,
.fad,
.fab,
.fa,
.fas::before,
.far::before,
.fal::before,
.fad::before,
.fab::before,
.fa::before {
   font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "Font Awesome 5 Pro", "Font Awesome 5 Duotone" !important;
   font-style: normal !important;
   font-variant: normal !important;
   text-rendering: auto !important;
   -webkit-font-smoothing: antialiased !important;
   display: inline-block !important;
   visibility: visible !important;
   opacity: 1 !important;
   width: auto !important;
   height: auto !important;
}

/* Specifically fix solid icons (fas) */
.fas::before {
   font-weight: 900 !important;
}

.far::before {
   font-weight: 400 !important;
}

.fal::before {
   font-weight: 300 !important;
}

/* Ensure content var resolves for FA6 */
i.fas,
i.far,
i.fal,
i.fad,
i.fab {
   line-height: 1 !important;
}

/* Store page sidebar - clean white style matching products page */
.sidebar .panel.card,
.sidebar .card.card-sidebar {
   border: 1.5px solid #e5e7eb !important;
   border-radius: 12px !important;
   overflow: hidden !important;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
   margin-bottom: 16px !important;
}

.sidebar .card-header.panel-heading {
   background: #f8fafc !important;
   background-image: none !important;
   border-bottom: 1px solid #e5e7eb !important;
   padding: 13px 16px !important;
}

.sidebar .card-header.panel-heading h3,
.sidebar .card-header.panel-heading .panel-title {
   font-size: 12px !important;
   font-weight: 700 !important;
   color: #374151 !important;
   text-transform: uppercase !important;
   letter-spacing: 0.8px !important;
   margin: 0 !important;
   display: flex !important;
   align-items: center !important;
   gap: 8px !important;
}

/* Icons in sidebar header - force visible */
.sidebar .card-header.panel-heading .panel-title i,
.sidebar .card-header.panel-heading h3 i {
   font-size: 14px !important;
   color: #374151 !important;
   display: inline-block !important;
   visibility: visible !important;
   opacity: 1 !important;
   width: auto !important;
   height: auto !important;
}

/* Collapse arrow right-aligned */
.sidebar .card-header.panel-heading .panel-minimise,
.sidebar .card-header.panel-heading .card-minimise {
   margin-left: auto !important;
   font-size: 11px !important;
   color: #9ca3af !important;
}

/* Sidebar list items */
.sidebar .list-group-item {
   border: none !important;
   border-bottom: 1px solid #f3f4f6 !important;
   padding: 11px 16px !important;
   font-size: 14px !important;
   color: #374151 !important;
   font-weight: 500 !important;
   transition: background 0.2s ease, color 0.2s ease !important;
   background: #ffffff !important;
}

.sidebar .list-group-item:last-child {
   border-bottom: none !important;
}

.sidebar .list-group-item:hover {
   background: #f3f4f6 !important;
   color: #111827 !important;
   text-decoration: none !important;
}

.sidebar .list-group-item.active {
   background: #111827 !important;
   color: #ffffff !important;
   font-weight: 600 !important;
   border-color: transparent !important;
}

.sidebar .list-group-item.active:hover {
   background: #000000 !important;
}

/* Update button success color to match gradient theme */
.btn-success {
   background: linear-gradient(to left, #8a909c 25%, #ababab 75%) !important;
   border-color: #8a909c !important;
}

.btn-success:hover,
.btn-success:active,
.btn-success:focus {
   background: linear-gradient(to left, #7a8090 25%, #9a9a9a 75%) !important;
   border-color: #7a8090 !important;
}

/* Update tiles icon color to match gradient theme */
.tiles .tile i {
   color: #8a909c !important;
}

/* Change tile hover background from green to light grey */
.tiles .tile:hover {
   background-color: #e5e5e5 !important;
}

.tiles .tile:hover i,
.tiles .tile:hover .stat {
   color: #8a909c !important;
}

/* Change table row hover background from green to light grey */
.table-list>tbody>tr:hover>td {
   background-color: #e5e5e5 !important;
}

/* Fix Font Awesome icons in stat tiles (Services, Domains, Tickets, Invoices) */
.tiles .fa,
.tiles .fas,
.tiles .far,
.tiles .fal,
.tiles .fab,
.tiles .fad,
.row.no-gutters .fa,
.row.no-gutters .fas,
.row.no-gutters .far,
.row.no-gutters .fal,
.row.no-gutters .fab,
.row.no-gutters .fad {
   font-family: "Font Awesome 5 Free" !important;
   font-weight: 900 !important;
}

.tiles .fab,
.tiles .fad,
.row.no-gutters .fab,
.row.no-gutters .fad {
   font-family: "Font Awesome 5 Brands" !important;
}

/* =========================================================================
   DOMAIN SEARCH HERO LAYOUT IMPROVEMENTS (Modern Hosting UI)
   ========================================================================= */

/* 1. Main Hero Spacing (Push heading down slightly) */
.domain__search-area-two {
   padding-top: 140px !important;
   padding-bottom: 90px !important;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

/* 2. Vertical Spacing: Heading, Subtitle, Search box */
.domain__search-area-two .section__title {
   margin-bottom: 48px !important;
}

.domain__search-area-two .section__title .title {
   margin-bottom: 24px !important;
   font-weight: 700;
   line-height: 1.2;
}

.domain__search-area-two .section__title p {
   font-size: 1.125rem;
   max-width: 700px;
   margin: 0 auto;
   line-height: 1.6;
   opacity: 0.9;
}

/* 4. Search Bar centering and styling */
.domain__search-wrap-two {
   max-width: 800px;
   margin: 0 auto !important;
   position: relative;
   z-index: 10;
}

/* Search button remains attached to the input (same row) */
.domain__search-form-two {
   display: flex;
   align-items: center;
   background: #ffffff;
   border-radius: 60px;
   padding: 8px 10px 8px 30px;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
   border: 1px solid rgba(0, 0, 0, 0.05);
}

.domain__search-form-two svg {
   flex-shrink: 0;
   color: #6b7280;
}

.domain__search-form-two .search {
   flex: 1;
   background: transparent !important;
   border: none !important;
   padding: 15px 20px !important;
   box-shadow: none !important;
   font-size: 1.15rem;
   outline: none;
   color: #111827;
}

.domain__search-form-two .search::placeholder {
   color: #9ca3af;
}

.domain__search-form-two .tg-btn {
   border-radius: 50px;
   padding: 16px 36px;
   font-weight: 600;
   font-size: 1.05rem;
   white-space: nowrap;
   flex-shrink: 0;
   box-shadow: 0 4px 12px rgba(0, 112, 243, 0.2);
   transition: all 0.3s ease;
}

.domain__search-form-two .tg-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 16px rgba(0, 112, 243, 0.3);
}

/* 3. TLD Chips Grid */
.domain__list {
   margin-top: 45px !important;
   max-width: 1200px;
   margin-left: auto;
   margin-right: auto;
   position: relative;
   z-index: 10;
}

.domain__list .list-wrap {
   display: flex;
   flex-wrap: wrap;
   /* allow wrap on smaller */
   justify-content: center;
   gap: 16px !important;
   padding: 0;
   margin: 0;
   list-style: none;
}

@media (min-width: 1024px) {
   .domain__list .list-wrap {
      flex-wrap: nowrap;
      /* prevent wrap on desktop */
   }
}

.domain__list .list-wrap li {
   background: #ffffff;
   border: 1px solid #e5e7eb;
   border-radius: 100px !important;
   padding: 12px 26px !important;
   font-size: 0.95rem;
   font-weight: 500;
   color: #374151;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   transition: all 0.25s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
   white-space: nowrap;
}

.domain__list .list-wrap li:hover {
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
   transform: translateY(-2px);
   border-color: #d1d5db;
   color: #111827;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
   .domain__search-area-two {
      padding-top: 100px !important;
      padding-bottom: 70px !important;
   }

   .domain__search-area-two .section__title .title {
      font-size: 2rem !important;
      margin-bottom: 16px !important;
   }

   .domain__search-area-two .section__title {
      margin-bottom: 32px !important;
   }

   .domain__search-form-two {
      padding: 6px 8px 6px 20px;
      border-radius: 50px;
   }

   .domain__search-form-two svg {
      width: 24px;
      height: 24px;
   }

   .domain__search-form-two .search {
      padding: 12px 15px !important;
      font-size: 1rem;
   }

   .domain__search-form-two .tg-btn {
      padding: 12px 24px;
      font-size: 0.95rem;
   }

   .domain__list {
      margin-top: 30px !important;
   }

   .domain__list .list-wrap {
      gap: 12px !important;
   }

   .domain__list .list-wrap li {
      padding: 10px 20px !important;
      font-size: 0.85rem;
   }
}

@media (max-width: 480px) {
   .domain__search-form-two {
      padding: 5px 5px 5px 15px;
   }

   .domain__search-form-two .search {
      padding: 10px !important;
      font-size: 0.9rem;
   }

   .domain__search-form-two .tg-btn {
      padding: 10px 16px;
      font-size: 0.9rem;
   }
}

/* Domain Search Page - Improved Spacing & Professional Look */
.domain__search-area-two .domain__inner-wrap-two {
   padding: 20px 0;
}

.domain__search-wrap-two {
   margin-bottom: 40px !important;
}

.domain__search-form-two {
   max-width: 700px;
   margin: 0 auto;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   border-radius: 50px;
   padding: 8px 8px 8px 30px !important;
}

.domain__search-form-two .search {
   height: 52px;
   border-radius: 50px;
   padding: 0 20px !important;
   font-size: 1.05rem;
}

.domain__search-form-two .tg-btn {
   height: 52px;
   padding: 0 35px;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 600;
}

/* TLD List - Better Spacing & Alignment */
.domain__list {
   margin-top: 35px !important;
   padding: 25px 20px;
   background: rgba(255, 255, 255, 0.95);
   border-radius: 20px;
   box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.domain__list .list-wrap {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 14px 18px !important;
   padding: 10px 0;
}

.domain__list .list-wrap li {
   background: #ffffff;
   border: 1px solid #e5e7eb;
   border-radius: 50px !important;
   padding: 10px 24px !important;
   font-size: 0.95rem;
   font-weight: 600;
   color: #374151;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
   white-space: nowrap;
   min-width: auto;
   text-align: center;
}

.domain__list .list-wrap li:hover {
   background: #f8fafc;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
   transform: translateY(-3px);
   border-color: #3b82f6;
   color: #111827;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
   .domain__search-form-two {
      padding: 6px 6px 6px 20px !important;
      border-radius: 40px;
   }

   .domain__search-form-two .search {
      height: 46px;
      padding: 0 12px !important;
      font-size: 0.95rem;
   }

   .domain__search-form-two .tg-btn {
      height: 46px;
      padding: 0 20px;
      font-size: 0.9rem;
   }

   .domain__list {
      margin-top: 25px !important;
      padding: 20px 15px;
      border-radius: 16px;
   }

   .domain__list .list-wrap {
      gap: 10px 12px !important;
   }

   .domain__list .list-wrap li {
      padding: 8px 18px !important;
      font-size: 0.85rem;
   }
}

@media (max-width: 480px) {
   .domain__search-form-two {
      flex-direction: column;
      padding: 10px !important;
      border-radius: 20px;
      gap: 10px;
   }

   .domain__search-form-two .search {
      width: 100%;
      height: 48px;
      border-radius: 12px;
   }

   .domain__search-form-two .tg-btn {
      width: 100%;
      height: 48px;
      border-radius: 12px;
   }

   .domain__search-wrap-two {
      margin-bottom: 30px !important;
   }
}

/* =============================================
   NEW PREMIUM DOMAIN HERO SECTION
   ============================================= */
.domain-hero-section {
   position: relative;
   padding: 60px 0 80px;
   overflow: hidden;
   background: linear-gradient(180deg, #f7faff 0%, #ffffff 60%, #ffffff 100%);
}

.domain-hero-bg {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-image:
      linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
      radial-gradient(ellipse at 30% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 100%, rgba(139, 92, 246, 0.04) 0%, transparent 40%);
   background-size: 60px 60px, 60px 60px, 100% 100%, 100% 100%;
   background-position: 0 0, 0 0, 0 0, 0 0;
   background-repeat: repeat, repeat, no-repeat, no-repeat;
   z-index: 0;
   pointer-events: none;
}

.domain-hero-content {
   position: relative;
   z-index: 1;
   max-width: 900px;
   margin: 0 auto;
   text-align: center;
   padding-top: 120px;
}

/* Title Styling */
.domain-hero-title {
   margin-bottom: 48px;
}

.domain-hero-title h1 {
   font-size: 3rem;
   font-weight: 700;
   color: #111827;
   margin-bottom: 18px;
   letter-spacing: -0.025em;
   line-height: 1.2;
}

.domain-hero-title p {
   font-size: 1.18rem;
   color: #6b7280;
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.65;
}

/* Search Form Wrapper */
.domain-search-wrapper {
   margin-bottom: 50px;
}

.domain-search-form {
   max-width: 680px;
   margin: 0 auto;
}

.search-input-group {
   display: flex;
   align-items: center;
   background: #f9fafb;
   border: 1px solid #e5e7eb;
   border-radius: 60px;
   padding: 6px 6px 6px 24px;
   transition: all 0.3s ease;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-input-group:focus-within {
   background: #ffffff;
   border-color: #3b82f6;
   box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.search-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   color: #9ca3af;
   margin-right: 12px;
}

.domain-input {
   flex: 1;
   background: transparent;
   border: none;
   outline: none;
   font-size: 1.1rem;
   color: #111827;
   padding: 16px 0;
}

.domain-input::placeholder {
   color: #9ca3af;
}

.search-btn {
   display: flex;
   align-items: center;
   gap: 8px;
   background: #111827;
   color: #ffffff;
   border: none;
   border-radius: 50px;
   padding: 16px 32px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(31, 31, 31, 0.2);
}

.search-btn:hover {
   background: #6b7280;
   color: #ffffff;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(31, 31, 31, 0.3);
}

/* Popular TLDs Section */
.popular-tlds {
   margin-top: 15px;
}

.tlds-label {
   display: block;
   font-size: 0.92rem;
   color: #6b7280;
   margin-bottom: 24px;
   font-weight: 500;
}

.tlds-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 14px;
}

@media (min-width: 1024px) {
   .tlds-grid {
      flex-wrap: nowrap;
      /* Prevent wrap on desktop */
      gap: 10px;
      /* Reduced gap slightly to fit 8 items on narrow desktops */
   }
}

.tld-card {
   display: flex;
   flex-direction: column;
   align-items: center;
   background: #ffffff;
   border: 1px solid #e5e7eb;
   border-radius: 16px;
   padding: 12px 14px;
   /* Reduced from 16px 22px to fit 8 chips comfortably */
   min-width: 90px;
   /* Reduced to fit 8 chips on desktop width */
   text-decoration: none;
   transition: all 0.3s ease;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.tld-card:hover {
   background: #ffffff;
   border-color: #1f1f1f;
   transform: translateY(-4px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tld-ext {
   font-size: 1.1rem;
   font-weight: 700;
   color: #111827;
   margin-bottom: 6px;
}

.tld-price {
   font-size: 0.88rem;
   color: #333333;
   font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
   .domain-hero-section {
      padding: 30px 0 50px;
   }

   .domain-hero-content {
      padding-top: 180px;
   }

   .domain-hero-title h1 {
      font-size: 2.2rem;
      color: #111827;
   }

   .domain-hero-title p {
      font-size: 1rem;
      color: #6b7280;
   }

   .search-input-group {
      flex-direction: column;
      border-radius: 20px;
      padding: 12px;
      gap: 12px;
      background: #f9fafb;
   }

   .search-icon {
      display: none;
   }

   .domain-input {
      width: 100%;
      text-align: center;
      padding: 14px;
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      color: #111827;
   }

   .search-btn {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
      background: #1f1f1f;
      color: #ffffff;
   }

   .tlds-grid {
      gap: 10px;
   }

   .tld-card {
      padding: 14px 18px;
      min-width: 85px;
      border-radius: 14px;
      background: #ffffff;
   }

   .tld-ext {
      font-size: 1rem;
      color: #111827;
   }

   .tld-price {
      font-size: 0.82rem;
      color: #333333;
   }
}

@media (max-width: 480px) {
   .domain-hero-content {
      padding-top: 200px;
   }

   .domain-hero-title h1 {
      font-size: 1.75rem;
      color: #111827;
   }

   .domain-hero-title p {
      font-size: 0.9rem;
      color: #6b7280;
   }

   .tlds-grid {
      gap: 8px;
   }

   .tld-card {
      padding: 12px 14px;
      min-width: 75px;
      border-radius: 12px;
      background: #ffffff;
   }

   .tld-ext {
      font-size: 0.95rem;
   }

   .tld-price {
      font-size: 0.78rem;
      color: #333333;
   }
}

/* =========================================================================
   DOMAIN PRICING TABLE (GoDaddy Style)
   ========================================================================= */

.tld-pricing-table {
   width: 100%;
   border-collapse: separate;
   border-spacing: 0 10px;
}

.tld-pricing-table th {
   padding: 15px 24px;
   font-size: 0.95rem;
   font-weight: 600;
   color: #6b7280;
   text-align: left;
   border: none;
   text-transform: uppercase;
   letter-spacing: 0.05em;
   font-family: 'Inter', sans-serif;
}

.tld-pricing-table th:first-child {
   padding-left: 30px;
}

.tld-pricing-table tbody tr {
   background: #ffffff;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
   transition: all 0.3s ease;
   border-radius: 12px;
}

.tld-pricing-table tbody tr:hover {
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
   transform: translateY(-2px);
}

.tld-pricing-table td {
   padding: 20px 24px;
   font-size: 1.05rem;
   color: #374151;
   /* Dark Grey / Black Prices */
   border: 1px solid #f3f4f6;
   border-style: solid none;
}

.tld-pricing-table td:first-child {
   border-left: 1px solid #f3f4f6;
   border-top-left-radius: 12px;
   border-bottom-left-radius: 12px;
   padding-left: 30px;
   font-weight: 700;
   font-size: 1.25rem;
   color: #0d6efd;
   /* Theme Accent */
}

.tld-pricing-table td:last-child {
   border-right: 1px solid #f3f4f6;
   border-top-right-radius: 12px;
   border-bottom-right-radius: 12px;
}

/* Search Box Styling */
.pricing-table-search .search-input-group {
   display: flex;
   align-items: center;
   background: #ffffff;
   border: 1px solid #e5e7eb;
   border-radius: 60px;
   padding: 6px 16px;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pricing-table-search .search-input-group:focus-within {
   border-color: #3b82f6;
   box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.pricing-table-search .search-icon {
   color: #9ca3af;
   margin-right: 12px;
   display: flex;
}

.pricing-table-search .domain-input {
   flex: 1;
   background: transparent;
   border: none;
   outline: none;
   font-size: 1.1rem;
   color: #111827;
   padding: 12px 0;
}

.pricing-table-search .domain-input::placeholder {
   color: #9ca3af;
}

/* Animations */
@keyframes fadeInRow {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.tld-pricing-table tbody tr {
   animation: fadeInRow 0.4s ease forwards;
   opacity: 0;
}

/* Mobile Pricing Table Adaption */
@media (max-width: 768px) {
   .tld-pricing-table {
      display: block;
   }

   .tld-pricing-table thead {
      display: none;
      /* Hide standard headers on mobile */
   }

   .tld-pricing-table tbody {
      display: block;
      width: 100%;
   }

   .tld-pricing-table tbody tr {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
      padding: 15px;
      border: 1px solid #e5e7eb;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   }

   .tld-pricing-table td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 10px;
      border: none !important;
      font-size: 0.95rem;
   }

   .tld-pricing-table td:first-child {
      padding: 5px 10px 15px;
      font-size: 1.3rem;
      border-bottom: 1px solid #f3f4f6 !important;
      margin-bottom: 10px;
      border-radius: 0;
   }

   .tld-pricing-table td::before {
      content: attr(data-label);
      font-weight: 600;
      color: #6b7280;
      font-size: 0.85rem;
      text-transform: uppercase;
   }

   .tld-pricing-table td:first-child::before {
      display: none;
   }
}

/* Optional Dark Theme Adaption */
@media (prefers-color-scheme: dark) {
   .domain-pricing-section.bg-light {
      background: #111827 !important;
   }

   .tld-pricing-table tbody tr {
      background: #1f2937;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
   }

   .tld-pricing-table td {
      border-color: #374151;
      color: #e5e7eb;
   }

   .tld-pricing-table td:first-child {
      border-color: #374151;
      color: #60a5fa;
   }

   .tld-pricing-table th {
      color: #9ca3af;
   }

   .pricing-table-search .search-input-group {
      background: #1f2937;
      border-color: #374151;
   }

   .pricing-table-search .domain-input {
      color: #e5e7eb;
   }
}

/* Container width - set to 2500px for wide screens */
@media (min-width: 1200px) {

   body .container,
   #main-body .container,
   .main-content .container {
      width: 100% !important;
      max-width: 1340px !important;
   }
}

/* ============================================
   FIX: Store/Cart page main-body background
   ============================================ */
#main-body {
   background: #ffffff !important;
   background-image: none !important;
   background-color: #ffffff !important;
}

section#main-body {
   background: #ffffff !important;
   background-image: none !important;
}

/* Fix: store order form container spacing */
#order-standard_cart {
   padding-top: 20px !important;
}

/* ============================================
   FIX: Header user dropdown z-index on cart pages
   ============================================ */
.primary-header {
   position: relative;
   z-index: 10000 !important;
}

.vercel-nav {
   position: relative;
   z-index: 10000 !important;
}

#user-account-wrapper {
   position: relative !important;
   z-index: 10001 !important;
}

#client-dropdown-menu {
   position: absolute !important;
   top: calc(100% + 8px) !important;
   right: 0 !important;
   left: auto !important;
   z-index: 10002 !important;
}

/* ============================================
   STORE PAGE - PRODUCT CARD STYLES
   (Applies to /store/* pages using hostvibe CSS)
   ============================================ */

/* Background fix */
#main-body,
section#main-body {
   background: #ffffff !important;
   background-image: none !important;
}

/* Store wrapper spacing */
#order-standard_cart {
   padding-top: 20px !important;
}

/* Header */
#order-standard_cart .header-lined {
   text-align: center;
   margin-bottom: 32px;
   padding-bottom: 20px;
   border-bottom: 2px solid #e5e7eb;
}

#order-standard_cart .header-lined h2 {
   font-size: 26px;
   font-weight: 700;
   color: #111827;
}

#order-standard_cart .header-lined p {
   color: #6b7280;
   font-size: 15px;
}

/* --- PRODUCT CARD --- */
#order-standard_cart .products .tt-single-product {
   border: 1px solid #e5e7eb !important;
   border-radius: 16px !important;
   background: #ffffff !important;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07) !important;
   transition: all 0.3s ease !important;
   overflow: hidden !important;
   position: relative !important;
   padding: 28px 24px !important;
}

#order-standard_cart .products .tt-single-product:hover {
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13) !important;
   transform: translateY(-4px) !important;
   border-color: #d1d5db !important;
}

/* Featured Badge */
#order-standard_cart .products .tt-single-product .tt-featured-badge {
   position: absolute !important;
   top: 0 !important;
   left: 0 !important;
   right: 0 !important;
   width: 100% !important;
   height: auto !important;
   background: linear-gradient(90deg, #dc2626, #b91c1c) !important;
   color: #fff !important;
   font-size: 11px !important;
   font-weight: 700 !important;
   text-transform: uppercase !important;
   letter-spacing: 1px !important;
   padding: 8px 0 !important;
   text-align: center !important;
   border-radius: 16px 16px 0 0 !important;
}

#order-standard_cart .products .tt-single-product .tt-featured-badge:after {
   display: none !important;
}

#order-standard_cart .products .tt-single-product .tt-featured-badge .badge {
   background: transparent !important;
   font-size: 11px !important;
   font-weight: 700 !important;
   padding: 0 !important;
}

/* Product Name */
#order-standard_cart .products .tt-single-product .tt-product-name h5 {
   font-size: 20px !important;
   font-weight: 700 !important;
   color: #111827 !important;
   margin: 0 0 4px 0 !important;
}

/* Price Box */
#order-standard_cart .products .tt-single-product .tt-product-price {
   background: #f8fafc !important;
   border: 1px solid #e5e7eb !important;
   border-radius: 10px !important;
   padding: 16px !important;
   margin: 16px 0 !important;
}

#order-standard_cart .products .tt-single-product .tt-product-price .price {
   font-size: 26px !important;
   font-weight: 800 !important;
   color: #059669 !important;
   white-space: nowrap !important;
   display: block !important;
   line-height: 1.2 !important;
}

#order-standard_cart .products .tt-single-product .tt-product-price .tt-cycle,
#order-standard_cart .products .tt-single-product .tt-product-price small {
   font-size: 13px !important;
   color: #6b7280 !important;
   display: block !important;
   margin-top: 4px !important;
}

/* Features list */
#order-standard_cart .products .tt-single-product .product-desc,
#order-standard_cart .products .tt-single-product .tt-product-desc {
   text-align: left !important;
}

#order-standard_cart .products .tt-single-product .product-desc ul,
#order-standard_cart .products .tt-single-product .tt-product-desc ul {
   list-style: none !important;
   padding: 0 !important;
   margin: 0 !important;
}

#order-standard_cart .products .tt-single-product .product-desc li,
#order-standard_cart .products .tt-single-product .tt-product-desc li {
   padding: 7px 0 !important;
   border-bottom: 1px solid #f3f4f6 !important;
   font-size: 14px !important;
   color: #374151 !important;
   display: flex !important;
   align-items: center !important;
   gap: 8px !important;
}

#order-standard_cart .products .tt-single-product .product-desc li:last-child,
#order-standard_cart .products .tt-single-product .tt-product-desc li:last-child {
   border-bottom: none !important;
}

#order-standard_cart .products .tt-single-product .product-desc li::before,
#order-standard_cart .products .tt-single-product .tt-product-desc li::before {
   content: "✓" !important;
   color: #059669 !important;
   font-weight: 700 !important;
   font-size: 13px !important;
   flex-shrink: 0 !important;
}

/* Order Button */
#order-standard_cart .products .tt-single-product .btn-order-now,
#order-standard_cart .products .tt-single-product a.btn-primary {
   background: #111827 !important;
   border: none !important;
   border-radius: 10px !important;
   padding: 13px 28px !important;
   font-size: 15px !important;
   font-weight: 600 !important;
   color: #ffffff !important;
   width: 100% !important;
   display: block !important;
   text-align: center !important;
   margin-top: 18px !important;
   transition: all 0.3s ease !important;
   text-transform: uppercase !important;
   letter-spacing: 0.5px !important;
}

#order-standard_cart .products .tt-single-product .btn-order-now:hover,
#order-standard_cart .products .tt-single-product a.btn-primary:hover {
   background: #000000 !important;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
   transform: translateY(-2px) !important;
   color: #ffffff !important;
}

/* Sidebar */
#order-standard_cart .cart-sidebar .card-sidebar {
   border: 1px solid #e5e7eb !important;
   border-radius: 12px !important;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07) !important;
   overflow: hidden !important;
}

#order-standard_cart .cart-sidebar .card-header {
   background: #f8fafc !important;
   border-bottom: 1px solid #e5e7eb !important;
   padding: 14px 18px !important;
}

#order-standard_cart .cart-sidebar .card-header h3 {
   font-size: 12px !important;
   font-weight: 700 !important;
   text-transform: uppercase !important;
   letter-spacing: 0.8px !important;
   color: #374151 !important;
   margin: 0 !important;
}

#order-standard_cart .cart-sidebar .list-group-item {
   border: none !important;
   border-bottom: 1px solid #f3f4f6 !important;
   padding: 12px 18px !important;
   font-size: 14px !important;
   color: #374151 !important;
   transition: all 0.2s ease !important;
   font-weight: 500 !important;
}

#order-standard_cart .cart-sidebar .list-group-item:last-child {
   border-bottom: none !important;
}

#order-standard_cart .cart-sidebar .list-group-item:hover {
   background: #f9fafb !important;
   color: #111827 !important;
}

#order-standard_cart .cart-sidebar .list-group-item.active {
   background: #111827 !important;
   color: #ffffff !important;
   font-weight: 600 !important;
   border-color: transparent !important;
}

/* ============================================
   RC PLAN CARD SYSTEM - store pages
   ============================================ */
.rc-plan-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   align-items: start;
   margin-top: 10px;
}

@media (max-width: 991px) {
   .rc-plan-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 600px) {
   .rc-plan-grid {
      grid-template-columns: 1fr;
   }
}

.rc-plan-card {
   background: #ffffff;
   border: 1.5px solid #e5e7eb;
   border-radius: 18px;
   padding: 32px 24px 28px;
   position: relative;
   transition: all 0.3s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   display: flex;
   flex-direction: column;
}

.rc-plan-card:hover {
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
   transform: translateY(-5px);
   border-color: #d1d5db;
}

.rc-plan-card.rc-plan-featured {
   border-color: #111827;
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
   padding-top: 58px;
}

.rc-plan-badge {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   background: linear-gradient(to left, #6b7280 25%, #333 75%);
   color: #fff;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   text-align: center;
   padding: 9px 0;
   border-radius: 17px 17px 0 0;
}

.rc-plan-header {
   text-align: center;
   margin-bottom: 4px;
}

.rc-plan-name {
   font-size: 20px;
   font-weight: 700;
   color: #111827;
   margin: 0;
}

.rc-plan-pricing {
   text-align: center;
   background: #f8fafc;
   border: 1px solid #e5e7eb;
   border-radius: 12px;
   padding: 14px 12px 10px;
   margin: 14px 0 12px;
}

.rc-plan-from {
   font-size: 12px;
   color: #6b7280;
   margin-bottom: 2px;
}

.rc-plan-price {
   font-size: 28px;
   font-weight: 800;
   color: #059669;
   white-space: nowrap;
   line-height: 1.2;
}

.rc-plan-cycle {
   font-size: 13px;
   color: #6b7280;
   margin-top: 4px;
}

.rc-plan-setup {
   font-size: 12px;
   color: #9ca3af;
   margin-top: 4px;
}

.rc-plan-btn {
   display: block;
   width: 100%;
   text-align: center;
   background: #f3f4f6;
   color: #111827 !important;
   font-size: 15px;
   font-weight: 600;
   border-radius: 10px;
   padding: 13px 0;
   text-decoration: none !important;
   border: 1.5px solid #e5e7eb;
   transition: all 0.25s ease;
   letter-spacing: 0.3px;
   cursor: pointer;
}

.rc-plan-btn:hover {
   background: #111827 !important;
   color: #ffffff !important;
   border-color: #111827 !important;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
   transform: translateY(-1px);
   text-decoration: none !important;
}

.rc-plan-btn.rc-plan-btn-dark {
   background: #111827 !important;
   color: #ffffff !important;
   border-color: #111827 !important;
}

.rc-plan-btn.rc-plan-btn-dark:hover {
   background: #000000 !important;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28) !important;
}

.rc-plan-divider {
   height: 1px;
   background: #f3f4f6;
   margin: 20px 0;
}

.rc-plan-features {
   flex: 1;
}

/* featuresdesc raw HTML */
.rc-features-desc {
   text-align: left;
   font-size: 14px;
   color: #374151;
}

.rc-features-desc ul {
   list-style: none !important;
   padding: 0 !important;
   margin: 0 !important;
}

.rc-features-desc li,
.rc-features-desc p {
   padding: 7px 0;
   border-bottom: 1px solid #f3f4f6;
   font-size: 14px;
   color: #374151;
   display: flex;
   align-items: flex-start;
   gap: 8px;
   line-height: 1.5;
}

.rc-features-desc li:last-child,
.rc-features-desc p:last-child {
   border-bottom: none;
}

.rc-features-desc li::before,
.rc-features-desc p::before {
   content: "✓";
   color: #059669;
   font-weight: 700;
   font-size: 13px;
   flex-shrink: 0;
   margin-top: 1px;
}

/* br-split feature items (plain text description) */
.rc-br-item {
   display: flex;
   align-items: flex-start;
   gap: 9px;
   padding: 8px 0;
   border-bottom: 1px solid #f3f4f6;
   font-size: 14px;
   color: #374151;
   line-height: 1.5;
}

.rc-br-item:last-child {
   border-bottom: none;
}

/* Structured features */
.rc-features-list {
   list-style: none !important;
   padding: 0 !important;
   margin: 0 !important;
}

.rc-features-list li {
   display: flex;
   align-items: flex-start;
   gap: 9px;
   padding: 8px 0;
   border-bottom: 1px solid #f3f4f6;
   font-size: 14px;
   color: #374151;
   line-height: 1.5;
}

.rc-features-list li:last-child {
   border-bottom: none;
}

.rc-check {
   color: #059669;
   font-weight: 700;
   font-size: 13px;
   flex-shrink: 0;
   margin-top: 1px;
}

.rc-feature-val {
   color: #111827;
   font-weight: 600;
}

.rc-plan-stock {
   font-size: 12px;
   color: #9ca3af;
   margin-top: 10px;
   text-align: center;
}

/* ---- submitticket.php Attachments fix ---- */
/* Bootstrap custom-file input fix - FULL WIDTH */
/* Support both body.submitticket and any page with submitticket in URL */
.submitticket .custom-file,
body[class*="submit"] .custom-file,
.primary-content .custom-file {
   display: block !important;
   width: 100% !important;
   height: 42px !important;
   position: relative !important;
   margin-bottom: 12px !important;
}

/* ---- Payment Methods checkbox fix ---- */
/* Fix unclickable checkboxes on payment method add page */
.mc-promo-manage input[type="checkbox"],
.mc-promo-manage .form-check-input,
.primary-content input[type="checkbox"],
.primary-content .form-check-input,
body[class*="payment"] input[type="checkbox"],
body[class*="payment"] .form-check-input,
input[type="checkbox"].form-check-input {
   position: relative !important;
   z-index: 10 !important;
   opacity: 1 !important;
   pointer-events: auto !important;
   cursor: pointer !important;
   width: 18px !important;
   height: 18px !important;
   margin-right: 8px !important;
}

/* Ensure form-check label is clickable */
.mc-promo-manage .form-check,
.mc-promo-manage .form-check-label,
.primary-content .form-check,
.primary-content .form-check-label,
.form-check,
.form-check-label {
   cursor: pointer !important;
   position: relative !important;
   z-index: 5 !important;
}

/* Remove any overlay that might block clicks */
.mc-promo-manage .form-check::before,
.mc-promo-manage .form-check::after,
.primary-content .form-check::before,
.primary-content .form-check::after {
   display: none !important;
}

.submitticket .custom-file-input,
body[class*="submit"] .custom-file-input,
.primary-content .custom-file-input {
   position: relative !important;
   z-index: 2 !important;
   width: 100% !important;
   height: 42px !important;
   margin: 0 !important;
   opacity: 0 !important;
   cursor: pointer !important;
}

.submitticket label.custom-file-label,
body[class*="submit"] label.custom-file-label,
.primary-content label.custom-file-label {
   position: absolute !important;
   top: 0 !important;
   right: 0 !important;
   left: 0 !important;
   z-index: 1 !important;
   height: 42px !important;
   padding: 10px 90px 10px 14px !important;
   line-height: 1.4 !important;
   color: #374151 !important;
   background-color: #ffffff !important;
   border: 1.5px solid #e5e7eb !important;
   border-radius: 8px !important;
   font-size: 14px !important;
   font-weight: 400 !important;
   white-space: nowrap !important;
   overflow: hidden !important;
   text-overflow: ellipsis !important;
   text-align: left !important;
}

.submitticket label.custom-file-label::after,
body[class*="submit"] label.custom-file-label::after,
.primary-content label.custom-file-label::after {
   content: "Browse" !important;
   position: absolute !important;
   top: 0 !important;
   right: 0 !important;
   bottom: 0 !important;
   z-index: 3 !important;
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
   width: 80px !important;
   padding: 0 !important;
   line-height: 1 !important;
   color: #ffffff !important;
   background: #111827 !important;
   border-left: 1px solid #e5e7eb !important;
   border-radius: 0 6px 6px 0 !important;
   font-size: 14px !important;
   font-weight: 500 !important;
}

/* Fix container overflow */
.submitticket .card,
.submitticket .card-body,
body[class*="submit"] .card,
body[class*="submit"] .card-body,
.primary-content .card,
.primary-content .card-body {
   overflow: visible !important;
}

/* Add More button spacing */
.submitticket .btn-secondary,
.submitticket button[type="button"].btn-secondary,
body[class*="submit"] .btn-secondary,
body[class*="submit"] button[type="button"].btn-secondary,
.primary-content .btn-secondary,
.primary-content button[type="button"].btn-secondary {
   margin-top: 8px !important;
   margin-bottom: 12px !important;
}

/* --- HOSTYINDIA MOBILE HEADER CLEANUP --- */
@media (max-width: 991px) {

   /* Hide the currency flag from the crowded main header universally across all pages */
   #currency-dropdown-wrapper {
      display: none !important;
   }
}

/* --- HOSTYINDIA HOMEPAGE MOBILE EDGE-TO-EDGE WIDEN FIX --- */
@media (max-width: 767px) {

   /* Push the hero section closer to the edges, removing the squishy Bootstrap pillarbox effect */
   .hero-section .container {
      padding-left: 0 !important;
      padding-right: 0 !important;
      max-width: 100% !important;
   }

   .hero-section .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
   }

   .hero-section .col-md-6 {
      padding-left: 12px !important;
      /* Crisp 12px edge gap instead of 30px+ */
      padding-right: 12px !important;
   }

   /* Scale down oversized headers & descriptions for a professional mobile aesthetic */
   .hero-title,
   .hero-title h1,
   .domain-hero-content h1 {
      font-size: 2.0rem !important;
      /* ~32px - Large but fits the screen gracefully */
      line-height: 1.25 !important;
      letter-spacing: -0.5px !important;
   }

   .hero-subtitle {
      font-size: 1rem !important;
      /* 16px - highly readable paragraph font */
      line-height: 1.6 !important;
      margin-top: 1rem !important;
   }
}

/* --- PROMO BANNER GRAB BUTTON SPLIT --- */
.promo-banner-content {
   gap: 12px !important;
   /* Ensure there is a clean space between the timer pill and button pill */
}

.promo-deal-btn {
   background: rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border-radius: 8px;
   padding: 8px 18px;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-left: 0 !important;
   /* Override inline margin as we use flex gap now */
}

.promo-deal-btn:hover,
.promo-deal-btn:focus {
   background: rgba(255, 255, 255, 0.35) !important;
   transform: translateY(-2px);
   color: #ffffff !important;
   text-decoration: none !important;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- FIX PROMO BANNER OVERLAP & INLINE BUTTON ON MOBILE --- */
@media (max-width: 991px) {

   /* Allow the navbar to fully wrap the stacked promo banner items */
   .vercel-nav:has(.nav-promo-banner) {
      height: auto !important;
   }

   /* Keep Timer and Button on the SAME LINE horizontally */
   .promo-banner-content {
      flex-direction: row !important;
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 12px !important;
   }

   .promo-banner-countdown {
      width: auto !important;
      /* Override style.css 100% width on mobile */
      padding: 6px 12px !important;
   }

   /* Push the hero TEXT down on standard and domain pages, keeping background attached to nav */
   .vercel-nav:has(.nav-promo-banner)~main .hero-section .hero-content,
   .vercel-nav:has(.nav-promo-banner)~main .domain-hero-section .domain-hero-content {
      padding-top: 140px !important;
   }

   /* Fallback for regular inner pages without a hero section */
   .vercel-nav:has(.nav-promo-banner)~section#main-body {
      padding-top: 140px !important;
   }
}

@media (max-width: 767px) {

   /* Tighten gap on very small screens to fit side-by-side gracefully */
   .promo-banner-countdown {
      gap: 4px !important;
      padding: 8px 10px !important;
   }

   .promo-deal-btn {
      padding: 8px 14px !important;
      font-size: 0.95rem !important;
   }

   /* Adjusted padding since the banner height is now smaller (one row saved) */
   .vercel-nav:has(.nav-promo-banner)~main .hero-section .hero-content,
   .vercel-nav:has(.nav-promo-banner)~main .domain-hero-section .domain-hero-content {
      padding-top: 160px !important;
   }

   .vercel-nav:has(.nav-promo-banner)~section#main-body {
      padding-top: 160px !important;
   }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER WALLET BALANCE CARD
   Displayed inside the profile dropdown for logged-in users.
   ═══════════════════════════════════════════════════════════════ */

.hi-wallet-card {
   margin: 12px 12px 8px;
   padding: 14px 16px;
   background: linear-gradient(135deg, #0f9e6e 0%, #16a34a 100%);
   border-radius: 10px;
   text-align: center;
   box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28);
}

.hi-wallet-label {
   font-size: 11px;
   font-weight: 600;
   color: rgba(255, 255, 255, 0.80);
   text-transform: uppercase;
   letter-spacing: 0.8px;
   margin-bottom: 4px;
}

.hi-wallet-label i {
   margin-right: 4px;
   font-size: 11px;
}

.hi-wallet-amount {
   font-size: 22px;
   font-weight: 700;
   color: #ffffff;
   letter-spacing: -0.5px;
   line-height: 1.2;
   margin-bottom: 10px;
}

.hi-wallet-topup {
   display: inline-block;
   background: rgba(255, 255, 255, 0.18);
   color: #fff;
   font-size: 12px;
   font-weight: 600;
   padding: 5px 14px;
   border-radius: 20px;
   text-decoration: none;
   border: 1px solid rgba(255, 255, 255, 0.30);
   transition: background 0.2s ease, transform 0.15s ease;
   letter-spacing: 0.3px;
}

.hi-wallet-topup:hover {
   background: rgba(255, 255, 255, 0.30);
   color: #fff;
   text-decoration: none;
   transform: translateY(-1px);
}