@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
*, *::before, *::after {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    visibility: visible;
    color: #000;
    letter-spacing: 0.05em;
    touch-action: manipulation;

}

input, select, textarea {
    font-size: 16px; /* Set a minimum font size to stop auto-zoom */
}

/* general css  */

.fix {
    overflow: hidden;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.container {
    max-width: 1170px;
}

@media only screen and (max-width: 767px) {
    .container {
        width: 450px;
    }
}

@media only screen and (max-width: 479px) {
    .container {
        width: 100%;
    }
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.no-gutters>.col, .no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
/* ***************************** */

.header_transparent {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

@media only screen and (min-width: 820px) and (max-width: 1024px) {
    .header_transparent {
        position: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .header_transparent {
        position: inherit;
    }
}

.header_transparent .header_container {
    background: rgba(0, 0, 0, 0.9);
    padding: 17px 0;
}

@media only screen and (min-width: 820px) and (max-width: 1024px) {
    .header_transparent .header_container {
        background: #1c1d22;
    }
}

@media only screen and (max-width: 767px) {
    .header_transparent .header_container {
        background: #1c1d22;
    }
}

.header_transparent .sticky-header.sticky {
    background: rgba(28, 29, 24, 0.7);
    padding: 8px 0;
}

.header_container {
    padding: 22px 0;
    background: #1c1d22;
}

@media only screen and (max-width: 767px) {
    .header_container {
        padding: 25px 0;
    }
}

.sticky-header.sticky {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    background: rgba(28, 29, 24, 0.7);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    animation: fadeInDown;
    animation-duration: 900ms;
    animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    border-bottom: 0;
    display: block;
    padding: 10px 0;
}

@media only screen and (min-width: 820px) and (max-width: 1024px) {
    .sticky-header.sticky {
        position: inherit;
        box-shadow: inherit;
        animation-name: inherit;
        padding: 0;
        background: inherit;
        opacity: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .sticky-header.sticky {
        position: inherit;
        box-shadow: inherit;
        animation-name: inherit;
        padding: 0;
        background: inherit;
        opacity: inherit;
    }
}

.sticky-header.sticky  {
    max-width: 118px;
}

@media only screen and (min-width: 820px) and (max-width: 1024px) {
    .sticky-header.sticky{
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .sticky-header.sticky{
        max-width: 100px;
    }
}

.header_transparent .sticky-header.sticky {
    background: rgba(28, 29, 24, 0.7);
    padding: 8px 0;
}

/* @media only screen and (max-width: 767px) {
    .logo {
        display: inline-block;
    }
} */

/* @media only screen and (max-width: 767px) {
    .logo a img {
        max-width: 110px;
    }
} */

@media only screen and (min-width: 820px) and (max-width: 1024px) {
    .main_menu {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .main_menu {
        display: none;
    }
}

.main_menu nav>ul {
    display: flex;
    justify-content: flex-end;
}

.main_menu nav>ul>li {
    position: relative;
    flex-shrink: 0;
}

.main_menu nav>ul>li:hover ul.sub_menu {
    visibility: visible;
    max-height: 300px;
    padding: 24px 30px;
}

.main_menu nav>ul>li:hover .mega_menu {
    visibility: visible;
    max-height: 300px;
    padding: 25px 30px 30px 30px;
}

.main_menu nav>ul>li:hover>a {
    color: #cc9900;
}

.main_menu nav>ul>li>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 23px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    color: #fff;
}

.main_menu nav>ul>li>a i {
    margin-left: 3px;
}

.main_menu nav>ul>li>a.active {
    color: #cc9900;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main_menu nav>ul>li>a {
        padding: 10px 15px;
    }
}

.main_menu nav>ul>li ul.sub_menu {
    position: absolute;
    min-width: 215px;
    padding: 0 30px;
    background: #fff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    max-height: 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    overflow: hidden;
    transition: 0.5s;
    z-index: 99;
    top: 100%;
    text-align: left;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.main_menu nav>ul>li ul.sub_menu li a {
    font-size: 13px;
    font-weight: 400;
    display: block;
    line-height: 32px;
    text-transform: capitalize;
}

.main_menu nav>ul>li ul.sub_menu li a:hover {
    color: #cc9900;
}

.main_menu nav>ul>li.mega_items {
    position: static;
}

.main_menu nav>ul>li .mega_menu {
    position: absolute;
    min-width: 100%;
    padding: 0 30px 0 30px;
    background: #fff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    max-height: 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    overflow: hidden;
    transition: 0.5s;
    z-index: 99;
    top: 100%;
    text-align: left;
}

.menu_two nav>ul {
    justify-content: center;
}

.menu_two nav>ul>li:hover>a {
    color: #cc9900;
}

.menu_two nav>ul>li>a {
    padding: 10px 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .menu_two nav>ul>li>a {
        padding: 10px 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu_two nav>ul>li>a {
        padding: 10px 5px;
        font-size: 13px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu_two nav>ul>li>a i {
        margin-left: 1px;
    }
}

.menu_two nav>ul>li>a.active {
    color: #cc9900;
}

.menu_two nav>ul>li ul.sub_menu li a:hover {
    color: #cc9900;
}

.menu_two .mega_menu_inner>li>a:hover {
    color: #cc9900;
}

.menu_two .mega_menu_inner>li ul li a:hover {
    color: #cc9900;
}

.menu_position {
    position: relative;
    padding-top: 12px;
}

.mega_menu_inner {
    display: flex;
    justify-content: space-between;
}

.mega_menu_inner>li>a {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.mega_menu_inner>li>a:hover {
    color: #cc9900;
}

.mega_menu_inner>li ul li {
    display: block;
}

.mega_menu_inner>li ul li a {
    font-size: 13px;
    font-weight: 400;
    display: block;
    line-height: 30px;
    text-transform: capitalize;
}

.mega_menu_inner>li ul li a:hover {
    color: #cc9900;
}

.header_top_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_top_right .header_right_info {
    margin-left: 0;
}

.header_top_right .header_right_info>ul>li {
    margin-right: 11px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header_top_right .header_right_info>ul>li {
        margin-right: 10px;
    }
}

.header_top_right .header_right_info>ul>li:last-child {
    margin-right: 0;
}

.header_top_right .header_right_info>ul>li>a {
    color: #fff;
}

.header_top_right .header_right_info>ul>li:hover>a {
    color: #cc9900;
}

.header_top_right .header_account {
    margin-right: 0;
    margin-left: 20px;
}

.header_top_right .header_account>ul>li {
    position: relative;
    margin-right: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header_top_right .header_account>ul>li {
        margin-right: 8px;
        padding-right: 8px;
    }
}

.header_top_right .header_account>ul>li::before {
    content: "";
    width: 1px;
    height: 18px;
    background: #a4a5a7;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header_top_right .header_account>ul>li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.header_top_right .header_account>ul>li:last-child::before {
    display: none;
}

.header_top_right .header_account>ul>li>a {
    color: #fff;
    font-size: 13px;
}

.header_top_right .header_account>ul>li.top_links>a {
    font-size: 18px;
}

.header_top_right .header_account>ul>li:hover>a {
    color: #cc9900;
}

.header_top_right .dropdown_language, .header_top_right .dropdown_currency, .header_top_right .dropdown_links {
    right: 0;
    left: auto;
}

/* ************************* */

.master-slider {
    position: relative;
    visibility: hidden;
    font-family: 'Lato', sans-serif;
}

.master-slider a {
    transition: none;
}

.master-slider, .master-slider * {
    box-sizing: content-box;
}

.pt-pb {
    padding-top: 0;
    padding-bottom: 0;
}

.ms-slide {
    position: absolute;
    height: 100%;
    transform: translateZ(0px);
}

.ms-slide .ms-layer {
    position: absolute;
    pointer-events: auto;
}

.ms-layer.bold-title {
    font-weight: 900;
    font-size: 26pt;
    color: #222;
    margin: 0;
}

.ms-layer.light-title {
    margin: 0;
    font-weight: 300;
    font-size: 38pt;
    text-transform: uppercase;
    color: #f1f1f1;
    letter-spacing: -3px;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    color: #c5c5c5;
    background-color: #0a0c0b;
}

.btn, .btn:hover {
    transition: all 0.5s ease-in-out;
}

a {
    color: #000;
    transition: all 0.5s ease-in-out;
}

a:hover, a:focus {
    color: #d9932f;
    outline: none;
    outline-offset: 0px;
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.ms-slide .ms-slide-layers {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 109;
    top: 0px;
    pointer-events: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(125deg, #fb3c7f 0%, #ffc05e 100%);
    border-radius: 10px;
}

.no-padding {
    padding: 0;
}

.no-gutter>[class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.lineeffect {
    margin-bottom: 0;
}

.lineeffect a:hover::before, .lineeffect a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.lineeffect a::before, .lineeffect a::after {
    bottom: 10px;
    content: "";
    left: 10px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    z-index: 1;
}

.lineeffect a::before {
    border-bottom: 1px solid rgba(255, 255, 255);
    border-top: 1px solid #fff;
    transform: scale(0, 1);
}

.lineeffect a::after {
    border-left: 1px solid rgba(255, 255, 255);
    border-right: 1px solid #fff;
    transform: scale(1, 0);
}

.img-fill {
    min-width: -webkit-fill-available;
}

section {
    padding: 50px 0;
}

.category-img img {
    display: block;
    margin-bottom: 15px;
}

.category-img .cat-link {
    text-align: center;
}

.category-img .cat-link a {
    display: inline-block;
    font-weight: normal;
    color: #cc9900;
}

.category-img .cat-link a:hover {
    color: #f0dc6f;
}
#order {
    text-align: center;
    padding: 50px;
    color: white;
}

.super-deal-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    min-height: 500px;
}

@media only screen and (max-width: 1024px) {
    .super-deal-section {
        min-height: 350px;
    }
    .super-deal {
        margin-top: 0px;
        margin-bottom: 15px;
    }
    .super-deal h1 {
        font-weight: 600;
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .super-deal-section {
        background-position: top center;
        min-height: 300px;
    }
}


/* ✅ Center text and form properly */
.super-deal {
    text-align: center;
    margin-bottom: 20px;
}

/* ✅ Order Form Styling */
.order-form-container {
    display: flex;
    justify-content: center;
}

.order-form {
    max-width: 400px;
    width: 100%;
    text-align: left;
}

.order-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.order-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #444;
    border-radius: 5px;
}

.order-form button {
    margin-top: 20px;
    padding: 10px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.order-form button:hover {
    background: darkred;
}

/* ✅ Mobile Fix: Stack text above the form */
@media (max-width: 767px) {
    .super-deal {
        text-align: center;
    }
    
    .order-form-container {
        display: flex;
        justify-content: center;
    }
}

.product-slide .row {
    height: auto;
    margin: 0 auto;
}

.tabSix .nav-tabs {
    border-bottom: none;
}

.tabSix .nav-tabs>li>a {
    margin-right: 0;
    line-height: 1.42;
    background-color: transparent;
    border-style: solid;
    border-color: #898989;
    color: #999;
    border-width: 0 0 0 0;
    border-radius: 0px;
    padding: 10px 25px;
    font-weight: 600;
}

.tabSix .nav-tabs>li.active>a, .tabSix .nav-tabs>li.active>a:focus, .tabSix .nav-tabs>li.active>a:hover, .tabSix .nav-tabs>li>a:hover {
    color: #d9932f;
    cursor: pointer;
    border-width: 0 0 0 0;
    background-color: transparent;
}

.tabSix .nav-tabs li a p {
    margin-bottom: 0;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.tabSix .nav-tabs li {
    display: inline-block;
    float: none;
}

@media (min-width: 820px) {
    .tabSix .tab-content {
        margin-top: 24px;
    }
}

.tabSix ul li::after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f111";
    display: inline-block;
    position: absolute;
    right: -4px;
    top: 18px;
    font-size: 7px;
}

.tabSix ul li:last-child::after {
    display: none;
}

.product-main {
    float: left;
    width: calc(100% - 2px);
    transition: all 0.45s ease-in-out;
    overflow: hidden;
}

figure {
    float: left;
    position: relative;
}

.product-main figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.45s ease-in-out;
}

.product-main figure.dark-theme::before {
    background-color: #000;
}

figure img {
    width: 100%;
}

.ribbon {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background-color: #d9932f;
}

.ribbon span {
    color: aliceblue;
    text-transform: capitalize;
    padding: 22px 0px;
    display: inline-block;
    font-size: 15px;
    transform: rotate(-90deg);
    font-weight: 600;
}

.ribbon::after {
    content: "";
    width: 0px;
    height: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    position: absolute;
    bottom: -4px;
    left: 50%;
    margin-left: -4px;
    border-top: 4px solid #d9932f;
}

.block-sticker-tag1 {
    width: 50px;
    height: 50px;
    background-color: #313131;
    position: absolute;
    top: 50%;
    margin-top: -75px;
    right: -51px;
    color: #fff;
    opacity: 0;
    transition: all 0.45s ease-in-out;
}

.off_tag {
    position: absolute;
    top: 9px;
    left: 0;
    font-size: 13px;
    color: #fff;
    line-height: 15px;
    text-transform: uppercase;
    text-align: center;
}

.block-sticker-tag1 strong {
    font-size: 18px;
    text-align: center;
    padding: 7px 0 0 15px;
    display: inline-block;
}

.block-sticker-tag2 {
    width: 50px;
    height: 50px;
    background-color: #313131;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    right: -51px;
    color: #fff;
    opacity: 0;
    transition: all 0.45s ease-in-out;
}

.off_tag1 {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 13px;
    color: #fff;
    line-height: 15px;
    text-transform: uppercase;
    text-align: center;
}

.block-sticker-tag2 strong {
    font-size: 18px;
    text-align: center;
    padding: 0px 0 0 16px;
    display: inline-block;
    margin-top: -2px;
}

.block-sticker-tag3 {
    width: 50px;
    height: 50px;
    background-color: #313131;
    position: absolute;
    top: 50%;
    margin-top: 25px;
    right: -51px;
    color: #fff;
    opacity: 0;
    transition: all 0.45s ease-in-out;
}

.off_tag2 {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 13px;
    color: #fff;
    line-height: 15px;
    text-transform: uppercase;
    text-align: center;
}

.block-sticker-tag3 strong {
    font-size: 18px;
    text-align: center;
    padding: 0px 0 0 16px;
    display: inline-block;
    margin-top: -2px;
}

.block-caption1 {
    width: 100%;
    display: inline-block;
    position: relative;
    text-align: center;
}

.block-caption1 h4 {
    font-size: 1.42em;
    font-weight: 400;
    margin-top: 10px;
    color: #fff;
}

.rpice {
    padding: 0;
    margin-top: 6px;
    margin-bottom: 10px;
}

.sell-price {
    font-size: 1.2em;
    font-weight: 700;
    margin-right: 10px;
    color: #d9932f;
}

.rpice .actual-price {
    color: #ababab;
    font-size: 1.3em;
    text-decoration: line-through;
}

.product-main:hover {
    transition: all 0.45s ease-in-out;
}

.product-main:hover figure::before {
    opacity: 0.4;
    transition: all 0.45s ease-in-out;
}

.product-main:hover figure .block-sticker-tag1, .product-main:hover figure .block-sticker-tag2, .product-main:hover figure .block-sticker-tag3 {
    opacity: 1;
    right: 0;
    transition: all 0.45s ease-in-out;
}

.block-sticker-tag1:hover strong, .block-sticker-tag2:hover strong, .block-sticker-tag3:hover strong {
    color: #d9932f;
    cursor: pointer;
}

.testi {
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.testi #quote-carousel.carousel {
    padding-bottom: 30px;
}

.testi #quote-carousel.carousel .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.testi #quote-carousel.carousel .carousel-inner .active {
    opacity: 1;
    transition-property: opacity;
}

.testi #quote-carousel.carousel .carousel-indicators {
    bottom: -10px;
    z-index: 2;
}

.testi #quote-carousel.carousel .carousel-indicators li {
    background-color: #848484;
    border: none;
}

.testi #quote-carousel.carousel .carousel-indicators .active {
    background-color: #cc9900;
    border: none;
    width: 10px;
    height: 10px;
    margin: 1px;
}

.testi #quote-carousel.carousel blockquote {
    text-align: left;
    border: none;
    font-size: 14px;
    color: #fff;
    width: 90%;
    margin: 15px auto;
}

.testi #quote-carousel.carousel blockquote p {
    letter-spacing: 1px;
    padding-top: 15px;
}

.testi #quote-carousel.carousel blockquote .profile-circle img {
    margin: 0 auto;
    border-radius: 50%;
    border: 8px solid #d9932f;
}

.testi .item .name {
    color: #fff;
    font-size: 18px;
}

.testi .item .position {
    text-align: left;
}

@media only screen and (max-width: 1199px) {
    .testi #quote-carousel blockquote {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .testi #quote-carousel blockquote {
        width: 100%;
    }
}

.blog-title a {
    color: #fff;
}

.blog-img .bubble-top::before {
    pointer-events: none;
    position: absolute;
    z-index: 999;
    content: "";
    border-style: solid;
    transition-duration: 0.3s;
    transition-property: top;
    left: calc(50% - 20px);
    bottom: 0;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #0a0c0b transparent;
}

.blog-img .bubble-bottom::before {
    pointer-events: none;
    position: absolute;
    z-index: 999;
    content: "";
    border-style: solid;
    transition-duration: 0.3s;
    transition-property: top;
    left: calc(100% - 20px);
    top: 0;
    border-width: 20px 20px 0 20px;
    border-color: #0a0c0b transparent transparent transparent;
}

.ImageWrapper .PStyleHe {
    position: absolute;
    background: url(images/plus.png) no-repeat scroll center center / 100% 100% #222222;
    width: 100%;
    height: 100%;
    z-index: 199;
    background-origin: padding-box, padding-box;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 10px 10px, 100% 100%;
    opacity: 0;
    top: 0;
    transition: all 0.3s ease 0s;
}

.ImageWrapper {
    display: block;
    overflow: hidden;
    position: relative;
}

.ImageWrapper:hover .PStyleHe {
    opacity: 0.6;
    background-size: 60px 60px, 100% 100%;
    visibility: visible;
}

.blog-content {
    padding: 15px;
    min-height: 265px;
}

.read-more {
    color: #cc9900;
}

@media only screen and (max-width: 1024px) {
    .blog-content {
        min-height: 220px;
    }
}

@media only screen and (max-width: 1024px) {
    .blog-content {
        padding: 15px;
        min-height: 170px;
    }
    .blog-title h4 {
        margin-top: 0;
        margin-bottom: 5px;
    }
    .post-date {
        margin-bottom: 5px;
    }
    .post-content {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .blog-content {
        padding: 15px;
        min-height: 170px;
        background-color: #000;
        margin-bottom: 10px;
    }
    .blog-img .bubble-top::before {
        border-color: transparent transparent #000 transparent;
    }
    .blog-img .bubble-bottom::before {
        border-color: #000 transparent transparent transparent;
    }
}

.newsletter-bg {
    background: linear-gradient(to right, #111514 50%, #540b23 0, #540b23 50%, #540b23 100%);
    padding-bottom: 60px;
    min-height: 250px;
}

.newsletter-bg form {
    text-align: right;
}

.newsletter {
    width: auto;
    display: inline-block;
    margin: 0 auto;
}

.form-inline .newsletter .form-control {
    border: 1px solid #0a0c0b;
    border-radius: 0;
    width: 370px;
    background-color: #0a0c0b;
    height: 50px;
}

.newsletter .btn-default {
    border: 1px solid #d9932f;
    border-radius: 0;
    background-color: #d9932f;
    color: #fff;
    transition: ease 0.5s ease-in-out;
    padding: 8px 25px;
    /* font-size: 18px; */
    align-items: center;
}

.newsletter .btn-default:hover {
    border: 1px solid #d9932f;
    background-color: #fff;
    color: #d9932f;
    transition: ease-in-out 0.5s ease-in-out;
}

.newsletter .btn-default i {
    margin-left: 7px;
    font-size: 15px;
    background-color: transparent;
}

.newsletter .btn-default:hover i {
    color: #d9932f;
}

.t-mb-20 {
    margin-bottom: 20px;
}

.t-pt-40 {
    padding-top: 40px;
}

.t-pb-30 {
    padding-bottom: 30px;
}

.t-pt-70 {
    padding-top: 70px;
}

@media only screen and (max-width: 1024px) {
    .newsletter-bg {
        background-position: top;
    }
    .newsletter .btn-default {
        margin-top: 8px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-bg form {
        text-align: center;
    }
}

.footer {
    text-align: center;
    padding: 80px 0 0;
    background-color: #000;
}

.footer .footer-block {
    text-align: left;
}

.footer .footer-block li a {
    color: #ccc;
    padding-bottom: 5px;
    padding-top: 5px;
    display: block;
}

.footer .footer-block li a::before {
    content: "\f068";
    font-family: fontawesome;
    margin-right: 10px;
    font-size: 7px;
    vertical-align: middle;
    color: #fff;
}

.footer .footer-block li a:hover {
    margin-left: 5px;
    text-decoration: none;
}

.footer-title {
    color: #d9932f;
    text-transform: capitalize;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

hr.footer_border {
    color: #d9932f;
    width: 20%;
    text-align: left;
    border-color: #d9932f;
    border-width: 2px;
    margin: 0 0 20px 0;
}

.footer_icon {
    padding-top: 5px;
}

.footer_icon i {
    color: #ccc;
    margin-right: 10px;
}

.contact_footer, .contact_footer a {
    color: #ccc;
}

.footer_icon .fa-envelope {
    background: transparent;
}

.footer_icon div {
    padding: 5px 0 0;
}

footer_bottom_outer {
    margin-top: 50px;
    background: #0a0c0b; /* Dark theme */
    padding: 20px 0;
    text-align: center;
    color: white;
}



/* ✅ Logo Image Styling */
.agency-logo {
    width: 50px; /* Small size */
    height: 50px; /* Keep it square */
    border-radius: 50%; /* Makes the logo round */
    object-fit: cover; /* Ensures the image fits well inside the circle */
    border: 2px solid white; /* Adds a thin border for better visibility */
    transition: transform 0.3s ease-in-out;
}

/* ✅ Hover Effect */
.agency-logo:hover {
    transform: scale(1.1);
}

/* ✅ Copyright Section */
.copyright {
    font-size: 14px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    /* .logo-wrapper {
        gap: 15px;
    } */

    .agency-logo {
        width: 40px; /* Slightly smaller on mobile */
        height: 40px;
    }
}

.footerbottom_link {
    border-top: 1px solid #d9932f;
    border-bottom: 1px solid #d9932f;
    padding: 20px 0 15px 0;
}

.footerbottom_link, .copyright {
    text-align: center;
    color: #ccc;
}

footer .card .ul.list-inline {
    margin: 0;
}

.copyright p {
    color: #ccc;
    padding: 25px 0;
    font-size: 1em;
    line-height: 15px;
    height: 50px;
}

.copyright i {
    color: #d9932f;
    margin-right: 5px;
}

@media only screen and (max-width: 1024px) {
    .footer {
        padding: 30px 0 0;
    }
}

blockquote {
    text-align: center !important;
}

.order-form {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    width: 300px;
    text-align: center;
    margin: 20px auto; /* Centers horizontally */
}
.order-form h2 {
    text-align: center;
    margin-bottom: 20px;
}
.order-form label {
    display: block;
    margin-top: 10px;
    text-align: left;
}
.order-form input, .order-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #222;
    border: none;
    color: #fff;
    border-radius: 5px;
}
.order-form button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.order-form button:hover {
    background: #ccc;
}









#verification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure it covers the full viewport height */
    width: 100vw; /* Ensure it covers the full viewport width */
    position: fixed;
    top: 0;
    left: 0;
    /* background-color: rgba(0, 0, 0, 0); Transparent black overlay */
    
    z-index: 9999;



    
}

/* Age verification form */
.verification-form {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    width: 300px;
    text-align: center;

    
}

.verified #content {
    filter: none;
    -webkit-filter: none;
    pointer-events: auto;
}


.verification-form h2 {
    margin-bottom: 20px;
    color: #fff;
}

.verification-form label {
    display: block;
    margin-top: 10px;
    text-align: left;
    color: #fff;
}

.verification-form input, 
.verification-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #222;
    border: none;
    color: #fff;
    border-radius: 5px;
}

.verification-form button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.verification-form button:hover {
    background: #ccc;
}

/* Initially blur the content */
#content {

    filter: blur(8px);
    -webkit-filter: blur(8px);
    transition: filter 0.5s ease-in-out;

}

/* Default logo size (for mobile and desktop) */
.logo img {
    max-height: 70px; /* Default size for mobile */
    width: auto;
}

/* Increase logo size on larger screens */

/* Brand name styling (only visible on mobile) */
.brand-name {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    text-align: left;
}

.jagamaster {
    font-size: 20px;
    font-family: "Cinzel", serif;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(to right, #D2AF26, #D2AF26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 4px 4px 4px #352d0d;
}

.west-africa {
    font-size: 14px;
    font-weight: bold;
    background: linear-gradient(to right, #D2AF26, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile-specific styles (unchanged from original design) */
@media (max-width: 820px) {
    .col-md-6 {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .brand-name {
        text-align: center;
        margin-left: 10px;
    }

    .jagamaster {
        font-size: 18px;
    }

    .west-africa {
        font-size: 12px;
    }
}

/* Desktop-only changes */
@media (min-width: 521px) {
    /* Make logo bigger */
    .logo img {
        max-height: 100px;
    }

    /* Hide text on desktop */
    /* .brand-name {
        display: none;
    } */
}

/* Desktop-only changes */
@media (min-width: 710px) {
    /* Make logo bigger */
    .logo img {
        max-height: 120px;
    }

    /* Hide text on desktop */
    /* .brand-name {
        display: none;
    } */
}


/* Desktop-only changes */
@media (min-width: 821px) {
    /* Make logo bigger */
    .logo img {
        max-height: 150px;
    }

    /* Hide text on desktop */
    .brand-name {
        display: none;
    }
}


/* welcome inspired by pepsi website */

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    background-image: url('images/luxury-background.jpg');
    background-size: cover;  /* Ensures it covers the whole width */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating */
    width: 100vw; /* Full viewport width */
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0 10%;
}

/* Hero Content */
.hero-content {
    text-align: left;
    max-width: 500px;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(to right, white, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Gradient JAGAMASTER Text */
.jagamaster-text {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(to right, rgb(255, 255, 255), red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Added for non-webkit browsers */

}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.cta-button {
    background-color: #e50914;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #b20710;
}

/* Image Slider */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 500px;
    height: 300px; /* Adjust height as needed */



}


.slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    transition: transform 1s ease-in-out;
}


/* 🔹 Mobile Responsive */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 60px 5%;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .slider-container {
        width: 85%;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .jagamaster-text {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .cta-button {
        font-size: 1.1rem;
    }
}

/* 🔹 iPhone Pro Max (Large Mobile Screens) */
@media (max-width: 460px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 80px 8%;
    }

    .slider-container {
        width: 90%;
        max-width: 400px; /* Larger images for iPhone Pro Max */
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .jagamaster-text {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
    }
}

/* 🔹 Extra Small Devices (iPhone SE & smaller) */
@media (max-width: 375px) {
    .hero-section {
        padding: 50px 10%;
    }

    .jagamaster-text {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .slider-container {
        width: 85%;
        max-width: 320px;
    }
}




/* ✅ Video Container */
.video-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 500px;
    height: 300px; /* Adjust height as needed */
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Rounded corners */
}

/* ✅ Mobile Responsive */
@media (max-width: 820px) {
    .video-container {
        max-width: 100%;
    }
}






/* Hide desktop menu on mobile */
@media (max-width: 1024px) {
    .main_menu {
        display: none;
    }
}

/* Mobile Menu Button (Hamburger Icon) */
.mobile-menu-icon {
    display: none;
}

@media (max-width: 1025px) {
    .mobile-menu-icon {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1000;
    }

    .mobile-menu-icon button {
        font-size: 24px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    /* Hidden mobile menu (default) */
    #mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 200px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        padding-top: 50px;
    }

    /* Menu items */
    #mobile-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    #mobile-menu ul li {
        padding: 15px;
    }

    #mobile-menu ul li a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        display: block;
    }

    #mobile-menu ul li a:hover {
        color: red;
    }
}


/* GOOGLE FONTS FOR THE LOGOG JAGAMASTER */






