/* ============================================================
   BPN Domains — Minimal Style
   Inspired by affiliatemarketingdude.com clean top-bar layout
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Roboto:wght@300;400;500&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background: #f5f5f5;
    color: #222222;
    font-size: 15px;
    line-height: 1.6;
}

a {
    color: #222222;
    text-decoration: none;
}

a:hover {
    color: #000000;
    text-decoration: underline;
}

h1, h2, h3, h4, h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* ── Top Navigation Bar ── */
.navbar-inner {
    background: #ffffff;
    border-bottom: 2px solid #222222;
    border-radius: 0;
    margin-bottom: 0 !important;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-inner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Logo / Brand */
h1.brand {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #222222;
    margin: 0;
    padding: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

h1.brand a {
    color: #222222;
    text-decoration: none;
}

h1.brand a:hover {
    text-decoration: none;
    opacity: 0.75;
}

h1.brand span.sub-brand {
    font-weight: 300;
}

/* Nav links — right side */
.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-nav > li > a {
    color: #222222;
    padding: 8px 14px;
    border: 2px solid transparent;
    display: block;
    transition: border-color 0.2s ease;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    background: transparent;
    border-color: #222222;
    text-decoration: none;
    opacity: 1;
}

.navtop {
    margin-top: 0;
    float: none;
}

.navtop a {
    color: #222222;
}

.navtop-inner {
    margin-top: 0;
}

.navbar-nav-top li {
    text-align: center;
}

.navbar-nav-top li a {
    color: #222222;
}

.navbar-nav-menu {
    margin-top: 0 !important;
    float: right;
}

.navbar-nav-inner {
    margin-top: 0 !important;
    float: right;
}

/* Mobile hamburger */
.navbar .navbar-toggle .icon-bar {
    background-color: #222222;
}

.navbar-toggle-home {
    margin-top: 10px;
}

.navbar-toggle-inner {
    margin-top: 10px;
}

/* ── Hero / Homepage Banner ── */
.homepage-img {
    position: relative;
    margin: 0;
    background-size: cover;
    width: 100%;
    min-height: 320px;
    background-image: url('/resources/assets/images/header.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-home {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: center;
    padding-top: 0;
    color: #ffffff;
    font-size: 18px;
}

.col-home h1 {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.col-home .call-to-action {
    margin-top: 20px;
}

/* ── Search Bar ── */
#ajax-search-form select {
    height: 38px;
    border: 1px solid #cccccc;
    font-family: 'Lato', sans-serif;
}

.preload-search {
    display: none;
}

/* ── Page Content Wrappers ── */
.container-white {
    background: #ffffff;
}

.add-paddings {
    padding: 40px 0;
}

.inner-title {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1.brand-inner {
    margin-top: 20px;
    padding-bottom: 10px;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
}

/* ── Domain Listing Cards ── */
ul.domain-list {
    list-style-type: none;
    margin: 30px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

ul.domain-list li {
    background: #ffffff;
    list-style: none;
    float: none;
    width: calc(33.333% - 12px);
    margin: 0;
    border: 1px solid #dddddd;
    border-top: 3px solid #222222;
    transition: box-shadow 0.2s ease;
}

ul.domain-list li:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

ul.domain-list li h3 a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #222222;
    font-size: 16px;
}

ul.domain-list li h3 a:hover {
    text-decoration: underline;
}

ul.domain-list .domain-ext {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 18px;
    float: left;
    width: 28%;
    padding-top: 30px;
    background: #222222;
    color: #ffffff;
    height: 160px;
    text-align: center;
}

ul.domain-list .domain-title {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: left;
    float: right;
    width: 68%;
    padding: 12px;
}

.col-listings {
    background: #ffffff;
    padding: 16px;
    margin-bottom: 16px;
    min-height: 160px;
    border: 1px solid #dddddd;
    border-top: 3px solid #222222;
    transition: box-shadow 0.2s ease;
}

.col-listings:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.domain-price {
    padding: 0;
    margin: 6px 0;
    font-size: 20px;
    font-weight: 900;
    color: #222222;
}

.domain-age {
    float: right;
    margin: 0;
    font-size: 12px;
    color: #888888;
}

/* ── Buttons ── */
a.add-to-cart {
    margin: 0;
    border: 2px solid #222222;
    padding: 6px 10px;
    text-align: center;
    width: auto;
    text-decoration: none;
    color: #222222;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    float: right;
    transition: all 0.2s ease;
}

a.add-to-cart:hover {
    background: #222222;
    color: #ffffff;
    text-decoration: none;
}

a.add-to-cart-inner {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #28a745;
    color: #ffffff;
    width: 100%;
    display: block;
    margin: 0;
    padding: 10px;
    text-align: center;
    border: 2px solid #28a745;
    transition: all 0.2s ease;
}

a.add-to-cart-inner:hover {
    color: #28a745;
    background: #ffffff;
    text-decoration: none;
}

a.btn-inverse {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background:  #28a745;
    color: #ffffff;
    width: 100%;
    display: block;
    margin: 0;
    padding: 10px;
    text-align: center;
    border: 2px solid  #28a745;
    transition: all 0.2s ease;
}

a.btn-inverse:hover {
    color: #1a6fc4;
    background: #ffffff;
    text-decoration: none;
}

a.more-info {
    border: 2px solid #222222;
    border-right: 0;
    padding: 6px 10px;
    text-align: center;
    width: auto;
    text-decoration: none;
    color: #222222;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    float: right;
    transition: all 0.2s ease;
}

a.more-info:hover {
    background: #222222;
    color: #ffffff;
    text-decoration: none;
}

.btn-navi {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    border: 2px solid #222222;
    padding: 8px 18px;
    transition: all 0.2s ease;
}

.btn-navi:hover,
.btn-navi:focus,
.btn-navi:active,
.btn-navi.active {
    color: #222222;
    background-color: #ffffff;
    border-color: #222222;
}

.btn-navi:active,
.btn-navi.active {
    background-image: none;
}

.btn-navi.disabled,
.btn-navi[disabled],
fieldset[disabled] .btn-navi {
    background-color: #888888;
    border-color: #888888;
}

.btn-navi .badge {
    color: #222222;
    background-color: #ffffff;
}

/* ── Table / Filters ── */
.theading {
    background: #f0f0f0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.col-filters {
    display: none;
    text-align: center;
}

.col-filter-active {
    display: block;
}

.inline {
    display: inline;
}

/* ── Page Loading Bar (Pace) ── */
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #222222;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 3px;
}

/* ── Footer ── */
.footer {
    background: #222222;
    color: #cccccc;
    padding: 40px 0 30px 0;
    margin-top: 60px;
    font-size: 13px;
    line-height: 1.8;
}

.footer a {
    color: #ffffff;
    text-decoration: underline;
}

.footer a:hover {
    color: #dddddd;
}

h1.brand-footer {
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

h1.brand-footer a {
    color: #ffffff;
    text-decoration: none;
}

h1.brand-footer a:hover {
    color: #dddddd;
}

/* Footer disclaimer */
.footer-disclaimer {
    border-top: 1px solid #444444;
    margin-top: 24px;
    padding-top: 20px;
    font-size: 12px;
    color: #999999;
    line-height: 1.7;
}

.footer-disclaimer a {
    color: #bbbbbb;
}

.footer-disclaimer strong {
    color: #ffffff;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin-right: 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media screen and (max-width: 991px) {
    ul.domain-list li {
        width: calc(50% - 8px);
    }
}

@media screen and (max-width: 767px) {
    .navbar-inner .container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }

    h1.brand {
        font-size: 18px;
    }

    .navbar-nav {
        flex-wrap: wrap;
        gap: 4px;
        font-size: 12px;
    }

    .col-home h1 {
        font-size: 28px;
    }

    ul.domain-list li {
        width: 100%;
    }

    .navbar-nav-menu {
        margin-top: 0 !important;
        float: none;
    }

    .navbar-nav-inner {
        margin-top: 0 !important;
        float: none;
    }
}
/* ── Logo Replacement (CSS-only) ── */
h1.brand a {
    display: inline-block;
    width: 220px;
    height: 50px;
    background-image: url('https://gotniches.com/wp-content/uploads/2025/04/gotniches-2.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
}

h1.brand a:hover {
    opacity: 0.85;
    text-decoration: none;
}

/* Footer logo (dark background) */
h1.brand-footer a {
    display: inline-block;
    width: 200px;
    height: 44px;
    background-image: url('https://gotniches.com/wp-content/uploads/2025/04/gotniches-2.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    /* If logo is dark and disappears on the dark footer, uncomment: */
    /* filter: brightness(0) invert(1); */
}
/* ── Order Summary on Checkout Pages ── */
.order-summary {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #222222;
    padding: 20px;
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
}

.order-summary-title {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
    margin: 0 0 14px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-summary-title i {
    margin-right: 8px;
}

.order-summary-count {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.order-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.order-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e5e5;
    font-size: 14px;
}

.order-summary-list li:last-child {
    border-bottom: none;
}

.order-summary-name {
    font-weight: 700;
    color: #222;
    word-break: break-all;
    padding-right: 12px;
}

.order-summary-price {
    font-weight: 900;
    color: #222;
    white-space: nowrap;
}

.order-summary-total {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 2px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.order-summary-total span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}

.order-summary-total strong {
    font-size: 22px;
    font-weight: 900;
    color: #28a745;
}

/* ── Mini Card Row Above Submit Button ── */
.checkout-cards-mini {
    text-align: center;
    padding: 14px 0;
    margin: 8px 0 4px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.checkout-cards-mini .fa-cc-visa,
.checkout-cards-mini .fa-cc-mastercard,
.checkout-cards-mini .fa-cc-amex,
.checkout-cards-mini .fa-cc-discover {
    font-size: 28px;
    color: #555;
    margin: 0 4px;
    vertical-align: middle;
}

.checkout-cards-mini-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-cards-mini-label .fa-lock {
    margin-right: 4px;
}

/* ── Checkout Trust Row ── */
.checkout-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.checkout-trust-row .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
}

.checkout-trust-row .trust-item .fa {
    font-size: 24px;
    color: #28a745;
    flex-shrink: 0;
}

.checkout-trust-row .trust-item span {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.checkout-trust-row .trust-item span small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #888;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
}

/* Mobile */
@media screen and (max-width: 767px) {
    .order-summary-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .order-summary-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .checkout-trust-row {
        gap: 8px;
    }

    .checkout-trust-row .trust-item {
        flex: 1 1 45%;
        padding: 6px;
    }

    .checkout-cards-mini .fa-cc-visa,
    .checkout-cards-mini .fa-cc-mastercard,
    .checkout-cards-mini .fa-cc-amex,
    .checkout-cards-mini .fa-cc-discover {
        font-size: 22px;
    }
}