:root{
    --primary:#2563eb;
    --primary-hover:#1d4ed8;
    --text:#111827;
    --muted:#667085;
    --border:#dfe3e8;
    --bg:#f5f7fb;
    --white:#fff;
    --success:#16a34a;
    --error:#dc2626;
    --shadow:0 20px 55px rgba(15,23,42,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}

.container{
    width:min(94%,940px);
    margin:auto;
}

.hero{

    padding:55px 0;

    text-align:center;

    background:
        radial-gradient(circle at top left,rgba(37,99,235,.08),transparent 35%),
        radial-gradient(circle at top right,rgba(14,165,233,.08),transparent 35%),
        var(--bg);

}

.logo{

    display:inline-block;

    margin-bottom:18px;

}

.logo img{

    height:120px;

    width:auto;

    display:block;

}

.hero h1{

    font-size:58px;

    line-height:1.05;

    margin-bottom:18px;

    letter-spacing:-1px;

}

.hero p{

    max-width:720px;

    margin:0 auto 38px;

    color:var(--muted);

    font-size:20px;

}

#searchContainer{

    position:relative;

    max-width:760px;

    margin:auto;

}

.search-icon{

    position:absolute;

    left:22px;

    top:50%;

    transform:translateY(-50%);

    width:22px;

    height:22px;

    fill:#9ca3af;

    pointer-events:none;

}

#searchInput{

    width:100%;

    height:66px;

    border:1px solid var(--border);

    border-radius:16px;

    padding:0 24px 0 58px;

    font-size:18px;

    background:#fff;

    box-shadow:var(--shadow);

    transition:.2s;

}

#searchInput:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:
        0 0 0 4px rgba(37,99,235,.12),
        var(--shadow);

}

#searchInput::placeholder{

    color:#98a2b3;

}

.status-message{

    margin-top:18px;

    font-weight:600;

}

.status-message.success{

    color:var(--success);

}

.status-message.error{

    color:var(--error);

}

/* ---------- GOOGLE RESULTS ---------- */

.ts-dropdown{

    position:absolute;

    left:0;

    right:0;

    top:calc(100% + 8px);

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 18px 55px rgba(0,0,0,.14);

    z-index:9999;

}

.ts-result{

    display:block;

    width:100%;

    background:#fff;

    border:0;

    border-bottom:1px solid #edf0f3;

    padding:18px 20px;

    text-align:left;

    cursor:pointer;

    transition:.15s;

}

.ts-result:last-child{

    border-bottom:none;

}

.ts-result:hover {
    background: #f8fafc;
    transform: translateX(3px);
    transition: all .18s ease;
}

.ts-result strong{

    display:block;

    font-size:16px;

    color:#111827;

    margin-bottom:4px;

}

.ts-result span{

    display:block;

    font-size:13px;

    color:#667085;

}

.ts-loading,

.ts-empty{
    padding:22px;
    text-align:center;
    color:#667085;
}

.ts-empty strong{
    display:block;
    margin-bottom:10px;
    font-size:18px;
    color:#111827;
}

.ts-empty-help{
    margin-top:8px;
    font-size:15px;
}

.ts-empty-title{
    margin-top:8px;
    margin-bottom:10px;
    font-weight:600;
}

.ts-empty-help ul{
    display:inline-block;
    text-align:left;
    margin:12px 0 0;
    padding-left:18px;
}

.ts-empty-help li{
    margin:6px 0;
}

/* ---------- RESULT CARD ---------- */

#results{

    padding:15px 0 45px;

}

#results .container{

    background:#fff;

    border-radius:22px;

    padding:38px;

    box-shadow:var(--shadow);

}

#businessName{

    font-size:34px;

    margin-bottom:6px;

}

#businessAddress{

    color:var(--muted);

    margin-bottom:26px;

}

.reviewBox{

    border-top:1px solid #edf0f3;

    padding-top:24px;

}

.reviewBox label{

    display:block;

    font-weight:bold;

    margin-bottom:10px;

}

#reviewLink{

    width:100%;

    height:56px;

    border:1px solid var(--border);

    border-radius:12px;

    padding:0 16px;

    font-size:15px;

    background:#f8fafc;

}

.buttons{

    display:flex;

    gap:12px;

    margin-top:18px;

}

#copyButton,
#testButton{

    flex:1;

    height:50px;

    border-radius:12px;

    border:0;

    cursor:pointer;

    font-weight:bold;

    font-size:15px;

    text-decoration:none;

    display:flex;

    justify-content:center;

    align-items:center;

}

#copyButton{

    background:var(--primary);

    color:#fff;

}

#copyButton:hover{

    background:var(--primary-hover);

}

#testButton{

    background:#fff;

    border:1px solid var(--border);

    color:#111827;

}

#testButton:hover{

    background:#f8fafc;

}

/* ---------- SEO ---------- */

.seo{

    padding:20px 0 80px;

}

.seo .container{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:var(--shadow);

}

.seo h2{

    font-size:36px;

    margin-bottom:16px;

}

.seo p{

    color:var(--muted);

    font-size:17px;

}

.hidden{

    display:none!important;

}

/* ---------- MOBILE ---------- */

@media(max-width:768px){

.hero{

padding:40px 0;

}

.logo img{

height:90px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:17px;

}

#searchInput{

font-size:16px;

height:60px;

}

.buttons{

flex-direction:column;

}

#copyButton,
#testButton{

width:100%;

}

#results .container,
.seo .container{

padding:24px;

}

}

@media(max-width:480px){

.hero h1{

font-size:32px;

}

.logo img{

height:72px;

}

#businessName{

font-size:28px;

}

}
.ts-result {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ts-result-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: #5b6475;
}

.ts-result-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ts-result-content {
    min-width: 0;
    flex: 1;
}

.ts-result-name {
    display: block;
    margin-bottom: 3px;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.ts-result-rating {
    margin-bottom: 3px;
    color: #f59e0b;
    font-size: 13px;
    line-height: 1.35;
}

.ts-result-address {
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}
#copyButton.is-copied {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}
/* ---------- FOOTER ---------- */

.footer{
    margin-top:70px;
    padding:28px 20px;
    text-align:center;
    font-size:14px;
    color:#667085;
    border-top:1px solid #e5e7eb;
    background:#fff;
}

.footer a{
    color:inherit;
    text-decoration:none;
}

.footer a:hover{
    color:var(--primary);
}