/* ===== GoDaddy-style redesign ===== */

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #111;
}

/* ---- Top navbar ---- */
.gd-nav {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    padding: 0 2rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gd-nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.gd-nav-logo svg { width: 36px; height: 36px; }

.gd-nav-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #555;
}

.gd-nav-trust .star-icon { color: #00a651; font-size: 1rem; }

/* ---- Hero section (dark navy) ---- */
.gd-hero {
    /*background: #0d1b2a;*/
    background: linear-gradient(to bottom,#000 0%,#000 60%,#fff 40%,#fff 100%);
    padding: 1.5rem 2rem 0rem;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.gd-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.gd-hero-left {
    flex: 1;
    color: #fff;
}

.gd-hero-label {
    font-size: 1.35rem;
    font-weight: 600;
    color: #cdd6e0;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.gd-hero-domain {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.6rem;
    word-break: break-all;
    line-height: 1.15;
}

.gd-hero-subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    color: #cdd6e0;
}

/* ---- Purchase card (right) ---- */
.gd-card-wrap {
    width: 380px;
    flex-shrink: 0;
}

.gd-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dde2e8;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 1.5rem;
    position: relative;
    top: 40px;
}

.gd-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.75rem;
}

/* Badges */
.gd-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.gd-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gd-badge-premium {
    background: #f3eaff;
    color: #6b21a8;
    border: 1px solid #d8b4fe;
}

.gd-badge-verified {
    background: #e8f5e9;
    color: #15803d;
    border: 1px solid #86efac;
}

.gd-badge-fast {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #7dd3fc;
}

.gd-card-tagline {
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 1.1rem;
}

/* Radio options */
.gd-option {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.6rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}

.gd-option.is-selected {
    border-color: #00a651;
    background: #f6fff9;
}

.gd-option input[type="radio"] {
    accent-color: #00a651;
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.gd-option-label {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.gd-option-price {
    font-size: 1rem;
    font-weight: 700;
    color: #00a651;
}

/* Next button */
.gd-btn-next {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0 0.9rem;
    transition: background 0.2s;
    text-align: center;
}

.gd-btn-next:hover { background: #333; }

/* Checklist */
.gd-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.gd-checklist li {
    font-size: 0.82rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.gd-checklist li::before {
    content: "✓";
    color: #00a651;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Payment icons row */
.gd-payment-icons {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.gd-payment-icons i {
    font-size: 1.6rem;
    color: #777;
}

.gd-help-text {
    font-size: 0.8rem;
    color: #333;
    text-align: center;
}

.gd-help-text a { color: #0069ff; }

/* ---- Middle icons section ---- */
.gd-features {
    max-width: 1100px;
    /*margin: 80px auto 2rem;*/
    margin: -150px auto 2rem;
    display: flex;
    gap: 0rem;
    padding: 0 2rem;
    justify-content: flex-start;
}

.gd-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    flex: 0 0 140px;
}

.gd-feature-icon {
    width: 80px;
    height: 80px;
    position: relative;
}

.gd-feature-icon img { width: 100%; height: 100%; object-fit: contain; }

.gd-feature-label {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
}

/* ---- Divider ----
.gd-divider {
    border: none;
    border-top: 1px solid #e6e6e6;
    margin: 1.5rem 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
} 
*/

/* ---- Divider ----*/
.gd-divider {
    border: none;
    border-top: 1px solid #e6e6e6;
    margin: 1.5rem 2rem 1.5rem 5rem;
    max-width: 50%;
} 



/* ---- Info section ---- */
.gd-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.gd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.4rem;
}

.gd-info p {
    font-size: 0.88rem;
    color: #555;
    margin: 0 0 0.6rem;
    max-width: 600px;
}

.gd-info a {
    font-size: 0.88rem;
    color: #0069ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gd-info a:hover { text-decoration: underline; }

/* ---- Footer ---- */
.gd-footer {
    background: #fff;
    border-top: 1px solid #e6e6e6;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #777;
}

.gd-footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-weight: 600;
}

.gd-footer-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gd-footer-right a { color: #777; text-decoration: none; }
.gd-footer-right a:hover { text-decoration: underline; }

/* ---- Modal ---- */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; }
.modal.is-active { display: flex; }

.modal-background { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }

.modal-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    width: 500px;
    max-width: 96vw;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

.modal-card-head {
    padding: 0rem 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-card-head p{
    line-height:1rem;
    margin:1rem 0;
}


.modal-card-title { font-size: 1.1rem; font-weight: 700; }

.delete {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    line-height: 1;
    padding: 0;
}

.modal-card-body { padding:0.5rem 1.2rem 0.5rem 1.2rem; }

.modal-card-foot {
    padding: 0.5rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Form fields */
.field { margin-bottom: 1rem; }
.label { font-size: 0.88rem; font-weight: 600; color: #111; margin-bottom: 4px; display: block; }
.has-text-danger { color: #d32f2f; }
.input, .textarea, .select select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}
.input:focus, .textarea:focus, .select select:focus { border-color: #0069ff; }
.field.has-addons { display: flex; gap: 0; }
.field.has-addons .control:first-child .input { border-radius: 6px 0 0 6px; }
.field.has-addons .control.is-expanded { flex: 1; }
.field.has-addons .select select { border-radius: 0 6px 6px 0; border-left: none; }
.field.has-addons .button { border-radius: 0 6px 6px 0; border-left: none; padding: 0.55rem 1rem; }
.select { position: relative; }
.select select { appearance: none; padding-right: 2rem; cursor: pointer; }

.button {
    padding: 0.55rem 1.1rem;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.2s;
}
.button:hover { background: #f5f5f5; }
.button.is-primary {
    background: #0069ff;
    color: #fff;
    border-color: #0069ff;
}
.button.is-primary:hover { background: #004fcc; }

/* Loading modal */
#loading-modal .modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
    position: relative;
    z-index: 1;
}

.loading-spinner {
    width: 36px; height: 36px;
    border: 4px solid #e0e0e0;
    border-top-color: #0069ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 380px;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
}
.notification.is-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.notification.is-danger { background: #fce4ec; color: #7f0000; border: 1px solid #ef9a9a; }
.notification.is-warning { background: #fff8e1; color: #4e3b00; border: 1px solid #ffe082; }
.notification.is-info { background: #e3f2fd; color: #0d3d6e; border: 1px solid #90caf9; }

@keyframes slideInRight { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(110%); opacity: 0; } }

/* Responsive */
@media (max-width: 768px) {
    .gd-hero-inner { flex-direction: column; gap: 1.5rem; }
    .gd-card-wrap { width: 100%; }
    .gd-card { top: 0; }
    .gd-hero-domain { font-size: 1.9rem; }
    .gd-features { flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
    .gd-footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
