@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* background: #f6f6f6; */
}

:root {
    --color-primary: #fb5404;
    --color-bg-primary: #303030;
    --color-bg-secondary: #151515;
    --border-color: #ccc;
    --text-color: #333;
    --label-color: #555;
    --input-bg: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    color: var(--color-text-dark);
    font-weight: 600;
    /* margin: 0; */
}

p,
li,
span {
    line-height: 1.6;
    margin: 0;
}

a {
    text-decoration: none;
}

ul,
li {
    padding: 0;
    list-style: none;
}

/* Topbar */
.topbar {
    background-color: var(--color-bg-primary);
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
    position: relative;
    z-index: 11;
    height: 30px;
}

.topbar-swiper .swiper-slide {
    text-align: center;
    color: #ccc;
    font-weight: 400;
    font-size: 13px;
}

.topbar .dropdown-toggle {
    font-weight: 500;
    font-size: 13px;
}

.topbar .dropdown-toggle:hover {
    text-decoration: underline;
}

.topbar .dropdown-menu a {
    font-size: 13px;
}

.topbar-slide {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Header */
.main-header {
    background-color: var(--color-bg-secondary);
    color: #fff;
    position: relative;
    width: 100%;
    z-index: 10;
}

.navbar-brand {
    font-weight: bold;
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.f-white {
    filter: brightness(0) invert(1);
}

.main-logo {
    display: block;
    width: 100%;
    max-width: 200px;
    position: relative;
}

.main-logo img {
    width: 100%;
    object-fit: contain;
}

.nav-link {
    color: #fff !important;
    padding: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all .3s ease-in-out;
    position: relative;
}

.nav-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    max-height: 0px;
    transition: all cubic-bezier(0.455, 0.03, 0.515, 0.955) .3s;
}

/* ========== MAIN MENU DROPDOWNS ========== */
.has-submenu, .has-sub-submenu{
    display:flex;
    align-items:center;
    position:relative;
}

.has-submenu::after{
    content:"\f078";
    margin-left:4px;
    font-size:14px;
    font-family:"FontAwesome";
}

.has-sub-submenu::after{
    content:"\f054";
    margin-right: 10px;
    font-size:14px;
    font-family:"FontAwesome";
}

.nav-item {
  position: relative;
  padding: 21px 20px;
}

/* Main submenu */
.mainmenu-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 200px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mainmenu-submenu li {
  position: relative;
}

.mainmenu-submenu-link {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.3s ease;
  color:#fff;
  width:100%;
}

.mainmenu-submenu li:hover {
  background-color: #333;
}

/* Nested sub-submenu */
.mainmenu-sub-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #000;
  min-width: 200px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mainmenu-submenu li:hover > .mainmenu-sub-submenu {
  display: block;
}

/* Show submenu on hover */
.nav-item:hover > .mainmenu-submenu {
  display: block;
}

.nav-item:hover:before {
    max-height: 4px;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    /* Or your theme */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-right {
    width: 100%;
    max-width: 200px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.menu-toggler {
    display: none;
}

.cart-icon,
.menu-toggler {
    position: relative;
    justify-content: flex-end;
}

.cart-icon a,
.menu-toggler a {
    position: relative;
    padding: 21px 20px;
}

.cart-icon a::after,
.menu-toggler a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    max-height: 0px;
    transition: all cubic-bezier(0.455, 0.03, 0.515, 0.955) .3s;
}

.cart-icon a:hover:after,
.menu-toggler a:hover:after {
    max-height: 4px;
}

/* Mobile menu */
.mobile-menu-wrapper {
    position: fixed;
    top: 66px;
    /* header height */
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #000;
    display: none;
}

.mobile-menu-wrapper.active {
    display: block;
}

.mobile-menu {
    padding: 20px;
    padding-bottom: 0;
}

.main-menu li {
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #222;
}

.main-menu li:last-child {
    border: none;
}

.main-menu li a {
    color: #fff;
}

.submenu,
.submenu-nested {
    display: none;
    padding: 0 15px 0 15px;
}

.submenu li,
.submenu-nested li {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    color: #ccc;
    border-bottom: 0;
}

.nested-toggle.active {
    color: var(--color-primary);
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

ul.submenu-nested li a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.submenu-toggle,
.nested-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
}

.padding-40 {
    padding: 16px 0 16px 0;
}

.submenu-toggle i,
.nested-toggle i {
    transition: transform 0.3s;
}

.submenu-toggle.active i,
.nested-toggle.active i {
    transform: rotate(180deg);
}

/* Cart Section */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 20px;
    margin: 0;
}

.cart-close,
.size-close {
    font-size: 24px;
    cursor: pointer;
}

.cart-item-wrapper {
    max-height: 270px;
    overflow: auto;
    position: relative;
    padding-right: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.cart-item img {
    width: 80px;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    font-size: 15px;
    margin: 0;
}

.cart-item-details span {
    display: block;
    font-size: 13px;
    color: #999;
}

.cart-item-details span.item-price {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #999;
    line-height: normal;
}

.flex-cart-detail {
    width: 100%;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.quantity-control {
    display: flex !important;
    align-items: center;
    margin-top: 8px;
}

.quantity-control i {
    cursor: pointer;
    padding: 4px 8px;
    font-size: 12px;
}

.quantity-control span {
    margin: 0 10px;
    font-size: 12px;
    color: #000;
    font-weight: 500;
}

.imgHolder-cart {
    width: 100%;
    height: 100%;
    position: relative;
    background: #f4f5f7;
}

.kit-item-details {
    text-align: left;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.kit-product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    min-height: 33px;
    max-height: 33px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.remove-item {
    font-size: 12px;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    line-height: 20px;
    margin-top: 8px;
}

.small-price {
    font-size: 12px;
    font-weight: 500;
    color: #999;
}

.kit-title {
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0 15px;
}

.swiper-slide {
    width: 150px;
    flex-shrink: 0;
}

.kit-item {
    text-align: center;
}

.kit-item img {
    width: 100%;
    max-width: 120px;
    margin-bottom: 8px;
}

.kit-item .colors {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 5px 0;
    height: 10px;
}

.kit-item .colors span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    display: inline-block;
    cursor: pointer;
}

.kit-item .colors span.active {
    border: 1px solid #000;
}

.cart-footer {
    margin-top: 30px;
}

.cart-footer p.signup-msg {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
    border-block: 2px solid #eee;
}

.signup-msg a {
    color: #000;
    text-decoration: underline;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: block;
    text-align: center;
}

input.qty {
    width: 100%;
    max-width: 35px;
    text-align: center;
    border: 0;
    font-size: 12px;
}

input.qty:active, input.qty:focus {
    border: 0;
    outline: none;
}

.sidebar-tag {
    position: relative;
    width: 40px;
    border-left: 1px solid #dee2e6;
}

.sidebar-tag p {
    transform: rotate(180deg);
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    position: absolute;
    left: 8px;
    writing-mode: vertical-lr;
    bottom: 20px;
}

.cart-size {
    margin-bottom:5px;
}

.mySwiperKit .swiper-slide{
    margin-right:10px;
}


.kit-btn {
    width: 100%;
    position: relative;
    height: 40px;
    display: block;
    border: 2px solid #000;
    background: #fff;
    line-height: 40px;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.inner-sidebar {
    position: relative;
    height: 100%;
    width: calc(100% - 40px);
    padding: 20px;
}

/* Size Cart */
.size-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
}

.size-sidebar.active {
    transform: translateX(0);
}

.size-header {
    padding: 0 10px;
}

.size-list {
    position: relative;
    width: 100%;
    padding: 0 10px;
}

.size-list span {
    font-size: 14px;
    font-weight: 600;
}

.flex-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.add-to-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.add-to-cart-icon img {
    width: 100%;
    max-width: 25px;
}

.sizeHolder {
    cursor: pointer;
}

.size-price {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Video Section */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* accounts for topbar + header */
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 84px;
    font-weight: 700;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-content .btn-primary {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 15px 18px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    max-width: 270px;
    width: 100%;
    border-radius: 0;
}

.hero-content .btn-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btnHolder {
    justify-content: center;
    width: 100%;
    position: relative;
    gap: 21px;
}

/* Dalahorse SEction */
.dalahorse-features-section {
    background-color: #111;
}

.lucide-icon {
    width: 28px;
    height: 28px;
    stroke-width: 1;
    color: #fff;
    margin-top: 3px;
}

.icon-box {
    min-width: 32px;
}

/* Meet the maker Section */
.maker-section {
    background: #000;
    position: relative;
    padding: 50px 30px;
}

.maker-section::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: -30px;
    right: 200px;
    z-index: 1;
    background: #000;
    transform: rotate(45deg);
}

.maker-intro-video {
    width: 100%;
    position: relative;
    padding-top: 50px;
}

.maker-intro-video video {
    width: 100%;
    position: relative;
    object-fit: contain;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 50px;
}

/* Shop Section */
.stellar-system-section {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.system-title {
    font-size: 14px;
    font-weight: 500;
}

.single-shop a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease-in-out;
    padding-top: 30px;
    width: 100%;
    position: relative;
    display: block;
}

.single-shop a:hover {
    color: var(--color-primary);
}

.orange-text {
    color: #ff5e00;
}

.single-shop img {
    width: 100%;
    object-fit: contain;
    -webkit-filter: drop-shadow(0px 4px 8px black);
    filter: drop-shadow(0px 4px 8px black);
}

@media (max-width: 576px) {
    .system-title {
        font-size: 12px;
    }
}

/* TikTok Slider */
.our-work {
    width: 100%;
    position: relative;
    padding: 50px 0;
    background: #000;
}

.tiktok-slider-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.swiper-slide iframe {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Footer */
.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
    /* your defined primary color */
}

@media only screen and (max-width:1040px) {
    .main-nav-menu {
        display: none !important;
    }

    .menu-toggler {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .topbar {
        display: none !important;
    }
    
    .has-submenu, .has-sub-submenu{
        display:block;
    }
    
    .has-submenu::after{
        content:unset;
    }
}

@media only screen and (max-width:768px) {
    .bottom-footer {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bottom-footer div {
        text-align: center;
        justify-content: center;
    }
}

@media only screen and (max-width:550px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btnHolder {
        flex-wrap: wrap;
    }

    .hero-content .btn-primary {
        max-width: 100%;
    }

    .maker-intro-video video {
        border-radius: 10px;
    }
}


/* `````````````````````````````````````````````
`````````Categories Pages``````````````````````` 
``````````````````````````````````````````````*/


.category-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 5px;
}

.category-box {
    display: block;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0;
    border: 2px solid transparent;
}

.category-box:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

.category-box:active {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.categories-links .row>.col-6.col-md-3 {
    margin-bottom: 10px;
    padding: 0 5px;
}

/* Products Container */

.products-wrapper {
    padding: 0 5px;
}

.product-card {
    position: relative;
    transition: box-shadow 0.3s;
    height: 100%;
    border: 1px solid #fff;
}

.products-wrapper .row>* {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #fff;
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 2;
}

.imgHolder {
    text-align: center;
    background: #f4f5f7;
}

.imgHolder img {
    max-width: 100%;
    height: auto;
}

.product-details {
    text-align: left;
    background: #fff;
    padding: 10px;
}

.product-title {
    font-weight: 600;
    font-size: 16px;
}

.product-price {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
}

.product-price-gray {
    color: #999;
    font-weight: 600;
    font-size: 14px;
}

.product-old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 5px;
}


/* `````````````````````````````````````````````
`````````Product Details```````````````````````` 
``````````````````````````````````````````````*/

.product-detail {
    background-color: #fff;
}

.product-thumbs {
    height: 100%;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-thumbs .swiper-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-thumbs .swiper-slide {
    flex-shrink: 0;
    margin-bottom: 10px;
    width: 100%;
    background: #f4f5f7;
    border: 2px solid transparent;
    text-align: center;
    /* Make it stretch across */
}

.product-thumbs .swiper-slide-active {
    border: 2px solid black;
}

.product-thumbs img {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: #f4f5f7;
}

.product-images {
    background: #f4f5f7;
}

.product-images img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-details-info {
    padding-left: 100px;
}

.product-details-info .product-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.product-details-info .product-price {
    font-size: 17px;
    font-weight: 600;
    margin: 7px 0;
    color: #000;
}

.product-details-info .product-short-description {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.orginal-price {
    color: #888;
    text-decoration: line-through;
    font-size: 14px;
}

.discounted-price {
    font-size: 17px;
    font-weight: 600;
    margin: 7px 0;
    color: var(--color-primary);
}

.product-details-info .product-description {
    font-size: 0.95rem;
    margin: 1rem 0;
}

.product-description ul {
    margin-bottom: 50px;
}

.form-select,
.nice-select,
.customSize {
    border: 2px solid #000;
}

.customSize {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-radius: 0;
    background: #fff;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 500;
    color: #000;
}

.nice-select span {
    font-weight: 600;
    color: #000;
    display: block;
}

.form-select:focus,
.form-select:active,
.form-select:hover,
.nice-select:focus,
.nice-select:active,
.nice-select:hover {
    box-shadow: none;
    border-color: #000;
}

.product-description ul li {
    margin-bottom: 1px;
    font-size: 14px;
    font-weight: 500;
}

.product-description ul li i {
    margin-right: 5px;
}

.product-details-info .accordion-button:after {
    margin-left: auto;
}

.product-details-info .icons-row {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: space-around;
}

.product-details-info .icons-row i {
    font-size: 38px;
    margin-bottom: 30px;
}

.product-details-info .icons-row div {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.nice-select {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-radius: 0;
    background: #fff;
}

.nice-select:after {
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
}

.nice-select .list {
    width: 100%;
}

.add-to-cart {
    height: 45px;
    width: 100%;
    background-color: black;
    color: white;
    border: none;
    font-weight: 600;
}

.accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

.accordion-button {
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.accordion-body {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: #f4f5f7;
    color: #000;
}

.accordion-item {
    border: 0;
    border-bottom: 2px solid #e1e1e2;
    border-radius: 0 !important;
}

.flexme-footer {
    justify-content: end;
}

/* `````````````````````````````````````````````
`````````Checkout Page```````````````````````` 
``````````````````````````````````````````````*/
.checkout-main {
    background-color: #f8f8f8;
}

.left-checkout .checkout-order-box {
    border-radius: 4px;
    position: relative;
    padding-bottom: 50px !important;
}

.left-checkout .checkout-order-box:after {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    content: "";
    border-top: 45px solid #fff;
    border-right: 45px solid transparent;
}

.order-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0;
}

.order-close-btn {
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 10px;
}

.checkout-item {
    position: relative;
}

.item-details {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.product-detail-flex {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 5px;
    font-size: 14px;
}

.item-image img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.item-image {
    width: 80px;
    position: relative;
    background: #f4f5f7;
}

.order-close-btn i {
    font-size: 18px;
    color: #000;
}

.item-meta {
    font-size: 14px;
    color: #000 !important;
    font-weight: 400;
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.quantity-box {
    align-items: center;
    font-size: 12px;
}

.item-price {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.summary-box {
    border-radius: 4px;
    position: sticky;
    top: 75px;
}

.summary-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.text-orange {
    color: #ff4d00;
}

.text-orange:hover {
    text-decoration: underline;
}

ul.summary-list li {
    font-size: 14px;
    padding: 3px 0;
}

.promo-code {
    padding: 15px 0;
    font-size: 12px;
}

.promo-field {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.promo-field input {
    font-size: 12px;
    border-radius: 0;
    color: #000;
    width: calc(100% - 65px);

}

.promo-field .theme-btn {
    width: auto;
    height: 32px;
    width: 55px;
    font-size: 12px;
    border-radius: 0;
    background: var(--color-primary);
    border: none;
    outline: none;
    font-weight: 600;
    color: #fff;
}

.summary-links {
    font-size: 12px;
    justify-content: center;
    display: flex;
}

/* Checkout Form */
.checkout-form {
    width: 100%;
    position: relative;
    margin: auto;
    margin-top: 50px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-color);
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form .form-row {
    display: flex;
    gap: 20px;
}

.custom-form .form-row .form-group {
    flex: 1;
}

.custom-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    background-color: var(--input-bg);
    color: var(--text-color);
    transition: border-color 0.3s;
    border-radius: 0;
    font-size: 14px;
    float: unset;
}

.custom-input:hover,
.custom-input:focus {
    border-color: var(--color-primary);
    outline: none;
}

.custom-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
}

.country-label {
    background: #eee;
    padding: 10px;
    font-size: 14px;
    color: #888;
}

.country-note {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-top: 4px;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-color);
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--color-primary);
    margin-right: 6px;
}

.btn-continue {
    width: 100%;
    background-color: var(--color-primary);
    color: #fff;
    padding: 14px 0;
    border: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-continue:hover {
    background-color: #e74300;
}

.terms-text {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    text-align: center;
}

.terms-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

/*  ============================================================
    =======================  About Us  =========================
    ============================================================
*/

.dala-maker-section {
    background-color: #f9f9f9;
}

.dala-maker-section .col-md-6 {
    padding: 0px;
}

.maker-heading {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000;
}

.maker-description {
    margin-left: 7.25rem;
}

.maker-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 1rem;
}

.dala-image img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

/*  ============================================================
    =====================  Contact Page ========================
    ============================================================ */
.contact-section {
    background-color: #303030;
    color: #fff;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 500;
}

.section-heading {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
}

.contact-link:hover {
    color: #fff;
    text-decoration: none;
}

.contact-desc {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
    color: #ccc;
}

/* Quick Link */
.help-section {
    width: 100%;
    height: 100%;
    position: relative;
    background: #303030;
}

.help-card {
    position: relative;
}

.help-card .imgHolder {
    width: 100%;
    height: 100%;
    position: relative;
    background: #303030;
}

.help-card .imgHolder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    max-height: 210px;
    object-position: center;
}

.help-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.help-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.help-btn {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 2px solid #fff;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.help-btn:hover {
    background-color: var(--color-primary, #ff5722);
    color: #fff;
    border-color: var(--color-primary, #ff5722);
}

.help-card img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

/*  ============================================================
    =================  Frequently Asked Questions  =============
    ============================================================ */
accordion-button::after {
    filter: invert(1);
    /* Makes the arrow white */
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #303030;
    color: var(--color-primary, #ff5722);
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 16px 0px;
}

.faq-heading {
    padding: 16px 0px;
}

.accordion-button::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
}

.accordion-body {
    color: #fff;
    font-weight: 500;
    background: #000;
    padding: 16px 70px;
}

/*  ============================================================
    =====================  All Media Queries Here  =============
    ============================================================ */
@media (max-width: 1100px) {
    .maker-description {
        margin-left: 0;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {

    .left-checkout,
    .right-summary {
        padding: 0 15px;
    }

    .dala-maker-section .dala-image {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }

    .dala-maker-section .row>* {
        width: 100%;
    }

    .maker-heading {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1300px) {
    .thumb-main {
        padding: 0;
    }
}

@media only screen and (max-width: 992px) {
    .product-images img {
        max-height: 500px;
    }

    .product-details-info {
        padding: 30px 12px;
    }

    .product-thumbs .swiper-wrapper {
        flex-direction: unset;
        justify-content: center;
    }

    .thumb-main {
        width: 100%;
        position: relative;
        padding: 12px;
    }

    .image-main {
        order: -1;
    }
}

@media only screen and (max-width: 768px) {
    .flexme-footer {
        justify-content: center;
    }
}

@media only screen and (max-width: 576px) {
    .single-product {
        width: 50%;
    }

    .product-title {
        font-size: 14px;
    }

    .product-old-price {
        font-size: 12px;
    }

    .product-price,
    .product-price-gray {
        font-size: 13px;
    }

    .product-badge {
        font-size: 9px;
    }

    .contact-section {
        padding: 10px;
    }
}

@media only screen and (max-width: 450px) {
    .flex-2 {
        flex-wrap: wrap;
    }

    .flex-2>* {
        width: 100%;
    }

    .cart-item-details span.item-price {
        font-size: 14px;
        margin-top: 5px;
    }
}
.productRadioHidden{
    display: none;
}