@import url('https://fonts.googleapis.com/css2?family=Martel:wght@200;300;400;600;700;800;900&family=Varela&display=swap');
body{
     font-family: Martel, sans-serif !important;
}
h1, h2, h3, h4, h5{font-family: Varela, sans-serif !important;}
/* Header */
.main-header {
    background-color: #292929;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    width: 100%;
    font-family: Varela, sans-serif;
}

.header-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.navbar-brand img {
    height: 50px;
    margin-right: 8px;
}

.header-logo-menu {
    display: flex;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav .nav-link:hover {
    color: #f97316;
}

/* Desktop Dropdown */
.main-header .dropdown-menu {
    position: absolute;
    width: 73%;
    top: 100%;
    left: 110px;
    background-color: #333;
    border-radius: 4px;
    padding: 50px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0.5rem;
}

.main-header .dropdown-menu:before {
    content: '';
    position: absolute;
    background: url(../img/dotted-back.png) center;
    width: 100%;
    height: 100%;
}

.main-header .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-header .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #adadad;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    position: relative;
}

.main-header .dropdown-menu a:before {
    background-color: rgb(236 86 1/1);
    content: "";
    border-radius: 50%;
    width: 4px;
    height: 4px;
    left: 0px;
    top: 20px;
    position: absolute;
}

.main-header .dropdown-menu a:hover {
    color: #f97316;
}

.right-header a:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.right-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.right-header img {
    max-height: 40px;
}

.logout {
    display: none;
}

.calc-tooltip {
    position: relative;
}

.calc-tooltip:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.login-btn {
    position: relative;
    color: #fff;
    border: 1px solid #f97316;
    padding: 10px 30px;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    z-index: 1;
    font-size: 18px;
    font-family: Varela, sans-serif;
}

.login-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #f97316;
    z-index: 0;
    transition: width 0.4s ease;
}

.login-btn:hover::before {
    width: 100%;
}

.login-btn:hover {
    color: #fff;
    text-decoration: none;
}

.login-btn span,
.login-btn img {
    position: relative;
    z-index: 1;
}


/* Custom hamburger styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X transformation */
.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: url(../img/dotted-back.png) center;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 20px;
    display: none;
}

.mobile-menu.active {
    left: 0;
    display: block;
    top: 80px;
}

.mobile-nav {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-nav .nav-item {
    margin-bottom: 1rem;
    width: 100%;
    position: relative;
}

.mobile-nav .nav-link {
    color: #f0f0f0;
    text-decoration: none;
    padding: 15px 0;
    font-size: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-nav .nav-link:hover {
    background-color: #333;
    padding-left: 10px;
    color: #f97316;
}

/* Mobile Dropdown Panel */
.mobile-dropdown {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: url(../img/dotted-back.png) center;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    padding-top: 0px;
    opacity: 0;
    visibility: hidden;
}

.mobile-dropdown.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1002;
}

.mobile-dropdown-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    display: none;
}

.back-btn {
    background: #292929;
    color: #eee;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 15px;
    border: 1px solid #ff660f;
}

.back-btn img {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    padding: 50px 20px 20px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 25px 0;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.mobile-dropdown-content a:hover {
    color: #f97316;
    padding-left: 10px;
}

.mobile-right-header {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    padding: 0 2rem;
    align-items: flex-start;
    justify-content: center;
}

.mobile-right-header .login-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 30px;
    display: none;
}

/* Overlay for body when menu is open */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Tooltip styles */
.tooltip {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3337;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Footer */
footer.page-site-footer {
    background-color: #292929;
    color: #ccc;
    font-family: Varela, sans-serif;
}

footer.page-site-footer a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

footer.page-site-footer a:hover {
    color: #fff;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding: 0 15px;
}

.footer-logo {
    height: 85px;
    margin-bottom: 1rem;
    float: right;
}

.footer-links h6 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0.75rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
    font-family: Martel;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 16px;
    font-family: Martel;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: #ccc;
    font-size: 14px;
    border: 1px solid #383838;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.social-icons a:hover {
    color: #f97316;
    text-decoration: none;
}

/* Add margin for sticky header */
body {
    padding-top: 80px;
}

a{color: #ff660f;}
/* theme css  */

#order-standard_cart .view-cart-items-header,
#order-standard_cart .empty-cart .btn{background-color: #ff660f !important;}
#order-standard_cart .view-cart-items{border-bottom: 2px solid #ff660f !important;}
.btn-primary, .btn-outline-primary:hover, .list-group-item.active, .btn-info:hover,
.suggested-domains .btn:not(.domain-contact-support){
        background-color: #ff660f !important;
    border-color: #ff660f !important;
    font-family: Varela, sans-serif !important;
}
.btn-outline-primary{
    color: #ff660f !important;
    border-color: #ff660f !important;
    font-family: Varela, sans-serif !important;
}
.btn-outline-primary:hover{color: #fff !important;}

#order-standard_cart .sub-heading span, #order-standard_cart .sub-heading-borderless span{color: #ff660f !important;}

.btn-info{background-color: #f97316 !important; border-color: #f97316 !important; font-family: Varela, sans-serif !important;}

.dataTables_wrapper table.table-list thead th{background: #292929 !important; color: #f0f0f0 !important; font-family: Varela, sans-serif !important;}
.card-header{background-color: #292929 !important;
    border-bottom: 1px solid  #292929 !important;
    color: #fff !important;
    font-family: Varela, sans-serif !important;
    }
.btn{font-family: Varela, sans-serif !important;}
.btn-link{ color: #ff660f !important; font-family: Varela, sans-serif !important; }
#order-standard_cart .empty-cart .btn{color: #fff !important;}

/* Mobile responsive styles */
@media (max-width: 991.98px) {
    .menu-toggle {
        display: block;
    }

    .main-nav,
    .right-header {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .footer-col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .mobile-right-header {
        margin-top: 0;
    }

    .logout {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .header-left {
        width: 100%;
    }

    .header-logo-menu {
        justify-content: space-between;
        width: 100%;
    }

    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-logo {
        float: none;
    }
}