.currency-switcher {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .currency-switcher button {
      padding: 10px 15px;
      border: none;
      cursor: pointer;
      display: block;
      font-weight: bold;
      width: 80px;
      transition: background-color 0.3s, transform 0.2s;
    }

    .usd {
      background-color: black;
      color: white;
    }

    .bdt {
      background-color: crimson;
      color: white;
    }
    .inr {
      background-color: rgb(19, 106, 86);
      color: white;
    }

    .currency-switcher button.active {
      transform: scale(1.1);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .rate {
      font-size: 1.8em;
    }
    .amount-left{
      opacity: 1;
      transition: opacity 0.5s ease;
    }
    .fade-out {
      opacity: 0;
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    
    .trust-badge {
            display: inline-flex;
            align-items: center;
            background: #f5f5f5;
            padding: 8px 15px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-decoration: none; /* Remove default link underline */
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .trust-badge:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .trust-stars {
            color: #00B67A; /* TrustPilot Green */
            font-size: 16px;
            margin-right: 8px;
        }
        
        .trust-text {
            font-size: 14px;
            color: #333;
            font-weight: 600;
        }
        
        .trust-text span {
            color: #00B67A;
            font-weight: 700;
        }

        /* domain */
        /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Scoped Domain Finder CSS --- */

.domain-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.domain-section {
    font-family: 'Roboto', sans-serif;
    
    color: #fff;
    padding: 60px 20px;
}

.domain-section .rts-domain-finder {
    background: #2d2d2d;
    text-align: center;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
}

.domain-section .rts-domain-finder__content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.domain-section .domain-checker {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    background: transparent;
    padding: 10px;
}

.domain-section .domain-checker input[type="text"] {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #444;
    border-radius: 30px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    min-width: 250px;
    max-width: 450px;
    outline: none;
    transition: border-color 0.3s ease;
}

.domain-section .domain-checker input[type="text"]:focus {
    border-color: #2563eb;
}

.domain-section .domain-checker button {
    background-color: #2563eb;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.domain-section .domain-checker button:hover {
    background-color: #1e40af;
}

.domain-section .compare__list ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.domain-section .compare__list ul li {
    font-size: 0.95rem;
    background: #444;
    padding: 5px 10px;
    border-radius: 5px;
}

.domain-section .compare__list ul li span.ext {
    text-decoration: underline;
    color: #facc15;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .domain-section .rts-domain-finder__content h3 {
        font-size: 1.8rem;
    }

    .domain-section .domain-checker {
        flex-direction: column;
    }

    .domain-section .domain-checker input[type="text"],
    .domain-section .domain-checker button {
        width: 100%;
    }

    .domain-section .domain-checker input[type="text"] {
        text-align: center;
    }
}
