/*

TemplateMo 571 Hexashop

https://templatemo.com/tm-571-hexashop

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

/*
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #fff;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}

ul {
    margin-bottom: 0px;
}

p {
    font-size: 14px;
    line-height: 25px;
    color: #2a2a2a;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

::selection {
    background: #2a2a2a;
    color: #fff;
}

::-moz-selection {
    background: #2a2a2a;
    color: #fff;
}

@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }

    .mobile-top-fix {
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .mobile-bottom-fix {
        margin-bottom: 30px;
    }

    .mobile-bottom-fix-big {
        margin-bottom: 60px;
    }
}

.main-border-button a {
    font-size: 13px;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 25px;
    display: inline-block;
    font-weight: 500;
    transition: all .3s;
}

.main-border-button a:hover {
    background-color: #fff;
    color: #2a2a2a;
}

.main-white-button a {
    font-size: 13px;
    color: #2a2a2a;
    background-color: #fff;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    transition: all .3s;
}

.main-white-button a:hover {
    opacity: 0.9;
}

.main-text-button a {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    transition: all .3s;
}

.main-text-button a:hover {
    opacity: 0.9;
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2a2a2a;
}

.section-heading span {
    font-size: 14px;
    color: #a1a1a1;
    font-style: italic;
    font-weight: 400;
}


.dropdown-container {
    position: relative;
    display: inline-block;
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.dropdown-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.dropdown-button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    background-color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    outline: none;
}

.dropdown-button:hover {
    background-color: #f9fafb;
}

.dropdown-button:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5), 0 0 #0000;
    border-color: #6366f1;
}

.dropdown-button svg {
    margin-left: 0.5rem;
    margin-right: -0.25rem;
    height: 1.25rem;
    width: 1.25rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 14rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    outline: none;
    z-index: 10;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: top left;
    visibility: hidden;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0.2s;
}

.dropdown-content.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear;
}

.dropdown-content .menu-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.dropdown-content .menu-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.select-dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 14rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    background-color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    outline: none;
}

.select-dropdown-button:hover {
    background-color: #f9fafb;
}

.select-dropdown-button:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5), 0 0 #0000;
    border-color: #6366f1;
}

.select-dropdown-button .selected-value {
    flex-grow: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-dropdown-button svg {
    margin-left: 0.5rem;
    height: 1.25rem;
    width: 1.25rem;
}

.select-dropdown-content {
    position: absolute;
    z-index: 99999;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 14rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    outline: none;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: top left;
    visibility: hidden;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0.2s;
}

.select-dropdown-content.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    box-shadow: 4px 5px 5px rgba(80, 79, 79, 0.47);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear;
}

.select-dropdown-content .select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.select-dropdown-content .select-option:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.multi-select-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 14rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    background-color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    outline: none;
    min-height: 2.5rem;
}

.multi-select-button:hover {
    background-color: #f9fafb;
}

.multi-select-button:focus {
    box-shadow: 0 0 0 3px #9f946a66, 0 0 #0000;
    border-color: #9f946a;
}

.multi-select-button .selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    flex-grow: 1;
    text-align: left;
}

.multi-select-button .selected-tag {
    background-color: #9f946a;
    color: #ffffff;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
}

.multi-select-button .placeholder {
    color: #6b7280;
}

.multi-select-button svg {
    margin-left: 0.5rem;
    height: 1.25rem;
    width: 1.25rem;
}

.multi-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.multi-select-option:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.multi-select-option .checkbox-icon {
    width: 1rem;
    height: 1rem;
    border: 1px solid #9ca3af;
    border-radius: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.multi-select-option.selected .checkbox-icon {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.multi-select-option.selected .checkbox-icon svg {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/*
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
    border-bottom: none !important;
    background-color: #fff;
    height: 80px !important;
    position: fixed !important;
    top: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
    color: #1e1e1e !important;
}

.background-header .main-nav .nav li:hover a {
    color: #2a2a2a !important;
}

.background-header .nav li a.active {
    color: #2a2a2a !important;
}

.cart-count {
    display: inline-block;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
    line-height: normal;
}

.main-nav .nav li a .cart-count {
    position: relative;
    top: -2px;
}

.subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.subcategory-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.subcategory-item:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.subcategory-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.subcategory-item .main-border-button a {
    font-size: 14px;
    padding: 10px 20px;
    border-color: #2a2a2a;
    color: #2a2a2a;
    border-radius: 4px;
}

.subcategory-item .main-border-button a:hover {
    background-color: #2a2a2a;
    color: #fff;
}

/* Checkout Page Styles */
#checkout .cart-items h3,
#checkout form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
}

#checkout .cart-items .item {
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    transition: all 0.3s ease;
}

#checkout .cart-items .item:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

#checkout .cart-items .item .thumb img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    max-height: 100px;
}

#checkout .cart-items .item .down-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 8px;
}

#checkout .cart-items .item .down-content span {
    font-size: 16px;
    font-weight: 500;
    color: #a1a1a1;
}

#checkout .cart-items .total {
    height: 80px;
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#checkout .cart-items .total h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
}

#checkout form .form-group {
    margin-bottom: 20px;
}

#checkout form input,
#checkout form textarea {
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0 15px;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    color: #aaa;
    border-radius: 0;
    border: 1px solid #7a7a7a;
    box-shadow: none;
    font-family: 'Poppins', sans-serif;
}

#checkout form textarea {
    height: 100px;
    min-height: 80px;
    max-height: 150px;
    padding: 15px;
}

#checkout form input:focus,
#checkout form textarea:focus {
    border-color: #2a2a2a;
}

#checkout form .radio-group {
    display: flex;
    gap: 20px;
}

#checkout form .radio-group label {
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    cursor: pointer;
}

#checkout form .radio-group input {
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}

#checkout form .main-border-button {
    margin-top: 20px;
}

#checkout form .main-border-button button {
    width: fit-content;
    font-size: 14px;
    padding: 1px 10px;
    border: 1px solid #2a2a2a;
    color: #2a2a2a;
    background-color: transparent;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#checkout form .main-border-button button:hover {
    background-color: #2a2a2a;
    color: #fff;
}

@media (max-width: 991px) {
    #checkout .cart-items {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    #checkout .cart-items .item .row {
        flex-direction: column;
        align-items: center;
    }

    #checkout .cart-items .item .col-3,
    #checkout .cart-items .item .col-9 {
        width: 100%;
        max-width: 100%;
    }

    #checkout .cart-items .item .thumb {
        text-align: center;
        margin-bottom: 15px;
    }

    #checkout .cart-items .item .thumb img {
        max-width: 120px;
    }

    #checkout form .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

.header-area {
    border-bottom: 3px solid #eee;
    box-shadow: none;
    background-color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    height: 100px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.header-area .main-nav {
    min-height: 90px;
    background: transparent;
    padding-right: 10%;
    padding-left: 10%;
}

.header-area .main-nav .logo {
    line-height: 100px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    float: left;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo {
    line-height: 75px;
}

.background-header .nav {
    margin-top: 20px !important;
}

.header-area .main-nav .nav {
    float: right;
    margin-top: 30px;
    margin-right: 0px;
    background-color: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 999;
}

.header-area .main-nav .nav li {
    padding-left: 15px;
    padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
    padding-right: 0px;
}

.header-area .main-nav .nav li a {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #2a2a2a;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 40px;
    line-height: 40px;
    border: transparent;
    letter-spacing: 1px;
}

.header-area .main-nav .nav li a {
    color: #2a2a2a;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
    color: #aaa !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
    color: #aaa !important;
    opacity: 1;
}

.header-area .main-nav .nav li.submenu {
    position: relative;
    padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
    font-family: FontAwesome;
    content: "\f107";
    font-size: 12px;
    color: #2a2a2a;
    position: absolute;
    right: 18px;
    top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
    color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
    position: absolute;
    width: 200px;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
    top: 50px;
    opacity: 0;
    transform: translateY(+2em);
    visibility: hidden;
    z-index: -1;
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
    opacity: 1;
    display: block;
    background: #f7f7f7;
    color: #2a2a2a !important;
    padding-left: 20px;
    height: 40px;
    line-height: 40px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
    background: #fff;
    color: #aaa !important;
    padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 33px;
    width: 32px;
    height: 40px;
    text-indent: -9999em;
    z-index: 99;
    right: 40px;
    display: none;
}

.background-header .main-nav .menu-trigger {
    top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    content: "";
}

.header-area .main-nav .menu-trigger span {
    top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
    -moz-transform-origin: 33% 100%;
    -ms-transform-origin: 33% 100%;
    -webkit-transform-origin: 33% 100%;
    transform-origin: 33% 100%;
    top: -10px;
    z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
    -moz-transform-origin: 33% 0;
    -ms-transform-origin: 33% 0;
    -webkit-transform-origin: 33% 0;
    transform-origin: 33% 0;
    top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
    background-color: transparent;
    width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
    -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
    -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
    -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
    transform: translateY(6px) translateX(1px) rotate(45deg);
    background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
    -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    transform: translateY(-6px) translateX(1px) rotate(-45deg);
    background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
    background-color: #1e1e1e;
}


@media (max-width: 1200px) {
    .header-area .main-nav .nav li {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-area .main-nav:before {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-area .main-nav .logo {
        color: #1e1e1e;
    }

    .header-area.header-sticky .nav li a:hover,
    .header-area.header-sticky .nav li a.active {
        color: #aaa !important;
        opacity: 1;
    }

    .header-area.header-sticky .nav li.search-icon a {
        width: 100%;
    }

    .header-area {
        background-color: #f7f7f7;
        padding: 0px 15px;
        height: 100px;
        box-shadow: none;
        text-align: center;
    }

    .header-area .container {
        padding: 0px;
    }

    .header-area .logo {
        margin-left: 30px;
    }

    .header-area .menu-trigger {
        display: block !important;
    }

    .header-area .main-nav {
        overflow: hidden;
    }

    .header-area .main-nav .nav {
        float: none;
        width: 100%;
        display: none;
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s;
        margin-left: 0px;
    }

    .header-area .main-nav .nav li:first-child {
        border-top: 1px solid #eee;
    }

    .header-area.header-sticky .nav {
        margin-top: 100px !important;
    }

    .header-area .main-nav .nav li {
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #eee;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .header-area .main-nav .nav li a {
        height: 50px !important;
        line-height: 50px !important;
        padding: 0px !important;
        border: none !important;
        background: #f7f7f7 !important;
        color: #191a20 !important;
    }

    .header-area .main-nav .nav li a:hover {
        background: #eee !important;
        color: #aaa !important;
    }

    .header-area .main-nav .nav li.submenu ul {
        position: relative;
        visibility: inherit;
        opacity: 1;
        z-index: 1;
        transform: translateY(0%);
        transition-delay: 0s, 0s, 0.3s;
        top: 0px;
        width: 100%;
        box-shadow: none;
        height: 0px;
    }

    .header-area .main-nav .nav li.submenu ul li a {
        font-size: 12px;
        font-weight: 400;
    }

    .header-area .main-nav .nav li.submenu ul li a:hover:before {
        width: 0px;
    }

    .header-area .main-nav .nav li.submenu ul.active {
        height: auto !important;
    }

    .header-area .main-nav .nav li.submenu:after {
        color: #3B566E;
        right: 25px;
        font-size: 14px;
        top: 15px;
    }

    .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
        height: 0px;
    }
}

@media (min-width: 767px) {
    .header-area .main-nav .nav {
        display: flex !important;
    }
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
    border-bottom: 3px dotted #eee;
    padding-top: 160px;
    padding-bottom: 30px;
}

.main-banner .left-content .thumb img {
    width: 100%;
    overflow: hidden;
}

.main-banner .left-content .inner-content {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.main-banner .left-content .inner-content h4 {
    color: #fff;
    margin-top: -10px;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-banner .left-content .inner-content span {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    font-style: italic;
    display: block;
    margin-bottom: 30px;
}

.main-banner .right-content .right-first-image {
    margin-bottom: 28.5px;
}

.main-banner .right-content .right-first-image .thumb {
    position: relative;
    text-align: center;
}

.main-banner .right-content .right-first-image .thumb img {
    width: 100%;
    overflow: hidden;
}

.main-banner .right-content .right-first-image .thumb .inner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.main-banner .right-content .right-first-image .thumb .inner-content h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.83); /* Horizontal offset, vertical offset, blur radius, color */
}

.main-banner .right-content .right-first-image .thumb .inner-content span {
    font-size: 16px;
    color: #fff;
    font-style: italic;
    text-shadow: 2px 2px 4px rgb(0, 0, 0); /* Horizontal offset, vertical offset, blur radius, color */
}

.main-banner .right-content .right-first-image .thumb .hover-content {
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    text-align: center;
    background-color: rgba(42, 42, 42, .97);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.main-banner .right-content .right-first-image .thumb:hover .hover-content {
    opacity: 1;
    visibility: visible;
}

.main-banner .right-content .right-first-image .thumb .hover-content .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.main-banner .right-content .right-first-image .thumb .hover-content h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.main-banner .right-content .right-first-image .thumb .hover-content p {
    color: #fff;
    padding: 0px 20px;
    margin-bottom: 20px;
}


/*
---------------------------------------------
Men
---------------------------------------------
*/

#men {
    padding-top: 90px;
    padding-bottom: 90px;
    border-bottom: 3px dotted #eee;
}

#men .section-heading {
    margin-bottom: 60px;
}

#men .item .down-content {
    padding-top: 30px;
    position: relative;
    z-index: 3;
    background-color: #fff;
}

#men .item .down-content h4 {
    font-size: 22px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 8px;
}

#men .item .down-content span {
    font-size: 18px;
    color: #a1a1a1;
    font-weight: 500;
    display: block;
}

#men .item .down-content ul.stars {
    position: absolute;
    right: 0;
    top: 30px;
}

#men .item .down-content ul.stars li {
    display: inline;
    font-size: 13px;
}

#men .item .thumb .hover-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    bottom: -60px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

#men .item .thumb:hover .hover-content {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

#men .item .thumb {
    position: relative;
}

#men .item .thumb .hover-content ul li {
    display: inline;
    margin: 0px 10px;
}

#men .item .thumb .hover-content ul li a {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    color: #2a2a2a;
    background-color: #fff;
}


#men .owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 40%;
    transform: translateY(-25px);
}

#men .owl-dots {
    display: none;
}

#men .owl-nav .owl-prev {
    position: absolute;
    left: -80px;
    outline: none;
}

#men .owl-nav .owl-prev span,
#men .owl-nav .owl-next span {
    opacity: 0;
}

#men .owl-nav .owl-prev:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 700;
    content: '\f104';
    width: 50px;
    height: 50px;
    background-color: transparent;
    line-height: 48px;
    border: 1px solid #2a2a2a;
}

#men .owl-nav .owl-prev {
    opacity: 0.75;
    transition: all .5s;
}

#men .owl-nav .owl-prev:hover {
    opacity: 1;
}

#men .owl-nav .owl-next {
    opacity: 0.75;
    transition: all .5s;
}

#men .owl-nav .owl-next:hover {
    opacity: 1;
}

#men .owl-nav .owl-next {
    outline: none;
    position: absolute;
    right: -85px;
}

#men .owl-nav .owl-next:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 700;
    content: '\f105';
    width: 50px;
    height: 50px;
    background-color: transparent;
    line-height: 48px;
    border: 1px solid #2a2a2a;
}


/*
---------------------------------------------
Women
---------------------------------------------
*/

#women {
    padding-top: 90px;
    padding-bottom: 90px;
    border-bottom: 3px dotted #eee;
}

#women .section-heading {
    margin-bottom: 60px;
}

#women .item .down-content {
    padding-top: 30px;
    position: relative;
    z-index: 3;
    background-color: #fff;
}

#women .item .down-content h4 {
    font-size: 22px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 8px;
}

#women .item .down-content span {
    font-size: 18px;
    color: #a1a1a1;
    font-weight: 500;
    display: block;
}

#women .item .down-content ul.stars {
    position: absolute;
    right: 0;
    top: 30px;
}

#women .item .down-content ul.stars li {
    display: inline;
    font-size: 13px;
}

#women .item .thumb .hover-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    bottom: -60px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

#women .item .thumb:hover .hover-content {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

#women .item .thumb {
    position: relative;
}

#women .item .thumb .hover-content ul li {
    display: inline;
    margin: 0px 10px;
}

#women .item .thumb .hover-content ul li a {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    color: #2a2a2a;
    background-color: #fff;
}


#women .owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 40%;
    transform: translateY(-25px);
}

#women .owl-dots {
    display: none;
}

#women .owl-nav .owl-prev {
    position: absolute;
    left: -80px;
    outline: none;
}

#women .owl-nav .owl-prev span,
#women .owl-nav .owl-next span {
    opacity: 0;
}

#women .owl-nav .owl-prev:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 700;
    content: '\f104';
    width: 50px;
    height: 50px;
    background-color: transparent;
    line-height: 48px;
    border: 1px solid #2a2a2a;
}

#women .owl-nav .owl-prev {
    opacity: 0.75;
    transition: all .5s;
}

#women .owl-nav .owl-prev:hover {
    opacity: 1;
}

#women .owl-nav .owl-next {
    opacity: 0.75;
    transition: all .5s;
}

#women .owl-nav .owl-next:hover {
    opacity: 1;
}

#women .owl-nav .owl-next {
    outline: none;
    position: absolute;
    right: -85px;
}

#women .owl-nav .owl-next:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 700;
    content: '\f105';
    width: 50px;
    height: 50px;
    background-color: transparent;
    line-height: 48px;
    border: 1px solid #2a2a2a;
}

/*
---------------------------------------------
Kids
---------------------------------------------
*/

#kids {
    padding-top: 90px;
    padding-bottom: 90px;
    border-bottom: 3px dotted #eee;
}

#kids .section-heading {
    margin-bottom: 60px;
}

#kids .item .down-content {
    padding-top: 30px;
    position: relative;
    z-index: 3;
    background-color: #fff;
}

#kids .item .down-content h4 {
    font-size: 22px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 8px;
}

#kids .item .down-content span {
    font-size: 18px;
    color: #a1a1a1;
    font-weight: 500;
    display: block;
}

#kids .item .down-content ul.stars {
    position: absolute;
    right: 0;
    top: 30px;
}

#kids .item .down-content ul.stars li {
    display: inline;
    font-size: 13px;
}

#kids .item .thumb .hover-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    bottom: -60px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

#kids .item .thumb:hover .hover-content {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

#kids .item .thumb {
    position: relative;
}

#kids .item .thumb .hover-content ul li {
    display: inline;
    margin: 0px 10px;
}

#kids .item .thumb .hover-content ul li a {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    color: #2a2a2a;
    background-color: #fff;
}


#kids .owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 40%;
    transform: translateY(-25px);
}

#kids .owl-dots {
    display: none;
}

#kids .owl-nav .owl-prev {
    position: absolute;
    left: -80px;
    outline: none;
}

#kids .owl-nav .owl-prev span,
#kids .owl-nav .owl-next span {
    opacity: 0;
}

#kids .owl-nav .owl-prev:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 700;
    content: '\f104';
    width: 50px;
    height: 50px;
    background-color: transparent;
    line-height: 48px;
    border: 1px solid #2a2a2a;
}

#kids .owl-nav .owl-prev {
    opacity: 0.75;
    transition: all .5s;
}

#kids .owl-nav .owl-prev:hover {
    opacity: 1;
}

#kids .owl-nav .owl-next {
    opacity: 0.75;
    transition: all .5s;
}

#kids .owl-nav .owl-next:hover {
    opacity: 1;
}

#kids .owl-nav .owl-next {
    outline: none;
    position: absolute;
    right: -85px;
}

#kids .owl-nav .owl-next:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #2a2a2a;
    font-size: 25px;
    font-weight: 700;
    content: '\f105';
    width: 50px;
    height: 50px;
    background-color: transparent;
    line-height: 48px;
    border: 1px solid #2a2a2a;
}


/*
---------------------------------------------
Explore
---------------------------------------------
*/

#explore {
    padding-top: 90px;
    padding-bottom: 90px;
    border-bottom: 3px dotted #eee;
}

#explore .left-content {
    margin-right: 30px;
}

#explore .left-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2a2a2a;
}

#explore .left-content span {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
    display: block;
    margin-top: 25px;
}

#explore .left-content .quote {
    margin-top: 25px;
}

#explore .left-content .quote i {
    float: left;
    font-size: 32px;
    margin-right: 15px;
    margin-top: 10px;
}

#explore .left-content .quote p {
    font-style: italic;
    color: #2a2a2a;
    font-weight: 500;
}

#explore .left-content p {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
    display: block;
    margin-top: 25px;
}

#explore .left-content .main-border-button a {
    color: #2a2a2a;
    border-color: #2a2a2a;
    margin-top: 35px;
}

#explore .left-content .main-border-button a:hover {
    background-color: #2a2a2a;
    color: #fff;
}

#explore img {
    width: 100%;
    overflow: hidden;
}

#explore .leather {
    margin-bottom: 30px;
}

#explore .first-image {
    margin-bottom: 30px;
}

#explore .leather,
#explore .types {
    min-height: 255px;
    background-color: #f8f8f8;
    text-align: center;
    width: 100%;
}

#explore .leather h4,
#explore .types h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    padding-top: 90px;
    margin-bottom: 5px;
}

#explore .leather span,
#explore .types span {
    font-size: 14px;
    font-style: italic;
    color: #aaa;
    font-weight: 500;
}

/* 
---------------------------------------------
Social
--------------------------------------------- 
*/

#social {
    margin-top: 90px;
    padding-bottom: 90px;
    border-bottom: 3px dotted #eee;
}

#social .col-2 {
    padding-left: 0;
    padding-right: 0;
}

#social .images {
    margin-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
}

#social .thumb {
    position: relative;
}

#social .thumb .icon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

#social .thumb:hover .icon {
    opacity: 1;
    visibility: visible;
}

#social .thumb .icon h6 {
    color: #fff;
    position: absolute;
    font-size: 14px;
    bottom: 40px;
    font-weight: 400;
    left: 15px;
}

#social .thumb .icon i {
    color: #fff;
    position: absolute;
    bottom: 15px;
    left: 15px;
}

#social .thumb img {
    width: 100%;
    overflow: hidden;
}


/* 
---------------------------------------------
Subscribe
--------------------------------------------- 
*/

.subscribe {
    margin-top: 90px;
}

.subscribe .section-heading {
    margin-bottom: 30px;
}

.subscribe .section-heading h2 {
    line-height: 55px;
}

.subscribe form input {
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0px 15px;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    color: #aaa;
    border-radius: 0px;
    border: 1px solid #7a7a7a;
    box-shadow: none;
}

.subscribe form input::focus {
    border-color: #2a2a2a;
    border-radius: 0px;
}

.subscribe form button {
    width: 44px;
    height: 44px;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    background-color: #2a2a2a;
    box-shadow: none;
    border: 1px solid transparent;
    color: #fff;
    transition: all 0.3s;
}

.subscribe form button:hover {
    background-color: #fff;
    border: 1px solid #2a2a2a;
    color: #2a2a2a;
}

.subscribe ul li {
    margin-bottom: 30px;
    display: block;
}

.subscribe ul li {
    font-size: 16px;
    font-weight: 700;
    color: #2a2a2a;
}

.subscribe ul li span,
.subscribe ul li span a {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
}

.subscribe ul li span a:hover {
    color: #2a2a2a;
}


/* 
---------------------------------------------
footer
--------------------------------------------- 
*/

footer {
    margin-top: 60px;
    padding: 60px 0px 30px 0px;
    background-color: #2a2a2a;
}

footer .logo {
    margin-bottom: 20px;
}

footer ul li {
    display: block;
    margin-bottom: 10px;
}

footer ul li a {
    font-size: 14px;
    color: #fff;
    transition: all .3s;
}

footer ul li a:hover {
    color: #aaa;
}

footer h4 {
    letter-spacing: 0.5px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

footer .under-footer {
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(250, 250, 250, 0.3);
}

footer .under-footer ul {
    margin-top: 20px;
}

footer .under-footer ul li {
    display: inline-block;
    margin: 0px 10px;
}

footer .under-footer ul li a {
    font-size: 22px;
}

footer .under-footer p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

footer .under-footer a {
    color: #cff;
}

footer .under-footer a:hover {
    color: #c66;
}


/* 
---------------------------------------------
Products Page
--------------------------------------------- 
*/

.page-heading {
    margin-top: 160px;
    margin-bottom: 30px;
    background-image: url(https://images.pexels.com/photos/1468191/pexels-photo-1468191.jpeg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-heading .inner-content {
    padding: 150px 0px;
    text-align: center;
}

.page-heading .inner-content h2 {
    font-size: 52px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-heading .inner-content span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    font-style: italic;
}

#products .section-heading {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 80px;
}

#products .item {
    margin-bottom: 30px;
}

#products .item .thumb img {
    width: 100%;
    overflow: hidden;
}

#products .item .down-content {
    padding-top: 20px;
    position: relative;
    z-index: 3;
    background-color: #fff;
}

#products .item .down-content h4 {
    font-size: 22px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 8px;
}

#products .item .down-content span {
    font-size: 18px;
    color: #a1a1a1;
    font-weight: 500;
    display: block;
}

#products .item .down-content ul.stars {
    position: absolute;
    right: 0;
    top: 20px;
}

#products .item .down-content ul.stars li {
    display: inline;
    font-size: 13px;
}

#products .item .thumb .hover-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    bottom: -60px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

#products .item .thumb:hover .hover-content {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

#products .item .thumb {
    position: relative;
}

#products .item .thumb .hover-content ul li {
    display: inline;
    margin: 0px 10px;
}

#products .item .thumb .hover-content ul li a {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    color: #2a2a2a;
    background-color: #fff;
}

#products .pagination {
    margin-top: 30px;
    margin-bottom: 40px;
}

#products .pagination ul {
    text-align: center;
    width: 100%;
}

#products .pagination ul li {
    display: inline;
    margin: 0px 5px;
}

#products .pagination ul li a {
    width: 44px;
    height: 44px;
    border: 1px solid #2a2a2a;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}

#products .pagination ul li a:hover,
#products .pagination ul li.active a {
    background-color: #2a2a2a;
    color: #fff;
}

#cart {
    padding-top: 100px;
    padding-bottom: 90px;
    border-bottom: 3px dotted #eee;
}

#cart .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

#cart .section-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
}

#cart .section-heading span {
    font-size: 14px;
    color: #a1a1a1;
    font-style: italic;
    font-weight: 400;
}

#cart .cart-items {
    margin-bottom: 40px;
}

#cart .cart-items .item {
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px;
    transition: all 0.3s ease;
}

#cart .cart-items .item:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

#cart .cart-items .item .thumb img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    max-height: 120px;
}

#cart .cart-items .item .down-content {
    padding: 20px 0;
}

#cart .cart-items .item .down-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
}

#cart .cart-items .item .down-content span {
    font-size: 18px;
    font-weight: 500;
    color: #a1a1a1;
    display: block;
    margin-bottom: 15px;
}

#cart .cart-items .item .quantity-content {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#cart .cart-items .item .quantity-content .left-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
}

#cart .cart-items .item .quantity-content .quantity.buttons_added {
    display: flex;
    align-items: center;
}

#cart .cart-items .item .quantity-content .quantity.buttons_added input {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #2a2a2a;
}

#cart .cart-items .item .quantity-content .quantity.buttons_added .minus,
#cart .cart-items .item .quantity-content .quantity.buttons_added .plus {
    background-color: #f7f7f7;
    border: 1px solid #d1d5db;
    color: #2a2a2a;
    font-size: 16px;
    padding: 0 12px;
    line-height: 34px;
    height: 36px;
    transition: all 0.3s ease;
}

#cart .cart-items .item .quantity-content .quantity.buttons_added .minus:hover,
#cart .cart-items .item .quantity-content .quantity.buttons_added .plus:hover {
    background-color: #e0e0e0;
}

#cart .cart-items .item .quantity-content .quantity.buttons_added .input-text.qty {
    width: 60px;
    height: 36px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    text-align: center;
    margin: 0 5px;
    background-color: #fff;
}

#cart .cart-items .item .quantity-content .right-content .main-border-button a {
    font-size: 14px;
    padding: 10px 20px;
    border-color: #2a2a2a;
    color: #2a2a2a;
    border-radius: 4px;
}

#cart .cart-items .item .quantity-content .right-content .main-border-button a:hover {
    background-color: #2a2a2a;
    color: #fff;
}

#cart .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#cart .total h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
}

#cart .total .main-border-button a {
    font-size: 14px;
    padding: 12px 30px;
    border-color: #2a2a2a;
    color: #2a2a2a;
    border-radius: 4px;
    font-weight: 600;
}

#cart .total .main-border-button a:hover {
    background-color: #2a2a2a;
    color: #fff;
}

#cart .cart-items p {
    text-align: center;
    font-size: 16px;
    color: #a1a1a1;
    font-weight: 500;
    margin: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    #cart .cart-items .item .row {
        flex-direction: column;
        align-items: center;
    }

    #cart .cart-items .item .col-3,
    #cart .cart-items .item .col-9 {
        width: 100%;
        max-width: 100%;
    }

    #cart .cart-items .item .thumb {
        text-align: center;
        margin-bottom: 20px;
    }

    #cart .cart-items .item .thumb img {
        max-width: 150px;
    }

    #cart .cart-items .item .quantity-content {
        flex-direction: column;
        align-items: flex-start;
    }

    #cart .cart-items .item .quantity-content .right-content {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    #cart .total {
        flex-direction: column;
        text-align: center;
    }

    #cart .total .main-border-button {
        margin-top: 15px;
    }
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.quantity-btn {
    background: #65686c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #9e9a9a;
}

.cart-count {
    display: inline-block;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
    line-height: normal;
}

.main-nav .nav li a .cart-count {
    position: relative;
    top: -2px;
}

.quantity-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.quantity-display {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-weight: bold;
    margin-top: 10px;
}

/*
---------------------------------------------
Single Product Page
--------------------------------------------- 
*/

#product {
    margin-top: 80px;
}

#product .left-images img {
    margin-top: 70px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease; /* Smooth transition for the movement */
}

.left-images img:hover {
    transform: translateY(-10px); /* Moves the image up by 10 pixels on hover */
}

.left-images-container {
    width: 90%;
    height: 100%;
    transform: translateX(-100px);
}

#product .right-content {
    position: relative;
    z-index: 3;
    background-color: #fff;
    width: 40vw;
}

.col-lg-4 {
    transform: translateX(-40%);
}

.precard {
    background: rgba(0, 128, 0, 0.28);
    border-radius: 50px;
    overflow: hidden;
    flex: 0 0 320px; /* Fixed width for product cards */
    max-width: 320px; /* Ensure consistent width */
    position: relative;
    border: 1px solid rgba(212, 222, 207, 0.3);
}

.image-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-content:hover {
    transform: translateY(-25px) scale(1.02);
    box-shadow: 0 12px 40px rgba(74, 107, 79, 0.15);
    border-color: rgba(185, 204, 178, 0.5);
}

@media only screen and (max-width: 768px) {
    #product .right-content {
        position: relative;
        z-index: 3;

        width: 90%;
        background-color: #fff;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .precard {
        margin: 0 auto;
    }

    .item {
        text-align: center; /* Center the content inside each item */
    }

    .down-content h4 {
        margin-top: 15px; /* Add some spacing below the image */
    }

    .col-lg-4 {
        transform: translateX(5%);
    }

    .left-images-container {
        width: 70%;
        height: 100%;
        transform: translateX(0);
    }

}

#product .right-content h4 {
    font-size: 22px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 0px;
}

#product .right-content span.price {
    font-size: 18px;
    color: #a1a1a1;
    font-weight: 500;
    display: block;
    margin-top: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

#product .right-content ul.stars {
    position: absolute;
    right: 0;
    top: 0;
}

#product .right-content ul.stars li {
    display: inline;
    font-size: 13px;
}

#product .right-content span {
    font-size: 18px;
    color: #aaaaaa;
    font-weight: 500;
    display: block;
    margin-top: 25px;
}

#product .right-content .quote {
    margin-top: 25px;
}

.product-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.bottom-line {
    width: 100%; /* Sets the width of the line to 200px */
    height: 2px; /* Defines the thickness of the line */
    background-color: rgba(83, 81, 81, 0.5); /* Color of the line */
    margin: 0 auto; /* Optional: Centers the line horizontally */
}

.tab-button {
    padding: 10px 20px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.tab-button.active {
    background: #535151;
    color: white;
}

.tab-content {
    display: none;
    padding: 15px;
    background: #fff;
}

.tab-content.active {
    display: block;
}

#product .right-content .quote i {
    float: left;
    font-size: 32px;
    margin-right: 15px;
    margin-top: 10px;
}

#product .right-content .quote p {
    font-style: italic;
    color: #2a2a2a;
    font-size: 18px;
    font-weight: 500;
}

#product .right-content p {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.quantity-content {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
    padding-bottom: 30px;
}

.quantity-content .left-content {
    float: left;
    margin-right: 30px;
}

.quantity-content .right-content {
    text-align: right;
}

.quantity-content .left-content h6 {
    padding-top: 7px;
    font-size: 20px;
    font-weight: 700;
    color: #aaa;
    position: relative;
    z-index: 11;
}

.total h4 {
    float: left;
    font-size: 20px;
    margin-top: 10px;
    color: #aaa !important;
}

.total .main-border-button {
    text-align: right;
}

.total .main-border-button a {
    border-color: #2a2a2a;
    color: #2a2a2a;
}

.total .main-border-button a:hover {
    color: #fff;
    background-color: #2a2a2a;
}

.quantity {
    display: inline-block;
}

.quantity .input-text.qty {
    width: 35px;
    height: 39px;
    padding: 0 5px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #efefef;
    font-size: 1.3em;
}

.quantity.buttons_added {
    text-align: left;
    position: relative;
    white-space: nowrap;
    vertical-align: top;
}

.quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    font-weight: 700;
    padding: 7px 10px 8px;
    height: 39px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    cursor: pointer;
}

.quantity.buttons_added .minus {
    border-right: 0;
}

.quantity.buttons_added .plus {
    border-left: 0;
}

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: #eeeeee;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none;
}


/*
---------------------------------------------
About Us Page
--------------------------------------------- 
*/

.about-page-heading {
    margin-top: 160px;
    margin-bottom: 30px;
    background-image: url(../images/about-us-page-heading.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-us {
    margin-top: 80px;
}

.about-us .left-image img {
    width: 100%;
    overflow: hidden;
}

.about-us .right-content {
    margin-left: 30px;
}

.about-us .right-content h4 {
    font-size: 34px;
    font-weight: 700;
    color: #2a2a2a;
}

.about-us .right-content span {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
    display: block;
    margin-top: 25px;
}

.about-us .right-content .quote {
    margin-top: 25px;
}

.about-us .right-content .quote i {
    float: left;
    font-size: 32px;
    margin-right: 15px;
    margin-top: 10px;
}

.about-us .right-content .quote p {
    font-style: italic;
    color: #2a2a2a;
    font-weight: 500;
}

.about-us .right-content p {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
    display: block;
    margin-top: 25px;
}

.about-us .right-content ul {
    border-top: 3px dotted #eee;
    margin-top: 30px;
    padding-top: 30px;
}

.about-us .right-content ul li {
    display: inline-block;
    margin-right: 5px;
}

.about-us .right-content ul li a {
    width: 44px;
    height: 44px;
    background-color: #2a2a2a;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: all .5s;
}

.about-us .right-content ul li a:hover {
    background-color: #eee;
    color: #2a2a2a;
}

.our-team {
    margin-top: 100px;
    padding-top: 90px;
    padding-bottom: 90px;
    border-top: 3px dotted #eee;
}

.our-team .section-heading {
    margin-bottom: 60px;
    text-align: center;
}

.our-team .section-heading h2 {
    margin-bottom: 10px;
}

.our-team .team-item .thumb {
    position: relative;
}

.our-team .team-item .thumb img {
    width: 100%;
    overflow: hidden;
}

.our-team .team-item .thumb .hover-effect {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    text-align: center;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.our-team .team-item .thumb:hover .hover-effect {
    opacity: 1;
    visibility: visible;
}

.our-team .team-item .thumb .hover-effect .inner-content {
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    transform: translateY(-22px);
}

.our-team .team-item .thumb .hover-effect .inner-content ul li {
    display: inline-block;
    margin: 0px 5px;
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a {
    width: 44px;
    height: 44px;
    background-color: #fff;
    color: #2a2a2a;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: all .3s;
}

.our-team .team-item .thumb .hover-effect .inner-content ul li a:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.our-team .team-item .down-content {
    text-align: center;
    padding-top: 25px;
}

.our-team .team-item .down-content h4 {
    font-size: 24px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 5px;
}

.our-team .team-item .down-content span {
    font-size: 14px;
    color: #a1a1a1;
    font-weight: 500;
    display: block;
    font-style: italic;
}

.our-services {
    padding-top: 90px;
    padding-bottom: 90px;
    border-top: 3px dotted #eee;
    border-bottom: 3px dotted #eee;
}

.our-services .section-heading {
    margin-bottom: 60px;
    text-align: center;
}

.our-services .section-heading h2 {
    margin-bottom: 10px;
}

.our-services .service-item {
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    text-align: center;
}

.our-services .service-item img {
    width: 100%;
    overflow: hidden;
}

.our-services .service-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.our-services .service-item p {
    margin-bottom: 25px;
}


/*
---------------------------------------------
contact Us Page
--------------------------------------------- 
*/

.contact-us {
    margin-top: 90px;
    border-bottom: 3px dotted #eee;
    padding-bottom: 90px;
}

.contact-us .section-heading {
    margin-bottom: 40px;
}

.contact-us #map {
    margin-right: 30px;
}

.contact-us form input {
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0px 15px;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    color: #aaa;
    border-radius: 0px;
    border: 1px solid #7a7a7a;
    box-shadow: none;
}

.contact-us form input::focus {
    border-color: #2a2a2a;
    border-radius: 0px;
}

.contact-us form textarea {
    width: 100%;
    height: 140px;
    min-height: 120px;
    max-height: 200px;
    margin-top: 30px;
    margin-bottom: 25px;
    line-height: 44px;
    padding: 0px 15px;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    color: #aaa;
    border-radius: 0px;
    border: 1px solid #7a7a7a;
    box-shadow: none;
}

.contact-us form textarea::focus {
    border-color: #2a2a2a;
    border-radius: 0px;
}

.contact-us form button {
    width: 44px;
    height: 44px;
    display: inline-block;
    text-align: center;
    line-height: 44px;
    background-color: #2a2a2a;
    box-shadow: none;
    border: 1px solid transparent;
    color: #fff;
    transition: all 0.3s;
}

.contact-us form button:hover {
    background-color: #fff;
    border: 1px solid #2a2a2a;
    color: #2a2a2a;
}


/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1200px) {
    .main-banner .right-content .right-first-image .thumb .hover-content p {
        display: none;
    }
}

@media (max-width: 992px) {
    .main-banner .right-content .right-first-image .thumb .hover-content p {
        display: block;
    }

    .header-area .main-nav .nav li.submenu:after {
        right: 3px;
    }

    .header-area .main-nav .nav li.submenu {
        padding-right: 15px;
    }

    .header-area .main-nav .nav li {
        padding-right: 5px;
        padding-left: 5px;
    }

    .header-area .main-nav .nav li a {
        font-size: 14px;
        letter-spacing: 0px;
    }

    .main-banner .left-content {
        margin-bottom: 30px;
    }

    #explore .left-content {
        margin-bottom: 30px;
    }

    #explore .right-content .types {
        margin-top: 30px;
    }

    .subscribe input {
        margin-bottom: 15px;
    }

    .subscribe form {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-us .right-content {
        margin-left: 0px;
        margin-top: 30px;
    }

    .our-team .team-item {
        margin-bottom: 30px;
    }

    .our-services .service-item {
        margin-bottom: 30px;
    }

    .contact-us #map {
        margin-right: 0px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .main-banner .left-content .thumb .inner-content {
        left: 50%;
        top: 47.5%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .subscribe form button {
        width: 100%;
    }

    footer {
        text-align: center;
    }

    footer h4 {
        margin-top: 30px;
    }

    .left-images-container {
        width: 100%;
        height: 100%;
    }
}


#preloader {
    overflow: hidden;
    background-color: #2a2a2a;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    color: #fff;
}

#preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
}

#preloader .jumper > div {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: jumper 1s 0s linear infinite;
    animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
    -webkit-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
    -webkit-animation-delay: 0.66666s;
    animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    5% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    5% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/* --------------------- NAVIGATION HEADER --------------------- */
/* Navigation Header Styles - Elegant Design */
.navigation-header-area {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    position: relative;
    background-color: white !important;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: navigation-slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes navigation-slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Header */
.navigation-header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navigation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    position: relative;
}

.navigation-main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 5rem;
}

/* Logo */
.navigation-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 1001;
    flex-shrink: 0;
}

.navigation-logo:hover {
    transform: scale(1.05);
}

.navigation-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* Navigation Menu */
.navigation-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.navigation-nav li {
    position: relative;
}

.navigation-nav li a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navigation-nav li a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.navigation-nav li a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.15);
    font-weight: 600;
}

/* Cart Count */
.navigation-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(238, 90, 36, 0.4);
}

/* Search Container */
.navigation-search {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
    padding: 8px 15px;
    border: none;
    border-radius: 20px 0 0 20px;
    width: 200px;
    font-size: 14px;
    outline: none;
    background: #fff;
    transition: width 0.3s ease;
}

.search-input:focus {
    width: 250px;
}

.search-icon {
    cursor: pointer;
    font-size: 16px;
    background: rgba(0, 128, 0, 0.73);
    color: #fff;
    padding: 8px 12px;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-icon:hover {
    background: rgb(0, 128, 0);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    width: 400px;
    max-width: 90vw;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 8px;
    display: none;
}

.search-results.show {
    display: block;
}

.search-results .result-item {
    border-bottom: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: background 0.2s;
}

.search-results .result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-results .result-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    gap: 12px;
}

.search-results .result-item a:hover {
    background: #f5f5f5;
}

.search-results .result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.search-results .result-item span {
    flex: 1;
    font-size: 14px;
}

.search-results .result-item .price {
    color: rgba(0, 128, 0, 0.73);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 14px;
}

.loader {
    text-align: center;
    padding: 15px;
    font-style: italic;
    color: #666;
}

/* Mobile Menu Trigger */
.navigation-menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.navigation-menu-trigger::before,
.navigation-menu-trigger::after,
.navigation-menu-trigger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navigation-menu-trigger::before,
.navigation-menu-trigger::after {
    content: '';
    position: absolute;
}

.navigation-menu-trigger::before {
    transform: translateY(-6px);
}

.navigation-menu-trigger::after {
    transform: translateY(6px);
}

.navigation-menu-trigger span {
    font-size: 0;
}

.navigation-menu-trigger.active::before {
    transform: rotate(45deg);
}

.navigation-menu-trigger.active::after {
    transform: rotate(-45deg);
}

.navigation-menu-trigger.active span {
    opacity: 0;
}

/* Demo Content */
.demo-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Tablet Styles */
@media (max-width: 991px) {
    .navigation-main-nav {
        gap: 1rem;
    }

    .navigation-nav {
        gap: 0.3rem;
    }

    .navigation-nav li a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .search-input {
        width: 150px;
    }

    .search-input:focus {
        width: 180px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navigation-container {
        padding: 0 1rem;
    }

    .navigation-row {
        min-height: 70px;
        gap: 20px;
    }

    .navigation-main-nav {
        gap: 1rem;
    }

    .navigation-logo img {
        width: 100px;
    }

    /* Hide desktop menu */
    .navigation-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 1rem;
        overflow-y: auto;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.1);
        transition: left 0.4s ease;
        z-index: 999;
        justify-content: flex-start;
    }

    .navigation-nav.active {
        left: 0;
    }

    .navigation-nav li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .navigation-nav li a {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Show mobile menu trigger */
    .navigation-menu-trigger {
        display: flex;
    }

    /* Mobile Search */
    .navigation-search {
        order: -1;
    }

    .search-input {
        display: none;
        width: 0;
        opacity: 0;
    }

    .search-input.active {
        display: block;
        width: 150px;
        opacity: 1;
    }

    .search-results {
        width: calc(100vw - 2rem);
        max-width: 350px;
        right: revert-layer;
        left: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navigation-logo img {
        width: 90px;
    }

    .search-input.active {
        width: 120px;
    }

    .search-results {
        max-width: 300px;
    }
}